// Copyright 2026 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import type {protobuf as $protobuf} from "google-gax"; import Long = require("long"); /** Namespace google. */ export namespace google { /** Namespace ai. */ namespace ai { /** Namespace generativelanguage. */ namespace generativelanguage { /** Namespace v1. */ namespace v1 { /** Properties of a CitationMetadata. */ interface ICitationMetadata { /** CitationMetadata citationSources */ citationSources?: (google.ai.generativelanguage.v1.ICitationSource[]|null); } /** Represents a CitationMetadata. */ class CitationMetadata implements ICitationMetadata { /** * Constructs a new CitationMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ICitationMetadata); /** CitationMetadata citationSources. */ public citationSources: google.ai.generativelanguage.v1.ICitationSource[]; /** * Creates a new CitationMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CitationMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.ICitationMetadata): google.ai.generativelanguage.v1.CitationMetadata; /** * Encodes the specified CitationMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.CitationMetadata; /** * Decodes a CitationMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.CitationMetadata; /** * Verifies a CitationMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.CitationMetadata; /** * Creates a plain object from a CitationMetadata message. Also converts values to other types if specified. * @param message CitationMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.CitationMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationSource. */ interface ICitationSource { /** CitationSource startIndex */ startIndex?: (number|null); /** CitationSource endIndex */ endIndex?: (number|null); /** CitationSource uri */ uri?: (string|null); /** CitationSource license */ license?: (string|null); } /** Represents a CitationSource. */ class CitationSource implements ICitationSource { /** * Constructs a new CitationSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ICitationSource); /** CitationSource startIndex. */ public startIndex?: (number|null); /** CitationSource endIndex. */ public endIndex?: (number|null); /** CitationSource uri. */ public uri?: (string|null); /** CitationSource license. */ public license?: (string|null); /** * Creates a new CitationSource instance using the specified properties. * @param [properties] Properties to set * @returns CitationSource instance */ public static create(properties?: google.ai.generativelanguage.v1.ICitationSource): google.ai.generativelanguage.v1.CitationSource; /** * Encodes the specified CitationSource message. Does not implicitly {@link google.ai.generativelanguage.v1.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.CitationSource; /** * Decodes a CitationSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.CitationSource; /** * Verifies a CitationSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.CitationSource; /** * Creates a plain object from a CitationSource message. Also converts values to other types if specified. * @param message CitationSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.CitationSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Modality enum. */ enum Modality { MODALITY_UNSPECIFIED = 0, TEXT = 1, IMAGE = 2, VIDEO = 3, AUDIO = 4, DOCUMENT = 5 } /** Properties of a Content. */ interface IContent { /** Content parts */ parts?: (google.ai.generativelanguage.v1.IPart[]|null); /** Content role */ role?: (string|null); } /** Represents a Content. */ class Content implements IContent { /** * Constructs a new Content. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IContent); /** Content parts. */ public parts: google.ai.generativelanguage.v1.IPart[]; /** Content role. */ public role: string; /** * Creates a new Content instance using the specified properties. * @param [properties] Properties to set * @returns Content instance */ public static create(properties?: google.ai.generativelanguage.v1.IContent): google.ai.generativelanguage.v1.Content; /** * Encodes the specified Content message. Does not implicitly {@link google.ai.generativelanguage.v1.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Content message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Content message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Content; /** * Decodes a Content message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Content; /** * Verifies a Content message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Content message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Content */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Content; /** * Creates a plain object from a Content message. Also converts values to other types if specified. * @param message Content * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Content, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Content to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Content * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Part. */ interface IPart { /** Part text */ text?: (string|null); /** Part inlineData */ inlineData?: (google.ai.generativelanguage.v1.IBlob|null); /** Part videoMetadata */ videoMetadata?: (google.ai.generativelanguage.v1.IVideoMetadata|null); } /** Represents a Part. */ class Part implements IPart { /** * Constructs a new Part. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IPart); /** Part text. */ public text?: (string|null); /** Part inlineData. */ public inlineData?: (google.ai.generativelanguage.v1.IBlob|null); /** Part videoMetadata. */ public videoMetadata?: (google.ai.generativelanguage.v1.IVideoMetadata|null); /** Part data. */ public data?: ("text"|"inlineData"); /** Part metadata. */ public metadata?: "videoMetadata"; /** * Creates a new Part instance using the specified properties. * @param [properties] Properties to set * @returns Part instance */ public static create(properties?: google.ai.generativelanguage.v1.IPart): google.ai.generativelanguage.v1.Part; /** * Encodes the specified Part message. Does not implicitly {@link google.ai.generativelanguage.v1.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Part message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Part message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Part; /** * Decodes a Part message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Part; /** * Verifies a Part message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Part message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Part */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Part; /** * Creates a plain object from a Part message. Also converts values to other types if specified. * @param message Part * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Part, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Part to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Part * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Blob. */ interface IBlob { /** Blob mimeType */ mimeType?: (string|null); /** Blob data */ data?: (Uint8Array|Buffer|string|null); } /** Represents a Blob. */ class Blob implements IBlob { /** * Constructs a new Blob. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IBlob); /** Blob mimeType. */ public mimeType: string; /** Blob data. */ public data: (Uint8Array|Buffer|string); /** * Creates a new Blob instance using the specified properties. * @param [properties] Properties to set * @returns Blob instance */ public static create(properties?: google.ai.generativelanguage.v1.IBlob): google.ai.generativelanguage.v1.Blob; /** * Encodes the specified Blob message. Does not implicitly {@link google.ai.generativelanguage.v1.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Blob message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Blob message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Blob; /** * Decodes a Blob message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Blob; /** * Verifies a Blob message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Blob message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Blob */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Blob; /** * Creates a plain object from a Blob message. Also converts values to other types if specified. * @param message Blob * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Blob, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Blob to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Blob * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a VideoMetadata. */ interface IVideoMetadata { /** VideoMetadata startOffset */ startOffset?: (google.protobuf.IDuration|null); /** VideoMetadata endOffset */ endOffset?: (google.protobuf.IDuration|null); /** VideoMetadata fps */ fps?: (number|null); } /** Represents a VideoMetadata. */ class VideoMetadata implements IVideoMetadata { /** * Constructs a new VideoMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IVideoMetadata); /** VideoMetadata startOffset. */ public startOffset?: (google.protobuf.IDuration|null); /** VideoMetadata endOffset. */ public endOffset?: (google.protobuf.IDuration|null); /** VideoMetadata fps. */ public fps: number; /** * Creates a new VideoMetadata instance using the specified properties. * @param [properties] Properties to set * @returns VideoMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.IVideoMetadata): google.ai.generativelanguage.v1.VideoMetadata; /** * Encodes the specified VideoMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VideoMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VideoMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.VideoMetadata; /** * Decodes a VideoMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.VideoMetadata; /** * Verifies a VideoMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VideoMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VideoMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.VideoMetadata; /** * Creates a plain object from a VideoMetadata message. Also converts values to other types if specified. * @param message VideoMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.VideoMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VideoMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VideoMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ModalityTokenCount. */ interface IModalityTokenCount { /** ModalityTokenCount modality */ modality?: (google.ai.generativelanguage.v1.Modality|keyof typeof google.ai.generativelanguage.v1.Modality|null); /** ModalityTokenCount tokenCount */ tokenCount?: (number|null); } /** Represents a ModalityTokenCount. */ class ModalityTokenCount implements IModalityTokenCount { /** * Constructs a new ModalityTokenCount. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IModalityTokenCount); /** ModalityTokenCount modality. */ public modality: (google.ai.generativelanguage.v1.Modality|keyof typeof google.ai.generativelanguage.v1.Modality); /** ModalityTokenCount tokenCount. */ public tokenCount: number; /** * Creates a new ModalityTokenCount instance using the specified properties. * @param [properties] Properties to set * @returns ModalityTokenCount instance */ public static create(properties?: google.ai.generativelanguage.v1.IModalityTokenCount): google.ai.generativelanguage.v1.ModalityTokenCount; /** * Encodes the specified ModalityTokenCount message. Does not implicitly {@link google.ai.generativelanguage.v1.ModalityTokenCount.verify|verify} messages. * @param message ModalityTokenCount message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IModalityTokenCount, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ModalityTokenCount message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.ModalityTokenCount.verify|verify} messages. * @param message ModalityTokenCount message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IModalityTokenCount, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ModalityTokenCount message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ModalityTokenCount * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.ModalityTokenCount; /** * Decodes a ModalityTokenCount message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ModalityTokenCount * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.ModalityTokenCount; /** * Verifies a ModalityTokenCount message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ModalityTokenCount message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ModalityTokenCount */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.ModalityTokenCount; /** * Creates a plain object from a ModalityTokenCount message. Also converts values to other types if specified. * @param message ModalityTokenCount * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.ModalityTokenCount, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ModalityTokenCount to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ModalityTokenCount * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a GenerativeService */ class GenerativeService extends $protobuf.rpc.Service { /** * Constructs a new GenerativeService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new GenerativeService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): GenerativeService; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public generateContent(request: google.ai.generativelanguage.v1.IGenerateContentRequest, callback: google.ai.generativelanguage.v1.GenerativeService.GenerateContentCallback): void; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public generateContent(request: google.ai.generativelanguage.v1.IGenerateContentRequest): Promise; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public streamGenerateContent(request: google.ai.generativelanguage.v1.IGenerateContentRequest, callback: google.ai.generativelanguage.v1.GenerativeService.StreamGenerateContentCallback): void; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public streamGenerateContent(request: google.ai.generativelanguage.v1.IGenerateContentRequest): Promise; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedContentResponse */ public embedContent(request: google.ai.generativelanguage.v1.IEmbedContentRequest, callback: google.ai.generativelanguage.v1.GenerativeService.EmbedContentCallback): void; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @returns Promise */ public embedContent(request: google.ai.generativelanguage.v1.IEmbedContentRequest): Promise; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedContentsResponse */ public batchEmbedContents(request: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest, callback: google.ai.generativelanguage.v1.GenerativeService.BatchEmbedContentsCallback): void; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @returns Promise */ public batchEmbedContents(request: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest): Promise; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTokensResponse */ public countTokens(request: google.ai.generativelanguage.v1.ICountTokensRequest, callback: google.ai.generativelanguage.v1.GenerativeService.CountTokensCallback): void; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @returns Promise */ public countTokens(request: google.ai.generativelanguage.v1.ICountTokensRequest): Promise; } namespace GenerativeService { /** * Callback as used by {@link google.ai.generativelanguage.v1.GenerativeService|generateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type GenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1.GenerativeService|streamGenerateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type StreamGenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1.GenerativeService|embedContent}. * @param error Error, if any * @param [response] EmbedContentResponse */ type EmbedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.EmbedContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1.GenerativeService|batchEmbedContents}. * @param error Error, if any * @param [response] BatchEmbedContentsResponse */ type BatchEmbedContentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.BatchEmbedContentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1.GenerativeService|countTokens}. * @param error Error, if any * @param [response] CountTokensResponse */ type CountTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.CountTokensResponse) => void; } /** TaskType enum. */ enum TaskType { TASK_TYPE_UNSPECIFIED = 0, RETRIEVAL_QUERY = 1, RETRIEVAL_DOCUMENT = 2, SEMANTIC_SIMILARITY = 3, CLASSIFICATION = 4, CLUSTERING = 5, QUESTION_ANSWERING = 6, FACT_VERIFICATION = 7, CODE_RETRIEVAL_QUERY = 8 } /** Properties of a GenerateContentRequest. */ interface IGenerateContentRequest { /** GenerateContentRequest model */ model?: (string|null); /** GenerateContentRequest contents */ contents?: (google.ai.generativelanguage.v1.IContent[]|null); /** GenerateContentRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1.ISafetySetting[]|null); /** GenerateContentRequest generationConfig */ generationConfig?: (google.ai.generativelanguage.v1.IGenerationConfig|null); } /** Represents a GenerateContentRequest. */ class GenerateContentRequest implements IGenerateContentRequest { /** * Constructs a new GenerateContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGenerateContentRequest); /** GenerateContentRequest model. */ public model: string; /** GenerateContentRequest contents. */ public contents: google.ai.generativelanguage.v1.IContent[]; /** GenerateContentRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1.ISafetySetting[]; /** GenerateContentRequest generationConfig. */ public generationConfig?: (google.ai.generativelanguage.v1.IGenerationConfig|null); /** * Creates a new GenerateContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.IGenerateContentRequest): google.ai.generativelanguage.v1.GenerateContentRequest; /** * Encodes the specified GenerateContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GenerateContentRequest; /** * Decodes a GenerateContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GenerateContentRequest; /** * Verifies a GenerateContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GenerateContentRequest; /** * Creates a plain object from a GenerateContentRequest message. Also converts values to other types if specified. * @param message GenerateContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GenerateContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerationConfig. */ interface IGenerationConfig { /** GenerationConfig candidateCount */ candidateCount?: (number|null); /** GenerationConfig stopSequences */ stopSequences?: (string[]|null); /** GenerationConfig maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerationConfig temperature */ temperature?: (number|null); /** GenerationConfig topP */ topP?: (number|null); /** GenerationConfig topK */ topK?: (number|null); /** GenerationConfig seed */ seed?: (number|null); /** GenerationConfig responseJsonSchemaOrdered */ responseJsonSchemaOrdered?: (google.protobuf.IValue|null); /** GenerationConfig presencePenalty */ presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty */ frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs */ responseLogprobs?: (boolean|null); /** GenerationConfig logprobs */ logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers */ enableEnhancedCivicAnswers?: (boolean|null); } /** Represents a GenerationConfig. */ class GenerationConfig implements IGenerationConfig { /** * Constructs a new GenerationConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGenerationConfig); /** GenerationConfig candidateCount. */ public candidateCount?: (number|null); /** GenerationConfig stopSequences. */ public stopSequences: string[]; /** GenerationConfig maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerationConfig temperature. */ public temperature?: (number|null); /** GenerationConfig topP. */ public topP?: (number|null); /** GenerationConfig topK. */ public topK?: (number|null); /** GenerationConfig seed. */ public seed?: (number|null); /** GenerationConfig responseJsonSchemaOrdered. */ public responseJsonSchemaOrdered?: (google.protobuf.IValue|null); /** GenerationConfig presencePenalty. */ public presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty. */ public frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs. */ public responseLogprobs?: (boolean|null); /** GenerationConfig logprobs. */ public logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers. */ public enableEnhancedCivicAnswers?: (boolean|null); /** * Creates a new GenerationConfig instance using the specified properties. * @param [properties] Properties to set * @returns GenerationConfig instance */ public static create(properties?: google.ai.generativelanguage.v1.IGenerationConfig): google.ai.generativelanguage.v1.GenerationConfig; /** * Encodes the specified GenerationConfig message. Does not implicitly {@link google.ai.generativelanguage.v1.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerationConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerationConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GenerationConfig; /** * Decodes a GenerationConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GenerationConfig; /** * Verifies a GenerationConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerationConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerationConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GenerationConfig; /** * Creates a plain object from a GenerationConfig message. Also converts values to other types if specified. * @param message GenerationConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GenerationConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerationConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerationConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateContentResponse. */ interface IGenerateContentResponse { /** GenerateContentResponse candidates */ candidates?: (google.ai.generativelanguage.v1.ICandidate[]|null); /** GenerateContentResponse promptFeedback */ promptFeedback?: (google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion */ modelVersion?: (string|null); /** GenerateContentResponse responseId */ responseId?: (string|null); } /** Represents a GenerateContentResponse. */ class GenerateContentResponse implements IGenerateContentResponse { /** * Constructs a new GenerateContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGenerateContentResponse); /** GenerateContentResponse candidates. */ public candidates: google.ai.generativelanguage.v1.ICandidate[]; /** GenerateContentResponse promptFeedback. */ public promptFeedback?: (google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion. */ public modelVersion: string; /** GenerateContentResponse responseId. */ public responseId: string; /** * Creates a new GenerateContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1.IGenerateContentResponse): google.ai.generativelanguage.v1.GenerateContentResponse; /** * Encodes the specified GenerateContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GenerateContentResponse; /** * Decodes a GenerateContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GenerateContentResponse; /** * Verifies a GenerateContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GenerateContentResponse; /** * Creates a plain object from a GenerateContentResponse message. Also converts values to other types if specified. * @param message GenerateContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GenerateContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateContentResponse { /** Properties of a PromptFeedback. */ interface IPromptFeedback { /** PromptFeedback blockReason */ blockReason?: (google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.BlockReason|null); /** PromptFeedback safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1.ISafetyRating[]|null); } /** Represents a PromptFeedback. */ class PromptFeedback implements IPromptFeedback { /** * Constructs a new PromptFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback); /** PromptFeedback blockReason. */ public blockReason: (google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.BlockReason); /** PromptFeedback safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1.ISafetyRating[]; /** * Creates a new PromptFeedback instance using the specified properties. * @param [properties] Properties to set * @returns PromptFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback): google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback; /** * Encodes the specified PromptFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PromptFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PromptFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback; /** * Decodes a PromptFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback; /** * Verifies a PromptFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PromptFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PromptFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback; /** * Creates a plain object from a PromptFeedback message. Also converts values to other types if specified. * @param message PromptFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GenerateContentResponse.PromptFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PromptFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PromptFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace PromptFeedback { /** BlockReason enum. */ enum BlockReason { BLOCK_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2, BLOCKLIST = 3, PROHIBITED_CONTENT = 4, IMAGE_SAFETY = 5 } } /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata promptTokenCount */ promptTokenCount?: (number|null); /** UsageMetadata candidatesTokenCount */ candidatesTokenCount?: (number|null); /** UsageMetadata toolUsePromptTokenCount */ toolUsePromptTokenCount?: (number|null); /** UsageMetadata thoughtsTokenCount */ thoughtsTokenCount?: (number|null); /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); /** UsageMetadata promptTokensDetails */ promptTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); /** UsageMetadata cacheTokensDetails */ cacheTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); /** UsageMetadata candidatesTokensDetails */ candidatesTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); /** UsageMetadata toolUsePromptTokensDetails */ toolUsePromptTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata); /** UsageMetadata promptTokenCount. */ public promptTokenCount: number; /** UsageMetadata candidatesTokenCount. */ public candidatesTokenCount: number; /** UsageMetadata toolUsePromptTokenCount. */ public toolUsePromptTokenCount: number; /** UsageMetadata thoughtsTokenCount. */ public thoughtsTokenCount: number; /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** UsageMetadata promptTokensDetails. */ public promptTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** UsageMetadata cacheTokensDetails. */ public cacheTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** UsageMetadata candidatesTokensDetails. */ public candidatesTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** UsageMetadata toolUsePromptTokensDetails. */ public toolUsePromptTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata): google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GenerateContentResponse.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a Candidate. */ interface ICandidate { /** Candidate index */ index?: (number|null); /** Candidate content */ content?: (google.ai.generativelanguage.v1.IContent|null); /** Candidate finishReason */ finishReason?: (google.ai.generativelanguage.v1.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1.Candidate.FinishReason|null); /** Candidate finishMessage */ finishMessage?: (string|null); /** Candidate safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1.ISafetyRating[]|null); /** Candidate citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1.ICitationMetadata|null); /** Candidate tokenCount */ tokenCount?: (number|null); /** Candidate groundingMetadata */ groundingMetadata?: (google.ai.generativelanguage.v1.IGroundingMetadata|null); /** Candidate avgLogprobs */ avgLogprobs?: (number|null); /** Candidate logprobsResult */ logprobsResult?: (google.ai.generativelanguage.v1.ILogprobsResult|null); /** Candidate urlContextMetadata */ urlContextMetadata?: (google.ai.generativelanguage.v1.IUrlContextMetadata|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ICandidate); /** Candidate index. */ public index?: (number|null); /** Candidate content. */ public content?: (google.ai.generativelanguage.v1.IContent|null); /** Candidate finishReason. */ public finishReason: (google.ai.generativelanguage.v1.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1.Candidate.FinishReason); /** Candidate finishMessage. */ public finishMessage?: (string|null); /** Candidate safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1.ISafetyRating[]; /** Candidate citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1.ICitationMetadata|null); /** Candidate tokenCount. */ public tokenCount: number; /** Candidate groundingMetadata. */ public groundingMetadata?: (google.ai.generativelanguage.v1.IGroundingMetadata|null); /** Candidate avgLogprobs. */ public avgLogprobs: number; /** Candidate logprobsResult. */ public logprobsResult?: (google.ai.generativelanguage.v1.ILogprobsResult|null); /** Candidate urlContextMetadata. */ public urlContextMetadata?: (google.ai.generativelanguage.v1.IUrlContextMetadata|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1.ICandidate): google.ai.generativelanguage.v1.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Candidate { /** FinishReason enum. */ enum FinishReason { FINISH_REASON_UNSPECIFIED = 0, STOP = 1, MAX_TOKENS = 2, SAFETY = 3, RECITATION = 4, LANGUAGE = 6, OTHER = 5, BLOCKLIST = 7, PROHIBITED_CONTENT = 8, SPII = 9, MALFORMED_FUNCTION_CALL = 10, IMAGE_SAFETY = 11, IMAGE_PROHIBITED_CONTENT = 14, IMAGE_OTHER = 15, NO_IMAGE = 16, IMAGE_RECITATION = 17, UNEXPECTED_TOOL_CALL = 12, TOO_MANY_TOOL_CALLS = 13 } } /** Properties of an UrlContextMetadata. */ interface IUrlContextMetadata { /** UrlContextMetadata urlMetadata */ urlMetadata?: (google.ai.generativelanguage.v1.IUrlMetadata[]|null); } /** Represents an UrlContextMetadata. */ class UrlContextMetadata implements IUrlContextMetadata { /** * Constructs a new UrlContextMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IUrlContextMetadata); /** UrlContextMetadata urlMetadata. */ public urlMetadata: google.ai.generativelanguage.v1.IUrlMetadata[]; /** * Creates a new UrlContextMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UrlContextMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.IUrlContextMetadata): google.ai.generativelanguage.v1.UrlContextMetadata; /** * Encodes the specified UrlContextMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.UrlContextMetadata.verify|verify} messages. * @param message UrlContextMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IUrlContextMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UrlContextMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.UrlContextMetadata.verify|verify} messages. * @param message UrlContextMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IUrlContextMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UrlContextMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UrlContextMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.UrlContextMetadata; /** * Decodes an UrlContextMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UrlContextMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.UrlContextMetadata; /** * Verifies an UrlContextMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UrlContextMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UrlContextMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.UrlContextMetadata; /** * Creates a plain object from an UrlContextMetadata message. Also converts values to other types if specified. * @param message UrlContextMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.UrlContextMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UrlContextMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UrlContextMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UrlMetadata. */ interface IUrlMetadata { /** UrlMetadata retrievedUrl */ retrievedUrl?: (string|null); /** UrlMetadata urlRetrievalStatus */ urlRetrievalStatus?: (google.ai.generativelanguage.v1.UrlMetadata.UrlRetrievalStatus|keyof typeof google.ai.generativelanguage.v1.UrlMetadata.UrlRetrievalStatus|null); } /** Represents an UrlMetadata. */ class UrlMetadata implements IUrlMetadata { /** * Constructs a new UrlMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IUrlMetadata); /** UrlMetadata retrievedUrl. */ public retrievedUrl: string; /** UrlMetadata urlRetrievalStatus. */ public urlRetrievalStatus: (google.ai.generativelanguage.v1.UrlMetadata.UrlRetrievalStatus|keyof typeof google.ai.generativelanguage.v1.UrlMetadata.UrlRetrievalStatus); /** * Creates a new UrlMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UrlMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.IUrlMetadata): google.ai.generativelanguage.v1.UrlMetadata; /** * Encodes the specified UrlMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.UrlMetadata.verify|verify} messages. * @param message UrlMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IUrlMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UrlMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.UrlMetadata.verify|verify} messages. * @param message UrlMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IUrlMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UrlMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UrlMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.UrlMetadata; /** * Decodes an UrlMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UrlMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.UrlMetadata; /** * Verifies an UrlMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UrlMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UrlMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.UrlMetadata; /** * Creates a plain object from an UrlMetadata message. Also converts values to other types if specified. * @param message UrlMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.UrlMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UrlMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UrlMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace UrlMetadata { /** UrlRetrievalStatus enum. */ enum UrlRetrievalStatus { URL_RETRIEVAL_STATUS_UNSPECIFIED = 0, URL_RETRIEVAL_STATUS_SUCCESS = 1, URL_RETRIEVAL_STATUS_ERROR = 2, URL_RETRIEVAL_STATUS_PAYWALL = 3, URL_RETRIEVAL_STATUS_UNSAFE = 4 } } /** Properties of a LogprobsResult. */ interface ILogprobsResult { /** LogprobsResult logProbabilitySum */ logProbabilitySum?: (number|null); /** LogprobsResult topCandidates */ topCandidates?: (google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates[]|null); /** LogprobsResult chosenCandidates */ chosenCandidates?: (google.ai.generativelanguage.v1.LogprobsResult.ICandidate[]|null); } /** Represents a LogprobsResult. */ class LogprobsResult implements ILogprobsResult { /** * Constructs a new LogprobsResult. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ILogprobsResult); /** LogprobsResult logProbabilitySum. */ public logProbabilitySum?: (number|null); /** LogprobsResult topCandidates. */ public topCandidates: google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates[]; /** LogprobsResult chosenCandidates. */ public chosenCandidates: google.ai.generativelanguage.v1.LogprobsResult.ICandidate[]; /** * Creates a new LogprobsResult instance using the specified properties. * @param [properties] Properties to set * @returns LogprobsResult instance */ public static create(properties?: google.ai.generativelanguage.v1.ILogprobsResult): google.ai.generativelanguage.v1.LogprobsResult; /** * Encodes the specified LogprobsResult message. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified LogprobsResult message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a LogprobsResult message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.LogprobsResult; /** * Decodes a LogprobsResult message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.LogprobsResult; /** * Verifies a LogprobsResult message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a LogprobsResult message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns LogprobsResult */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.LogprobsResult; /** * Creates a plain object from a LogprobsResult message. Also converts values to other types if specified. * @param message LogprobsResult * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.LogprobsResult, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this LogprobsResult to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for LogprobsResult * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace LogprobsResult { /** Properties of a Candidate. */ interface ICandidate { /** Candidate token */ token?: (string|null); /** Candidate tokenId */ tokenId?: (number|null); /** Candidate logProbability */ logProbability?: (number|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.LogprobsResult.ICandidate); /** Candidate token. */ public token?: (string|null); /** Candidate tokenId. */ public tokenId?: (number|null); /** Candidate logProbability. */ public logProbability?: (number|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1.LogprobsResult.ICandidate): google.ai.generativelanguage.v1.LogprobsResult.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.LogprobsResult.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.LogprobsResult.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.LogprobsResult.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.LogprobsResult.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TopCandidates. */ interface ITopCandidates { /** TopCandidates candidates */ candidates?: (google.ai.generativelanguage.v1.LogprobsResult.ICandidate[]|null); } /** Represents a TopCandidates. */ class TopCandidates implements ITopCandidates { /** * Constructs a new TopCandidates. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates); /** TopCandidates candidates. */ public candidates: google.ai.generativelanguage.v1.LogprobsResult.ICandidate[]; /** * Creates a new TopCandidates instance using the specified properties. * @param [properties] Properties to set * @returns TopCandidates instance */ public static create(properties?: google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates): google.ai.generativelanguage.v1.LogprobsResult.TopCandidates; /** * Encodes the specified TopCandidates message. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TopCandidates message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TopCandidates message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.LogprobsResult.TopCandidates; /** * Decodes a TopCandidates message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.LogprobsResult.TopCandidates; /** * Verifies a TopCandidates message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TopCandidates message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TopCandidates */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.LogprobsResult.TopCandidates; /** * Creates a plain object from a TopCandidates message. Also converts values to other types if specified. * @param message TopCandidates * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.LogprobsResult.TopCandidates, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TopCandidates to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TopCandidates * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a RetrievalMetadata. */ interface IRetrievalMetadata { /** RetrievalMetadata googleSearchDynamicRetrievalScore */ googleSearchDynamicRetrievalScore?: (number|null); } /** Represents a RetrievalMetadata. */ class RetrievalMetadata implements IRetrievalMetadata { /** * Constructs a new RetrievalMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IRetrievalMetadata); /** RetrievalMetadata googleSearchDynamicRetrievalScore. */ public googleSearchDynamicRetrievalScore: number; /** * Creates a new RetrievalMetadata instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.IRetrievalMetadata): google.ai.generativelanguage.v1.RetrievalMetadata; /** * Encodes the specified RetrievalMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.RetrievalMetadata; /** * Decodes a RetrievalMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.RetrievalMetadata; /** * Verifies a RetrievalMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.RetrievalMetadata; /** * Creates a plain object from a RetrievalMetadata message. Also converts values to other types if specified. * @param message RetrievalMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.RetrievalMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingMetadata. */ interface IGroundingMetadata { /** GroundingMetadata searchEntryPoint */ searchEntryPoint?: (google.ai.generativelanguage.v1.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks */ groundingChunks?: (google.ai.generativelanguage.v1.IGroundingChunk[]|null); /** GroundingMetadata groundingSupports */ groundingSupports?: (google.ai.generativelanguage.v1.IGroundingSupport[]|null); /** GroundingMetadata retrievalMetadata */ retrievalMetadata?: (google.ai.generativelanguage.v1.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries */ webSearchQueries?: (string[]|null); /** GroundingMetadata googleMapsWidgetContextToken */ googleMapsWidgetContextToken?: (string|null); } /** Represents a GroundingMetadata. */ class GroundingMetadata implements IGroundingMetadata { /** * Constructs a new GroundingMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGroundingMetadata); /** GroundingMetadata searchEntryPoint. */ public searchEntryPoint?: (google.ai.generativelanguage.v1.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks. */ public groundingChunks: google.ai.generativelanguage.v1.IGroundingChunk[]; /** GroundingMetadata groundingSupports. */ public groundingSupports: google.ai.generativelanguage.v1.IGroundingSupport[]; /** GroundingMetadata retrievalMetadata. */ public retrievalMetadata?: (google.ai.generativelanguage.v1.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries. */ public webSearchQueries: string[]; /** GroundingMetadata googleMapsWidgetContextToken. */ public googleMapsWidgetContextToken?: (string|null); /** * Creates a new GroundingMetadata instance using the specified properties. * @param [properties] Properties to set * @returns GroundingMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1.IGroundingMetadata): google.ai.generativelanguage.v1.GroundingMetadata; /** * Encodes the specified GroundingMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GroundingMetadata; /** * Decodes a GroundingMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GroundingMetadata; /** * Verifies a GroundingMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GroundingMetadata; /** * Creates a plain object from a GroundingMetadata message. Also converts values to other types if specified. * @param message GroundingMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GroundingMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SearchEntryPoint. */ interface ISearchEntryPoint { /** SearchEntryPoint renderedContent */ renderedContent?: (string|null); /** SearchEntryPoint sdkBlob */ sdkBlob?: (Uint8Array|Buffer|string|null); } /** Represents a SearchEntryPoint. */ class SearchEntryPoint implements ISearchEntryPoint { /** * Constructs a new SearchEntryPoint. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ISearchEntryPoint); /** SearchEntryPoint renderedContent. */ public renderedContent: string; /** SearchEntryPoint sdkBlob. */ public sdkBlob: (Uint8Array|Buffer|string); /** * Creates a new SearchEntryPoint instance using the specified properties. * @param [properties] Properties to set * @returns SearchEntryPoint instance */ public static create(properties?: google.ai.generativelanguage.v1.ISearchEntryPoint): google.ai.generativelanguage.v1.SearchEntryPoint; /** * Encodes the specified SearchEntryPoint message. Does not implicitly {@link google.ai.generativelanguage.v1.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SearchEntryPoint message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SearchEntryPoint message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.SearchEntryPoint; /** * Decodes a SearchEntryPoint message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.SearchEntryPoint; /** * Verifies a SearchEntryPoint message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SearchEntryPoint message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SearchEntryPoint */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.SearchEntryPoint; /** * Creates a plain object from a SearchEntryPoint message. Also converts values to other types if specified. * @param message SearchEntryPoint * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.SearchEntryPoint, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SearchEntryPoint to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SearchEntryPoint * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingChunk. */ interface IGroundingChunk { /** GroundingChunk web */ web?: (google.ai.generativelanguage.v1.GroundingChunk.IWeb|null); } /** Represents a GroundingChunk. */ class GroundingChunk implements IGroundingChunk { /** * Constructs a new GroundingChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGroundingChunk); /** GroundingChunk web. */ public web?: (google.ai.generativelanguage.v1.GroundingChunk.IWeb|null); /** GroundingChunk chunkType. */ public chunkType?: "web"; /** * Creates a new GroundingChunk instance using the specified properties. * @param [properties] Properties to set * @returns GroundingChunk instance */ public static create(properties?: google.ai.generativelanguage.v1.IGroundingChunk): google.ai.generativelanguage.v1.GroundingChunk; /** * Encodes the specified GroundingChunk message. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GroundingChunk; /** * Decodes a GroundingChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GroundingChunk; /** * Verifies a GroundingChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GroundingChunk; /** * Creates a plain object from a GroundingChunk message. Also converts values to other types if specified. * @param message GroundingChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GroundingChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GroundingChunk { /** Properties of a Web. */ interface IWeb { /** Web uri */ uri?: (string|null); /** Web title */ title?: (string|null); } /** Represents a Web. */ class Web implements IWeb { /** * Constructs a new Web. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.GroundingChunk.IWeb); /** Web uri. */ public uri?: (string|null); /** Web title. */ public title?: (string|null); /** * Creates a new Web instance using the specified properties. * @param [properties] Properties to set * @returns Web instance */ public static create(properties?: google.ai.generativelanguage.v1.GroundingChunk.IWeb): google.ai.generativelanguage.v1.GroundingChunk.Web; /** * Encodes the specified Web message. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Web message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Web message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GroundingChunk.Web; /** * Decodes a Web message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GroundingChunk.Web; /** * Verifies a Web message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Web message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Web */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GroundingChunk.Web; /** * Creates a plain object from a Web message. Also converts values to other types if specified. * @param message Web * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GroundingChunk.Web, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Web to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Web * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a Segment. */ interface ISegment { /** Segment partIndex */ partIndex?: (number|null); /** Segment startIndex */ startIndex?: (number|null); /** Segment endIndex */ endIndex?: (number|null); /** Segment text */ text?: (string|null); } /** Represents a Segment. */ class Segment implements ISegment { /** * Constructs a new Segment. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ISegment); /** Segment partIndex. */ public partIndex: number; /** Segment startIndex. */ public startIndex: number; /** Segment endIndex. */ public endIndex: number; /** Segment text. */ public text: string; /** * Creates a new Segment instance using the specified properties. * @param [properties] Properties to set * @returns Segment instance */ public static create(properties?: google.ai.generativelanguage.v1.ISegment): google.ai.generativelanguage.v1.Segment; /** * Encodes the specified Segment message. Does not implicitly {@link google.ai.generativelanguage.v1.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Segment message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Segment message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Segment; /** * Decodes a Segment message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Segment; /** * Verifies a Segment message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Segment message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Segment */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Segment; /** * Creates a plain object from a Segment message. Also converts values to other types if specified. * @param message Segment * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Segment, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Segment to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Segment * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingSupport. */ interface IGroundingSupport { /** GroundingSupport segment */ segment?: (google.ai.generativelanguage.v1.ISegment|null); /** GroundingSupport groundingChunkIndices */ groundingChunkIndices?: (number[]|null); /** GroundingSupport confidenceScores */ confidenceScores?: (number[]|null); } /** Represents a GroundingSupport. */ class GroundingSupport implements IGroundingSupport { /** * Constructs a new GroundingSupport. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGroundingSupport); /** GroundingSupport segment. */ public segment?: (google.ai.generativelanguage.v1.ISegment|null); /** GroundingSupport groundingChunkIndices. */ public groundingChunkIndices: number[]; /** GroundingSupport confidenceScores. */ public confidenceScores: number[]; /** * Creates a new GroundingSupport instance using the specified properties. * @param [properties] Properties to set * @returns GroundingSupport instance */ public static create(properties?: google.ai.generativelanguage.v1.IGroundingSupport): google.ai.generativelanguage.v1.GroundingSupport; /** * Encodes the specified GroundingSupport message. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingSupport message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingSupport message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GroundingSupport; /** * Decodes a GroundingSupport message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GroundingSupport; /** * Verifies a GroundingSupport message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingSupport message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingSupport */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GroundingSupport; /** * Creates a plain object from a GroundingSupport message. Also converts values to other types if specified. * @param message GroundingSupport * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GroundingSupport, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingSupport to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingSupport * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedContentRequest. */ interface IEmbedContentRequest { /** EmbedContentRequest model */ model?: (string|null); /** EmbedContentRequest content */ content?: (google.ai.generativelanguage.v1.IContent|null); /** EmbedContentRequest taskType */ taskType?: (google.ai.generativelanguage.v1.TaskType|keyof typeof google.ai.generativelanguage.v1.TaskType|null); /** EmbedContentRequest title */ title?: (string|null); /** EmbedContentRequest outputDimensionality */ outputDimensionality?: (number|null); } /** Represents an EmbedContentRequest. */ class EmbedContentRequest implements IEmbedContentRequest { /** * Constructs a new EmbedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IEmbedContentRequest); /** EmbedContentRequest model. */ public model: string; /** EmbedContentRequest content. */ public content?: (google.ai.generativelanguage.v1.IContent|null); /** EmbedContentRequest taskType. */ public taskType?: (google.ai.generativelanguage.v1.TaskType|keyof typeof google.ai.generativelanguage.v1.TaskType|null); /** EmbedContentRequest title. */ public title?: (string|null); /** EmbedContentRequest outputDimensionality. */ public outputDimensionality?: (number|null); /** * Creates a new EmbedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.IEmbedContentRequest): google.ai.generativelanguage.v1.EmbedContentRequest; /** * Encodes the specified EmbedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.EmbedContentRequest; /** * Decodes an EmbedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.EmbedContentRequest; /** * Verifies an EmbedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.EmbedContentRequest; /** * Creates a plain object from an EmbedContentRequest message. Also converts values to other types if specified. * @param message EmbedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.EmbedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ContentEmbedding. */ interface IContentEmbedding { /** ContentEmbedding values */ values?: (number[]|null); } /** Represents a ContentEmbedding. */ class ContentEmbedding implements IContentEmbedding { /** * Constructs a new ContentEmbedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IContentEmbedding); /** ContentEmbedding values. */ public values: number[]; /** * Creates a new ContentEmbedding instance using the specified properties. * @param [properties] Properties to set * @returns ContentEmbedding instance */ public static create(properties?: google.ai.generativelanguage.v1.IContentEmbedding): google.ai.generativelanguage.v1.ContentEmbedding; /** * Encodes the specified ContentEmbedding message. Does not implicitly {@link google.ai.generativelanguage.v1.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentEmbedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentEmbedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.ContentEmbedding; /** * Decodes a ContentEmbedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.ContentEmbedding; /** * Verifies a ContentEmbedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentEmbedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentEmbedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.ContentEmbedding; /** * Creates a plain object from a ContentEmbedding message. Also converts values to other types if specified. * @param message ContentEmbedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.ContentEmbedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentEmbedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentEmbedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedContentResponse. */ interface IEmbedContentResponse { /** EmbedContentResponse embedding */ embedding?: (google.ai.generativelanguage.v1.IContentEmbedding|null); } /** Represents an EmbedContentResponse. */ class EmbedContentResponse implements IEmbedContentResponse { /** * Constructs a new EmbedContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IEmbedContentResponse); /** EmbedContentResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1.IContentEmbedding|null); /** * Creates a new EmbedContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1.IEmbedContentResponse): google.ai.generativelanguage.v1.EmbedContentResponse; /** * Encodes the specified EmbedContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.EmbedContentResponse; /** * Decodes an EmbedContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.EmbedContentResponse; /** * Verifies an EmbedContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.EmbedContentResponse; /** * Creates a plain object from an EmbedContentResponse message. Also converts values to other types if specified. * @param message EmbedContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.EmbedContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsRequest. */ interface IBatchEmbedContentsRequest { /** BatchEmbedContentsRequest model */ model?: (string|null); /** BatchEmbedContentsRequest requests */ requests?: (google.ai.generativelanguage.v1.IEmbedContentRequest[]|null); } /** Represents a BatchEmbedContentsRequest. */ class BatchEmbedContentsRequest implements IBatchEmbedContentsRequest { /** * Constructs a new BatchEmbedContentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest); /** BatchEmbedContentsRequest model. */ public model: string; /** BatchEmbedContentsRequest requests. */ public requests: google.ai.generativelanguage.v1.IEmbedContentRequest[]; /** * Creates a new BatchEmbedContentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest): google.ai.generativelanguage.v1.BatchEmbedContentsRequest; /** * Encodes the specified BatchEmbedContentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.BatchEmbedContentsRequest; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.BatchEmbedContentsRequest; /** * Verifies a BatchEmbedContentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.BatchEmbedContentsRequest; /** * Creates a plain object from a BatchEmbedContentsRequest message. Also converts values to other types if specified. * @param message BatchEmbedContentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.BatchEmbedContentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsResponse. */ interface IBatchEmbedContentsResponse { /** BatchEmbedContentsResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1.IContentEmbedding[]|null); } /** Represents a BatchEmbedContentsResponse. */ class BatchEmbedContentsResponse implements IBatchEmbedContentsResponse { /** * Constructs a new BatchEmbedContentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IBatchEmbedContentsResponse); /** BatchEmbedContentsResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1.IContentEmbedding[]; /** * Creates a new BatchEmbedContentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1.IBatchEmbedContentsResponse): google.ai.generativelanguage.v1.BatchEmbedContentsResponse; /** * Encodes the specified BatchEmbedContentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.BatchEmbedContentsResponse; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.BatchEmbedContentsResponse; /** * Verifies a BatchEmbedContentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.BatchEmbedContentsResponse; /** * Creates a plain object from a BatchEmbedContentsResponse message. Also converts values to other types if specified. * @param message BatchEmbedContentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.BatchEmbedContentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensRequest. */ interface ICountTokensRequest { /** CountTokensRequest model */ model?: (string|null); /** CountTokensRequest contents */ contents?: (google.ai.generativelanguage.v1.IContent[]|null); /** CountTokensRequest generateContentRequest */ generateContentRequest?: (google.ai.generativelanguage.v1.IGenerateContentRequest|null); } /** Represents a CountTokensRequest. */ class CountTokensRequest implements ICountTokensRequest { /** * Constructs a new CountTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ICountTokensRequest); /** CountTokensRequest model. */ public model: string; /** CountTokensRequest contents. */ public contents: google.ai.generativelanguage.v1.IContent[]; /** CountTokensRequest generateContentRequest. */ public generateContentRequest?: (google.ai.generativelanguage.v1.IGenerateContentRequest|null); /** * Creates a new CountTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.ICountTokensRequest): google.ai.generativelanguage.v1.CountTokensRequest; /** * Encodes the specified CountTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.CountTokensRequest; /** * Decodes a CountTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.CountTokensRequest; /** * Verifies a CountTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.CountTokensRequest; /** * Creates a plain object from a CountTokensRequest message. Also converts values to other types if specified. * @param message CountTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.CountTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensResponse. */ interface ICountTokensResponse { /** CountTokensResponse totalTokens */ totalTokens?: (number|null); /** CountTokensResponse promptTokensDetails */ promptTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); /** CountTokensResponse cacheTokensDetails */ cacheTokensDetails?: (google.ai.generativelanguage.v1.IModalityTokenCount[]|null); } /** Represents a CountTokensResponse. */ class CountTokensResponse implements ICountTokensResponse { /** * Constructs a new CountTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ICountTokensResponse); /** CountTokensResponse totalTokens. */ public totalTokens: number; /** CountTokensResponse promptTokensDetails. */ public promptTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** CountTokensResponse cacheTokensDetails. */ public cacheTokensDetails: google.ai.generativelanguage.v1.IModalityTokenCount[]; /** * Creates a new CountTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1.ICountTokensResponse): google.ai.generativelanguage.v1.CountTokensResponse; /** * Encodes the specified CountTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.CountTokensResponse; /** * Decodes a CountTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.CountTokensResponse; /** * Verifies a CountTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.CountTokensResponse; /** * Creates a plain object from a CountTokensResponse message. Also converts values to other types if specified. * @param message CountTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.CountTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** HarmCategory enum. */ enum HarmCategory { HARM_CATEGORY_UNSPECIFIED = 0, HARM_CATEGORY_DEROGATORY = 1, HARM_CATEGORY_TOXICITY = 2, HARM_CATEGORY_VIOLENCE = 3, HARM_CATEGORY_SEXUAL = 4, HARM_CATEGORY_MEDICAL = 5, HARM_CATEGORY_DANGEROUS = 6, HARM_CATEGORY_HARASSMENT = 7, HARM_CATEGORY_HATE_SPEECH = 8, HARM_CATEGORY_SEXUALLY_EXPLICIT = 9, HARM_CATEGORY_DANGEROUS_CONTENT = 10, HARM_CATEGORY_CIVIC_INTEGRITY = 11 } /** Properties of a SafetyRating. */ interface ISafetyRating { /** SafetyRating category */ category?: (google.ai.generativelanguage.v1.HarmCategory|keyof typeof google.ai.generativelanguage.v1.HarmCategory|null); /** SafetyRating probability */ probability?: (google.ai.generativelanguage.v1.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1.SafetyRating.HarmProbability|null); /** SafetyRating blocked */ blocked?: (boolean|null); } /** Represents a SafetyRating. */ class SafetyRating implements ISafetyRating { /** * Constructs a new SafetyRating. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ISafetyRating); /** SafetyRating category. */ public category: (google.ai.generativelanguage.v1.HarmCategory|keyof typeof google.ai.generativelanguage.v1.HarmCategory); /** SafetyRating probability. */ public probability: (google.ai.generativelanguage.v1.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1.SafetyRating.HarmProbability); /** SafetyRating blocked. */ public blocked: boolean; /** * Creates a new SafetyRating instance using the specified properties. * @param [properties] Properties to set * @returns SafetyRating instance */ public static create(properties?: google.ai.generativelanguage.v1.ISafetyRating): google.ai.generativelanguage.v1.SafetyRating; /** * Encodes the specified SafetyRating message. Does not implicitly {@link google.ai.generativelanguage.v1.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyRating message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyRating message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.SafetyRating; /** * Decodes a SafetyRating message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.SafetyRating; /** * Verifies a SafetyRating message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyRating message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyRating */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.SafetyRating; /** * Creates a plain object from a SafetyRating message. Also converts values to other types if specified. * @param message SafetyRating * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.SafetyRating, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyRating to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyRating * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetyRating { /** HarmProbability enum. */ enum HarmProbability { HARM_PROBABILITY_UNSPECIFIED = 0, NEGLIGIBLE = 1, LOW = 2, MEDIUM = 3, HIGH = 4 } } /** Properties of a SafetySetting. */ interface ISafetySetting { /** SafetySetting category */ category?: (google.ai.generativelanguage.v1.HarmCategory|keyof typeof google.ai.generativelanguage.v1.HarmCategory|null); /** SafetySetting threshold */ threshold?: (google.ai.generativelanguage.v1.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1.SafetySetting.HarmBlockThreshold|null); } /** Represents a SafetySetting. */ class SafetySetting implements ISafetySetting { /** * Constructs a new SafetySetting. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.ISafetySetting); /** SafetySetting category. */ public category: (google.ai.generativelanguage.v1.HarmCategory|keyof typeof google.ai.generativelanguage.v1.HarmCategory); /** SafetySetting threshold. */ public threshold: (google.ai.generativelanguage.v1.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1.SafetySetting.HarmBlockThreshold); /** * Creates a new SafetySetting instance using the specified properties. * @param [properties] Properties to set * @returns SafetySetting instance */ public static create(properties?: google.ai.generativelanguage.v1.ISafetySetting): google.ai.generativelanguage.v1.SafetySetting; /** * Encodes the specified SafetySetting message. Does not implicitly {@link google.ai.generativelanguage.v1.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetySetting message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetySetting message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.SafetySetting; /** * Decodes a SafetySetting message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.SafetySetting; /** * Verifies a SafetySetting message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetySetting message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetySetting */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.SafetySetting; /** * Creates a plain object from a SafetySetting message. Also converts values to other types if specified. * @param message SafetySetting * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.SafetySetting, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetySetting to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetySetting * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetySetting { /** HarmBlockThreshold enum. */ enum HarmBlockThreshold { HARM_BLOCK_THRESHOLD_UNSPECIFIED = 0, BLOCK_LOW_AND_ABOVE = 1, BLOCK_MEDIUM_AND_ABOVE = 2, BLOCK_ONLY_HIGH = 3, BLOCK_NONE = 4, OFF = 5 } } /** Properties of a Model. */ interface IModel { /** Model name */ name?: (string|null); /** Model baseModelId */ baseModelId?: (string|null); /** Model version */ version?: (string|null); /** Model displayName */ displayName?: (string|null); /** Model description */ description?: (string|null); /** Model inputTokenLimit */ inputTokenLimit?: (number|null); /** Model outputTokenLimit */ outputTokenLimit?: (number|null); /** Model supportedGenerationMethods */ supportedGenerationMethods?: (string[]|null); /** Model temperature */ temperature?: (number|null); /** Model maxTemperature */ maxTemperature?: (number|null); /** Model topP */ topP?: (number|null); /** Model topK */ topK?: (number|null); /** Model thinking */ thinking?: (boolean|null); } /** Represents a Model. */ class Model implements IModel { /** * Constructs a new Model. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IModel); /** Model name. */ public name: string; /** Model baseModelId. */ public baseModelId: string; /** Model version. */ public version: string; /** Model displayName. */ public displayName: string; /** Model description. */ public description: string; /** Model inputTokenLimit. */ public inputTokenLimit: number; /** Model outputTokenLimit. */ public outputTokenLimit: number; /** Model supportedGenerationMethods. */ public supportedGenerationMethods: string[]; /** Model temperature. */ public temperature?: (number|null); /** Model maxTemperature. */ public maxTemperature?: (number|null); /** Model topP. */ public topP?: (number|null); /** Model topK. */ public topK?: (number|null); /** Model thinking. */ public thinking: boolean; /** * Creates a new Model instance using the specified properties. * @param [properties] Properties to set * @returns Model instance */ public static create(properties?: google.ai.generativelanguage.v1.IModel): google.ai.generativelanguage.v1.Model; /** * Encodes the specified Model message. Does not implicitly {@link google.ai.generativelanguage.v1.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Model message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Model message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.Model; /** * Decodes a Model message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.Model; /** * Verifies a Model message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Model message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Model */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.Model; /** * Creates a plain object from a Model message. Also converts values to other types if specified. * @param message Model * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.Model, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Model to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Model * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a ModelService */ class ModelService extends $protobuf.rpc.Service { /** * Constructs a new ModelService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new ModelService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ModelService; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Model */ public getModel(request: google.ai.generativelanguage.v1.IGetModelRequest, callback: google.ai.generativelanguage.v1.ModelService.GetModelCallback): void; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @returns Promise */ public getModel(request: google.ai.generativelanguage.v1.IGetModelRequest): Promise; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListModelsResponse */ public listModels(request: google.ai.generativelanguage.v1.IListModelsRequest, callback: google.ai.generativelanguage.v1.ModelService.ListModelsCallback): void; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @returns Promise */ public listModels(request: google.ai.generativelanguage.v1.IListModelsRequest): Promise; } namespace ModelService { /** * Callback as used by {@link google.ai.generativelanguage.v1.ModelService|getModel}. * @param error Error, if any * @param [response] Model */ type GetModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.Model) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1.ModelService|listModels}. * @param error Error, if any * @param [response] ListModelsResponse */ type ListModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1.ListModelsResponse) => void; } /** Properties of a GetModelRequest. */ interface IGetModelRequest { /** GetModelRequest name */ name?: (string|null); } /** Represents a GetModelRequest. */ class GetModelRequest implements IGetModelRequest { /** * Constructs a new GetModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IGetModelRequest); /** GetModelRequest name. */ public name: string; /** * Creates a new GetModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.IGetModelRequest): google.ai.generativelanguage.v1.GetModelRequest; /** * Encodes the specified GetModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.GetModelRequest; /** * Decodes a GetModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.GetModelRequest; /** * Verifies a GetModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.GetModelRequest; /** * Creates a plain object from a GetModelRequest message. Also converts values to other types if specified. * @param message GetModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.GetModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsRequest. */ interface IListModelsRequest { /** ListModelsRequest pageSize */ pageSize?: (number|null); /** ListModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListModelsRequest. */ class ListModelsRequest implements IListModelsRequest { /** * Constructs a new ListModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IListModelsRequest); /** ListModelsRequest pageSize. */ public pageSize: number; /** ListModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1.IListModelsRequest): google.ai.generativelanguage.v1.ListModelsRequest; /** * Encodes the specified ListModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.ListModelsRequest; /** * Decodes a ListModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.ListModelsRequest; /** * Verifies a ListModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.ListModelsRequest; /** * Creates a plain object from a ListModelsRequest message. Also converts values to other types if specified. * @param message ListModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.ListModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsResponse. */ interface IListModelsResponse { /** ListModelsResponse models */ models?: (google.ai.generativelanguage.v1.IModel[]|null); /** ListModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListModelsResponse. */ class ListModelsResponse implements IListModelsResponse { /** * Constructs a new ListModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1.IListModelsResponse); /** ListModelsResponse models. */ public models: google.ai.generativelanguage.v1.IModel[]; /** ListModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1.IListModelsResponse): google.ai.generativelanguage.v1.ListModelsResponse; /** * Encodes the specified ListModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1.ListModelsResponse; /** * Decodes a ListModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1.ListModelsResponse; /** * Verifies a ListModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1.ListModelsResponse; /** * Creates a plain object from a ListModelsResponse message. Also converts values to other types if specified. * @param message ListModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1.ListModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace v1alpha. */ namespace v1alpha { /** Represents a CacheService */ class CacheService extends $protobuf.rpc.Service { /** * Constructs a new CacheService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new CacheService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): CacheService; /** * Calls ListCachedContents. * @param request ListCachedContentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListCachedContentsResponse */ public listCachedContents(request: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest, callback: google.ai.generativelanguage.v1alpha.CacheService.ListCachedContentsCallback): void; /** * Calls ListCachedContents. * @param request ListCachedContentsRequest message or plain object * @returns Promise */ public listCachedContents(request: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest): Promise; /** * Calls CreateCachedContent. * @param request CreateCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public createCachedContent(request: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest, callback: google.ai.generativelanguage.v1alpha.CacheService.CreateCachedContentCallback): void; /** * Calls CreateCachedContent. * @param request CreateCachedContentRequest message or plain object * @returns Promise */ public createCachedContent(request: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest): Promise; /** * Calls GetCachedContent. * @param request GetCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public getCachedContent(request: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest, callback: google.ai.generativelanguage.v1alpha.CacheService.GetCachedContentCallback): void; /** * Calls GetCachedContent. * @param request GetCachedContentRequest message or plain object * @returns Promise */ public getCachedContent(request: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest): Promise; /** * Calls UpdateCachedContent. * @param request UpdateCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public updateCachedContent(request: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest, callback: google.ai.generativelanguage.v1alpha.CacheService.UpdateCachedContentCallback): void; /** * Calls UpdateCachedContent. * @param request UpdateCachedContentRequest message or plain object * @returns Promise */ public updateCachedContent(request: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest): Promise; /** * Calls DeleteCachedContent. * @param request DeleteCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteCachedContent(request: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest, callback: google.ai.generativelanguage.v1alpha.CacheService.DeleteCachedContentCallback): void; /** * Calls DeleteCachedContent. * @param request DeleteCachedContentRequest message or plain object * @returns Promise */ public deleteCachedContent(request: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest): Promise; } namespace CacheService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.CacheService|listCachedContents}. * @param error Error, if any * @param [response] ListCachedContentsResponse */ type ListCachedContentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListCachedContentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.CacheService|createCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type CreateCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.CacheService|getCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type GetCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.CacheService|updateCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type UpdateCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.CacheService|deleteCachedContent}. * @param error Error, if any * @param [response] Empty */ type DeleteCachedContentCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a ListCachedContentsRequest. */ interface IListCachedContentsRequest { /** ListCachedContentsRequest pageSize */ pageSize?: (number|null); /** ListCachedContentsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListCachedContentsRequest. */ class ListCachedContentsRequest implements IListCachedContentsRequest { /** * Constructs a new ListCachedContentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest); /** ListCachedContentsRequest pageSize. */ public pageSize: number; /** ListCachedContentsRequest pageToken. */ public pageToken: string; /** * Creates a new ListCachedContentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListCachedContentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest): google.ai.generativelanguage.v1alpha.ListCachedContentsRequest; /** * Encodes the specified ListCachedContentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCachedContentsRequest.verify|verify} messages. * @param message ListCachedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCachedContentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCachedContentsRequest.verify|verify} messages. * @param message ListCachedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListCachedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCachedContentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCachedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListCachedContentsRequest; /** * Decodes a ListCachedContentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCachedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListCachedContentsRequest; /** * Verifies a ListCachedContentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCachedContentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCachedContentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListCachedContentsRequest; /** * Creates a plain object from a ListCachedContentsRequest message. Also converts values to other types if specified. * @param message ListCachedContentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListCachedContentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCachedContentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCachedContentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCachedContentsResponse. */ interface IListCachedContentsResponse { /** ListCachedContentsResponse cachedContents */ cachedContents?: (google.ai.generativelanguage.v1alpha.ICachedContent[]|null); /** ListCachedContentsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListCachedContentsResponse. */ class ListCachedContentsResponse implements IListCachedContentsResponse { /** * Constructs a new ListCachedContentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListCachedContentsResponse); /** ListCachedContentsResponse cachedContents. */ public cachedContents: google.ai.generativelanguage.v1alpha.ICachedContent[]; /** ListCachedContentsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListCachedContentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListCachedContentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListCachedContentsResponse): google.ai.generativelanguage.v1alpha.ListCachedContentsResponse; /** * Encodes the specified ListCachedContentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCachedContentsResponse.verify|verify} messages. * @param message ListCachedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListCachedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCachedContentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCachedContentsResponse.verify|verify} messages. * @param message ListCachedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListCachedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCachedContentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCachedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListCachedContentsResponse; /** * Decodes a ListCachedContentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCachedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListCachedContentsResponse; /** * Verifies a ListCachedContentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCachedContentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCachedContentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListCachedContentsResponse; /** * Creates a plain object from a ListCachedContentsResponse message. Also converts values to other types if specified. * @param message ListCachedContentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListCachedContentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCachedContentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCachedContentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateCachedContentRequest. */ interface ICreateCachedContentRequest { /** CreateCachedContentRequest cachedContent */ cachedContent?: (google.ai.generativelanguage.v1alpha.ICachedContent|null); } /** Represents a CreateCachedContentRequest. */ class CreateCachedContentRequest implements ICreateCachedContentRequest { /** * Constructs a new CreateCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest); /** CreateCachedContentRequest cachedContent. */ public cachedContent?: (google.ai.generativelanguage.v1alpha.ICachedContent|null); /** * Creates a new CreateCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest): google.ai.generativelanguage.v1alpha.CreateCachedContentRequest; /** * Encodes the specified CreateCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateCachedContentRequest.verify|verify} messages. * @param message CreateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateCachedContentRequest.verify|verify} messages. * @param message CreateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateCachedContentRequest; /** * Decodes a CreateCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateCachedContentRequest; /** * Verifies a CreateCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateCachedContentRequest; /** * Creates a plain object from a CreateCachedContentRequest message. Also converts values to other types if specified. * @param message CreateCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetCachedContentRequest. */ interface IGetCachedContentRequest { /** GetCachedContentRequest name */ name?: (string|null); } /** Represents a GetCachedContentRequest. */ class GetCachedContentRequest implements IGetCachedContentRequest { /** * Constructs a new GetCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest); /** GetCachedContentRequest name. */ public name: string; /** * Creates a new GetCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest): google.ai.generativelanguage.v1alpha.GetCachedContentRequest; /** * Encodes the specified GetCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetCachedContentRequest.verify|verify} messages. * @param message GetCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetCachedContentRequest.verify|verify} messages. * @param message GetCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetCachedContentRequest; /** * Decodes a GetCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetCachedContentRequest; /** * Verifies a GetCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetCachedContentRequest; /** * Creates a plain object from a GetCachedContentRequest message. Also converts values to other types if specified. * @param message GetCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateCachedContentRequest. */ interface IUpdateCachedContentRequest { /** UpdateCachedContentRequest cachedContent */ cachedContent?: (google.ai.generativelanguage.v1alpha.ICachedContent|null); /** UpdateCachedContentRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateCachedContentRequest. */ class UpdateCachedContentRequest implements IUpdateCachedContentRequest { /** * Constructs a new UpdateCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest); /** UpdateCachedContentRequest cachedContent. */ public cachedContent?: (google.ai.generativelanguage.v1alpha.ICachedContent|null); /** UpdateCachedContentRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest): google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest; /** * Encodes the specified UpdateCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest.verify|verify} messages. * @param message UpdateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest.verify|verify} messages. * @param message UpdateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest; /** * Decodes an UpdateCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest; /** * Verifies an UpdateCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest; /** * Creates a plain object from an UpdateCachedContentRequest message. Also converts values to other types if specified. * @param message UpdateCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdateCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteCachedContentRequest. */ interface IDeleteCachedContentRequest { /** DeleteCachedContentRequest name */ name?: (string|null); } /** Represents a DeleteCachedContentRequest. */ class DeleteCachedContentRequest implements IDeleteCachedContentRequest { /** * Constructs a new DeleteCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest); /** DeleteCachedContentRequest name. */ public name: string; /** * Creates a new DeleteCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest): google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest; /** * Encodes the specified DeleteCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest.verify|verify} messages. * @param message DeleteCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest.verify|verify} messages. * @param message DeleteCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest; /** * Decodes a DeleteCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest; /** * Verifies a DeleteCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest; /** * Creates a plain object from a DeleteCachedContentRequest message. Also converts values to other types if specified. * @param message DeleteCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CachedContent. */ interface ICachedContent { /** CachedContent expireTime */ expireTime?: (google.protobuf.ITimestamp|null); /** CachedContent ttl */ ttl?: (google.protobuf.IDuration|null); /** CachedContent name */ name?: (string|null); /** CachedContent displayName */ displayName?: (string|null); /** CachedContent model */ model?: (string|null); /** CachedContent systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** CachedContent contents */ contents?: (google.ai.generativelanguage.v1alpha.IContent[]|null); /** CachedContent tools */ tools?: (google.ai.generativelanguage.v1alpha.ITool[]|null); /** CachedContent toolConfig */ toolConfig?: (google.ai.generativelanguage.v1alpha.IToolConfig|null); /** CachedContent createTime */ createTime?: (google.protobuf.ITimestamp|null); /** CachedContent updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** CachedContent usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata|null); } /** Represents a CachedContent. */ class CachedContent implements ICachedContent { /** * Constructs a new CachedContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICachedContent); /** CachedContent expireTime. */ public expireTime?: (google.protobuf.ITimestamp|null); /** CachedContent ttl. */ public ttl?: (google.protobuf.IDuration|null); /** CachedContent name. */ public name?: (string|null); /** CachedContent displayName. */ public displayName?: (string|null); /** CachedContent model. */ public model?: (string|null); /** CachedContent systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** CachedContent contents. */ public contents: google.ai.generativelanguage.v1alpha.IContent[]; /** CachedContent tools. */ public tools: google.ai.generativelanguage.v1alpha.ITool[]; /** CachedContent toolConfig. */ public toolConfig?: (google.ai.generativelanguage.v1alpha.IToolConfig|null); /** CachedContent createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** CachedContent updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** CachedContent usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata|null); /** CachedContent expiration. */ public expiration?: ("expireTime"|"ttl"); /** * Creates a new CachedContent instance using the specified properties. * @param [properties] Properties to set * @returns CachedContent instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICachedContent): google.ai.generativelanguage.v1alpha.CachedContent; /** * Encodes the specified CachedContent message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CachedContent.verify|verify} messages. * @param message CachedContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICachedContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CachedContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CachedContent.verify|verify} messages. * @param message CachedContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICachedContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CachedContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CachedContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CachedContent; /** * Decodes a CachedContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CachedContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CachedContent; /** * Verifies a CachedContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CachedContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CachedContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CachedContent; /** * Creates a plain object from a CachedContent message. Also converts values to other types if specified. * @param message CachedContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CachedContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CachedContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CachedContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace CachedContent { /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata); /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata): google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.CachedContent.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CachedContent.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Type enum. */ enum Type { TYPE_UNSPECIFIED = 0, STRING = 1, NUMBER = 2, INTEGER = 3, BOOLEAN = 4, ARRAY = 5, OBJECT = 6 } /** Properties of a Content. */ interface IContent { /** Content parts */ parts?: (google.ai.generativelanguage.v1alpha.IPart[]|null); /** Content role */ role?: (string|null); } /** Represents a Content. */ class Content implements IContent { /** * Constructs a new Content. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IContent); /** Content parts. */ public parts: google.ai.generativelanguage.v1alpha.IPart[]; /** Content role. */ public role: string; /** * Creates a new Content instance using the specified properties. * @param [properties] Properties to set * @returns Content instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IContent): google.ai.generativelanguage.v1alpha.Content; /** * Encodes the specified Content message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Content message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Content message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Content; /** * Decodes a Content message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Content; /** * Verifies a Content message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Content message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Content */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Content; /** * Creates a plain object from a Content message. Also converts values to other types if specified. * @param message Content * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Content, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Content to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Content * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Part. */ interface IPart { /** Part text */ text?: (string|null); /** Part inlineData */ inlineData?: (google.ai.generativelanguage.v1alpha.IBlob|null); /** Part functionCall */ functionCall?: (google.ai.generativelanguage.v1alpha.IFunctionCall|null); /** Part functionResponse */ functionResponse?: (google.ai.generativelanguage.v1alpha.IFunctionResponse|null); /** Part fileData */ fileData?: (google.ai.generativelanguage.v1alpha.IFileData|null); /** Part executableCode */ executableCode?: (google.ai.generativelanguage.v1alpha.IExecutableCode|null); /** Part codeExecutionResult */ codeExecutionResult?: (google.ai.generativelanguage.v1alpha.ICodeExecutionResult|null); } /** Represents a Part. */ class Part implements IPart { /** * Constructs a new Part. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IPart); /** Part text. */ public text?: (string|null); /** Part inlineData. */ public inlineData?: (google.ai.generativelanguage.v1alpha.IBlob|null); /** Part functionCall. */ public functionCall?: (google.ai.generativelanguage.v1alpha.IFunctionCall|null); /** Part functionResponse. */ public functionResponse?: (google.ai.generativelanguage.v1alpha.IFunctionResponse|null); /** Part fileData. */ public fileData?: (google.ai.generativelanguage.v1alpha.IFileData|null); /** Part executableCode. */ public executableCode?: (google.ai.generativelanguage.v1alpha.IExecutableCode|null); /** Part codeExecutionResult. */ public codeExecutionResult?: (google.ai.generativelanguage.v1alpha.ICodeExecutionResult|null); /** Part data. */ public data?: ("text"|"inlineData"|"functionCall"|"functionResponse"|"fileData"|"executableCode"|"codeExecutionResult"); /** * Creates a new Part instance using the specified properties. * @param [properties] Properties to set * @returns Part instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IPart): google.ai.generativelanguage.v1alpha.Part; /** * Encodes the specified Part message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Part message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Part message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Part; /** * Decodes a Part message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Part; /** * Verifies a Part message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Part message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Part */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Part; /** * Creates a plain object from a Part message. Also converts values to other types if specified. * @param message Part * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Part, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Part to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Part * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Blob. */ interface IBlob { /** Blob mimeType */ mimeType?: (string|null); /** Blob data */ data?: (Uint8Array|Buffer|string|null); } /** Represents a Blob. */ class Blob implements IBlob { /** * Constructs a new Blob. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBlob); /** Blob mimeType. */ public mimeType: string; /** Blob data. */ public data: (Uint8Array|Buffer|string); /** * Creates a new Blob instance using the specified properties. * @param [properties] Properties to set * @returns Blob instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBlob): google.ai.generativelanguage.v1alpha.Blob; /** * Encodes the specified Blob message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Blob message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Blob message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Blob; /** * Decodes a Blob message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Blob; /** * Verifies a Blob message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Blob message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Blob */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Blob; /** * Creates a plain object from a Blob message. Also converts values to other types if specified. * @param message Blob * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Blob, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Blob to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Blob * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FileData. */ interface IFileData { /** FileData mimeType */ mimeType?: (string|null); /** FileData fileUri */ fileUri?: (string|null); } /** Represents a FileData. */ class FileData implements IFileData { /** * Constructs a new FileData. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFileData); /** FileData mimeType. */ public mimeType: string; /** FileData fileUri. */ public fileUri: string; /** * Creates a new FileData instance using the specified properties. * @param [properties] Properties to set * @returns FileData instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFileData): google.ai.generativelanguage.v1alpha.FileData; /** * Encodes the specified FileData message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FileData.verify|verify} messages. * @param message FileData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFileData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileData message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FileData.verify|verify} messages. * @param message FileData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFileData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileData message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.FileData; /** * Decodes a FileData message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.FileData; /** * Verifies a FileData message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileData message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileData */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.FileData; /** * Creates a plain object from a FileData message. Also converts values to other types if specified. * @param message FileData * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.FileData, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileData to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileData * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an ExecutableCode. */ interface IExecutableCode { /** ExecutableCode language */ language?: (google.ai.generativelanguage.v1alpha.ExecutableCode.Language|keyof typeof google.ai.generativelanguage.v1alpha.ExecutableCode.Language|null); /** ExecutableCode code */ code?: (string|null); } /** Represents an ExecutableCode. */ class ExecutableCode implements IExecutableCode { /** * Constructs a new ExecutableCode. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IExecutableCode); /** ExecutableCode language. */ public language: (google.ai.generativelanguage.v1alpha.ExecutableCode.Language|keyof typeof google.ai.generativelanguage.v1alpha.ExecutableCode.Language); /** ExecutableCode code. */ public code: string; /** * Creates a new ExecutableCode instance using the specified properties. * @param [properties] Properties to set * @returns ExecutableCode instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IExecutableCode): google.ai.generativelanguage.v1alpha.ExecutableCode; /** * Encodes the specified ExecutableCode message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ExecutableCode.verify|verify} messages. * @param message ExecutableCode message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IExecutableCode, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ExecutableCode message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ExecutableCode.verify|verify} messages. * @param message ExecutableCode message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IExecutableCode, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ExecutableCode message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ExecutableCode * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ExecutableCode; /** * Decodes an ExecutableCode message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ExecutableCode * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ExecutableCode; /** * Verifies an ExecutableCode message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ExecutableCode message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ExecutableCode */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ExecutableCode; /** * Creates a plain object from an ExecutableCode message. Also converts values to other types if specified. * @param message ExecutableCode * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ExecutableCode, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ExecutableCode to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ExecutableCode * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ExecutableCode { /** Language enum. */ enum Language { LANGUAGE_UNSPECIFIED = 0, PYTHON = 1 } } /** Properties of a CodeExecutionResult. */ interface ICodeExecutionResult { /** CodeExecutionResult outcome */ outcome?: (google.ai.generativelanguage.v1alpha.CodeExecutionResult.Outcome|keyof typeof google.ai.generativelanguage.v1alpha.CodeExecutionResult.Outcome|null); /** CodeExecutionResult output */ output?: (string|null); } /** Represents a CodeExecutionResult. */ class CodeExecutionResult implements ICodeExecutionResult { /** * Constructs a new CodeExecutionResult. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICodeExecutionResult); /** CodeExecutionResult outcome. */ public outcome: (google.ai.generativelanguage.v1alpha.CodeExecutionResult.Outcome|keyof typeof google.ai.generativelanguage.v1alpha.CodeExecutionResult.Outcome); /** CodeExecutionResult output. */ public output: string; /** * Creates a new CodeExecutionResult instance using the specified properties. * @param [properties] Properties to set * @returns CodeExecutionResult instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICodeExecutionResult): google.ai.generativelanguage.v1alpha.CodeExecutionResult; /** * Encodes the specified CodeExecutionResult message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CodeExecutionResult.verify|verify} messages. * @param message CodeExecutionResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICodeExecutionResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CodeExecutionResult message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CodeExecutionResult.verify|verify} messages. * @param message CodeExecutionResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICodeExecutionResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CodeExecutionResult message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CodeExecutionResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CodeExecutionResult; /** * Decodes a CodeExecutionResult message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CodeExecutionResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CodeExecutionResult; /** * Verifies a CodeExecutionResult message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CodeExecutionResult message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CodeExecutionResult */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CodeExecutionResult; /** * Creates a plain object from a CodeExecutionResult message. Also converts values to other types if specified. * @param message CodeExecutionResult * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CodeExecutionResult, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CodeExecutionResult to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CodeExecutionResult * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace CodeExecutionResult { /** Outcome enum. */ enum Outcome { OUTCOME_UNSPECIFIED = 0, OUTCOME_OK = 1, OUTCOME_FAILED = 2, OUTCOME_DEADLINE_EXCEEDED = 3 } } /** Properties of a Tool. */ interface ITool { /** Tool functionDeclarations */ functionDeclarations?: (google.ai.generativelanguage.v1alpha.IFunctionDeclaration[]|null); /** Tool googleSearchRetrieval */ googleSearchRetrieval?: (google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval|null); /** Tool codeExecution */ codeExecution?: (google.ai.generativelanguage.v1alpha.ICodeExecution|null); /** Tool googleSearch */ googleSearch?: (google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch|null); } /** Represents a Tool. */ class Tool implements ITool { /** * Constructs a new Tool. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITool); /** Tool functionDeclarations. */ public functionDeclarations: google.ai.generativelanguage.v1alpha.IFunctionDeclaration[]; /** Tool googleSearchRetrieval. */ public googleSearchRetrieval?: (google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval|null); /** Tool codeExecution. */ public codeExecution?: (google.ai.generativelanguage.v1alpha.ICodeExecution|null); /** Tool googleSearch. */ public googleSearch?: (google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch|null); /** * Creates a new Tool instance using the specified properties. * @param [properties] Properties to set * @returns Tool instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITool): google.ai.generativelanguage.v1alpha.Tool; /** * Encodes the specified Tool message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Tool.verify|verify} messages. * @param message Tool message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITool, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Tool message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Tool.verify|verify} messages. * @param message Tool message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITool, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Tool message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Tool * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Tool; /** * Decodes a Tool message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Tool * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Tool; /** * Verifies a Tool message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Tool message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Tool */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Tool; /** * Creates a plain object from a Tool message. Also converts values to other types if specified. * @param message Tool * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Tool, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Tool to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Tool * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Tool { /** Properties of a GoogleSearch. */ interface IGoogleSearch { } /** Represents a GoogleSearch. */ class GoogleSearch implements IGoogleSearch { /** * Constructs a new GoogleSearch. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch); /** * Creates a new GoogleSearch instance using the specified properties. * @param [properties] Properties to set * @returns GoogleSearch instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch): google.ai.generativelanguage.v1alpha.Tool.GoogleSearch; /** * Encodes the specified GoogleSearch message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Tool.GoogleSearch.verify|verify} messages. * @param message GoogleSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoogleSearch message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Tool.GoogleSearch.verify|verify} messages. * @param message GoogleSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.Tool.IGoogleSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoogleSearch message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoogleSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Tool.GoogleSearch; /** * Decodes a GoogleSearch message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoogleSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Tool.GoogleSearch; /** * Verifies a GoogleSearch message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoogleSearch message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoogleSearch */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Tool.GoogleSearch; /** * Creates a plain object from a GoogleSearch message. Also converts values to other types if specified. * @param message GoogleSearch * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Tool.GoogleSearch, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoogleSearch to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoogleSearch * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a GoogleSearchRetrieval. */ interface IGoogleSearchRetrieval { /** GoogleSearchRetrieval dynamicRetrievalConfig */ dynamicRetrievalConfig?: (google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig|null); } /** Represents a GoogleSearchRetrieval. */ class GoogleSearchRetrieval implements IGoogleSearchRetrieval { /** * Constructs a new GoogleSearchRetrieval. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval); /** GoogleSearchRetrieval dynamicRetrievalConfig. */ public dynamicRetrievalConfig?: (google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig|null); /** * Creates a new GoogleSearchRetrieval instance using the specified properties. * @param [properties] Properties to set * @returns GoogleSearchRetrieval instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval): google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval; /** * Encodes the specified GoogleSearchRetrieval message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval.verify|verify} messages. * @param message GoogleSearchRetrieval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoogleSearchRetrieval message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval.verify|verify} messages. * @param message GoogleSearchRetrieval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGoogleSearchRetrieval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoogleSearchRetrieval message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoogleSearchRetrieval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval; /** * Decodes a GoogleSearchRetrieval message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoogleSearchRetrieval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval; /** * Verifies a GoogleSearchRetrieval message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoogleSearchRetrieval message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoogleSearchRetrieval */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval; /** * Creates a plain object from a GoogleSearchRetrieval message. Also converts values to other types if specified. * @param message GoogleSearchRetrieval * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GoogleSearchRetrieval, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoogleSearchRetrieval to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoogleSearchRetrieval * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DynamicRetrievalConfig. */ interface IDynamicRetrievalConfig { /** DynamicRetrievalConfig mode */ mode?: (google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.Mode|keyof typeof google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.Mode|null); /** DynamicRetrievalConfig dynamicThreshold */ dynamicThreshold?: (number|null); } /** Represents a DynamicRetrievalConfig. */ class DynamicRetrievalConfig implements IDynamicRetrievalConfig { /** * Constructs a new DynamicRetrievalConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig); /** DynamicRetrievalConfig mode. */ public mode: (google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.Mode|keyof typeof google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.Mode); /** DynamicRetrievalConfig dynamicThreshold. */ public dynamicThreshold?: (number|null); /** * Creates a new DynamicRetrievalConfig instance using the specified properties. * @param [properties] Properties to set * @returns DynamicRetrievalConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig): google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig; /** * Encodes the specified DynamicRetrievalConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.verify|verify} messages. * @param message DynamicRetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DynamicRetrievalConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig.verify|verify} messages. * @param message DynamicRetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDynamicRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DynamicRetrievalConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DynamicRetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig; /** * Decodes a DynamicRetrievalConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DynamicRetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig; /** * Verifies a DynamicRetrievalConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DynamicRetrievalConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DynamicRetrievalConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig; /** * Creates a plain object from a DynamicRetrievalConfig message. Also converts values to other types if specified. * @param message DynamicRetrievalConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DynamicRetrievalConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DynamicRetrievalConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DynamicRetrievalConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace DynamicRetrievalConfig { /** Mode enum. */ enum Mode { MODE_UNSPECIFIED = 0, MODE_DYNAMIC = 1 } } /** Properties of a CodeExecution. */ interface ICodeExecution { } /** Represents a CodeExecution. */ class CodeExecution implements ICodeExecution { /** * Constructs a new CodeExecution. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICodeExecution); /** * Creates a new CodeExecution instance using the specified properties. * @param [properties] Properties to set * @returns CodeExecution instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICodeExecution): google.ai.generativelanguage.v1alpha.CodeExecution; /** * Encodes the specified CodeExecution message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CodeExecution.verify|verify} messages. * @param message CodeExecution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CodeExecution message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CodeExecution.verify|verify} messages. * @param message CodeExecution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CodeExecution message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CodeExecution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CodeExecution; /** * Decodes a CodeExecution message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CodeExecution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CodeExecution; /** * Verifies a CodeExecution message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CodeExecution message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CodeExecution */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CodeExecution; /** * Creates a plain object from a CodeExecution message. Also converts values to other types if specified. * @param message CodeExecution * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CodeExecution, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CodeExecution to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CodeExecution * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ToolConfig. */ interface IToolConfig { /** ToolConfig functionCallingConfig */ functionCallingConfig?: (google.ai.generativelanguage.v1alpha.IFunctionCallingConfig|null); } /** Represents a ToolConfig. */ class ToolConfig implements IToolConfig { /** * Constructs a new ToolConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IToolConfig); /** ToolConfig functionCallingConfig. */ public functionCallingConfig?: (google.ai.generativelanguage.v1alpha.IFunctionCallingConfig|null); /** * Creates a new ToolConfig instance using the specified properties. * @param [properties] Properties to set * @returns ToolConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IToolConfig): google.ai.generativelanguage.v1alpha.ToolConfig; /** * Encodes the specified ToolConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ToolConfig.verify|verify} messages. * @param message ToolConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IToolConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ToolConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ToolConfig.verify|verify} messages. * @param message ToolConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IToolConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ToolConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ToolConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ToolConfig; /** * Decodes a ToolConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ToolConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ToolConfig; /** * Verifies a ToolConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ToolConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ToolConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ToolConfig; /** * Creates a plain object from a ToolConfig message. Also converts values to other types if specified. * @param message ToolConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ToolConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ToolConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ToolConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionCallingConfig. */ interface IFunctionCallingConfig { /** FunctionCallingConfig mode */ mode?: (google.ai.generativelanguage.v1alpha.FunctionCallingConfig.Mode|keyof typeof google.ai.generativelanguage.v1alpha.FunctionCallingConfig.Mode|null); /** FunctionCallingConfig allowedFunctionNames */ allowedFunctionNames?: (string[]|null); } /** Represents a FunctionCallingConfig. */ class FunctionCallingConfig implements IFunctionCallingConfig { /** * Constructs a new FunctionCallingConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFunctionCallingConfig); /** FunctionCallingConfig mode. */ public mode: (google.ai.generativelanguage.v1alpha.FunctionCallingConfig.Mode|keyof typeof google.ai.generativelanguage.v1alpha.FunctionCallingConfig.Mode); /** FunctionCallingConfig allowedFunctionNames. */ public allowedFunctionNames: string[]; /** * Creates a new FunctionCallingConfig instance using the specified properties. * @param [properties] Properties to set * @returns FunctionCallingConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFunctionCallingConfig): google.ai.generativelanguage.v1alpha.FunctionCallingConfig; /** * Encodes the specified FunctionCallingConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionCallingConfig.verify|verify} messages. * @param message FunctionCallingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFunctionCallingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionCallingConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionCallingConfig.verify|verify} messages. * @param message FunctionCallingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFunctionCallingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionCallingConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionCallingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.FunctionCallingConfig; /** * Decodes a FunctionCallingConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionCallingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.FunctionCallingConfig; /** * Verifies a FunctionCallingConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionCallingConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionCallingConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.FunctionCallingConfig; /** * Creates a plain object from a FunctionCallingConfig message. Also converts values to other types if specified. * @param message FunctionCallingConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.FunctionCallingConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionCallingConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionCallingConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FunctionCallingConfig { /** Mode enum. */ enum Mode { MODE_UNSPECIFIED = 0, AUTO = 1, ANY = 2, NONE = 3 } } /** Properties of a FunctionDeclaration. */ interface IFunctionDeclaration { /** FunctionDeclaration name */ name?: (string|null); /** FunctionDeclaration description */ description?: (string|null); /** FunctionDeclaration parameters */ parameters?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** FunctionDeclaration response */ response?: (google.ai.generativelanguage.v1alpha.ISchema|null); } /** Represents a FunctionDeclaration. */ class FunctionDeclaration implements IFunctionDeclaration { /** * Constructs a new FunctionDeclaration. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFunctionDeclaration); /** FunctionDeclaration name. */ public name: string; /** FunctionDeclaration description. */ public description: string; /** FunctionDeclaration parameters. */ public parameters?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** FunctionDeclaration response. */ public response?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** * Creates a new FunctionDeclaration instance using the specified properties. * @param [properties] Properties to set * @returns FunctionDeclaration instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFunctionDeclaration): google.ai.generativelanguage.v1alpha.FunctionDeclaration; /** * Encodes the specified FunctionDeclaration message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionDeclaration.verify|verify} messages. * @param message FunctionDeclaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFunctionDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionDeclaration message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionDeclaration.verify|verify} messages. * @param message FunctionDeclaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFunctionDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionDeclaration message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionDeclaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.FunctionDeclaration; /** * Decodes a FunctionDeclaration message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionDeclaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.FunctionDeclaration; /** * Verifies a FunctionDeclaration message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionDeclaration message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionDeclaration */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.FunctionDeclaration; /** * Creates a plain object from a FunctionDeclaration message. Also converts values to other types if specified. * @param message FunctionDeclaration * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.FunctionDeclaration, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionDeclaration to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionDeclaration * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionCall. */ interface IFunctionCall { /** FunctionCall id */ id?: (string|null); /** FunctionCall name */ name?: (string|null); /** FunctionCall args */ args?: (google.protobuf.IStruct|null); } /** Represents a FunctionCall. */ class FunctionCall implements IFunctionCall { /** * Constructs a new FunctionCall. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFunctionCall); /** FunctionCall id. */ public id: string; /** FunctionCall name. */ public name: string; /** FunctionCall args. */ public args?: (google.protobuf.IStruct|null); /** * Creates a new FunctionCall instance using the specified properties. * @param [properties] Properties to set * @returns FunctionCall instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFunctionCall): google.ai.generativelanguage.v1alpha.FunctionCall; /** * Encodes the specified FunctionCall message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionCall.verify|verify} messages. * @param message FunctionCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFunctionCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionCall message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionCall.verify|verify} messages. * @param message FunctionCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFunctionCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionCall message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.FunctionCall; /** * Decodes a FunctionCall message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.FunctionCall; /** * Verifies a FunctionCall message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionCall message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionCall */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.FunctionCall; /** * Creates a plain object from a FunctionCall message. Also converts values to other types if specified. * @param message FunctionCall * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.FunctionCall, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionCall to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionCall * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionResponse. */ interface IFunctionResponse { /** FunctionResponse id */ id?: (string|null); /** FunctionResponse name */ name?: (string|null); /** FunctionResponse response */ response?: (google.protobuf.IStruct|null); } /** Represents a FunctionResponse. */ class FunctionResponse implements IFunctionResponse { /** * Constructs a new FunctionResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFunctionResponse); /** FunctionResponse id. */ public id: string; /** FunctionResponse name. */ public name: string; /** FunctionResponse response. */ public response?: (google.protobuf.IStruct|null); /** * Creates a new FunctionResponse instance using the specified properties. * @param [properties] Properties to set * @returns FunctionResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFunctionResponse): google.ai.generativelanguage.v1alpha.FunctionResponse; /** * Encodes the specified FunctionResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionResponse.verify|verify} messages. * @param message FunctionResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFunctionResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.FunctionResponse.verify|verify} messages. * @param message FunctionResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFunctionResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.FunctionResponse; /** * Decodes a FunctionResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.FunctionResponse; /** * Verifies a FunctionResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.FunctionResponse; /** * Creates a plain object from a FunctionResponse message. Also converts values to other types if specified. * @param message FunctionResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.FunctionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Schema. */ interface ISchema { /** Schema type */ type?: (google.ai.generativelanguage.v1alpha.Type|keyof typeof google.ai.generativelanguage.v1alpha.Type|null); /** Schema format */ format?: (string|null); /** Schema description */ description?: (string|null); /** Schema nullable */ nullable?: (boolean|null); /** Schema enum */ "enum"?: (string[]|null); /** Schema items */ items?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** Schema maxItems */ maxItems?: (number|Long|string|null); /** Schema minItems */ minItems?: (number|Long|string|null); /** Schema properties */ properties?: ({ [k: string]: google.ai.generativelanguage.v1alpha.ISchema }|null); /** Schema required */ required?: (string[]|null); } /** Represents a Schema. */ class Schema implements ISchema { /** * Constructs a new Schema. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISchema); /** Schema type. */ public type: (google.ai.generativelanguage.v1alpha.Type|keyof typeof google.ai.generativelanguage.v1alpha.Type); /** Schema format. */ public format: string; /** Schema description. */ public description: string; /** Schema nullable. */ public nullable: boolean; /** Schema enum. */ public enum: string[]; /** Schema items. */ public items?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** Schema maxItems. */ public maxItems: (number|Long|string); /** Schema minItems. */ public minItems: (number|Long|string); /** Schema properties. */ public properties: { [k: string]: google.ai.generativelanguage.v1alpha.ISchema }; /** Schema required. */ public required: string[]; /** * Creates a new Schema instance using the specified properties. * @param [properties] Properties to set * @returns Schema instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISchema): google.ai.generativelanguage.v1alpha.Schema; /** * Encodes the specified Schema message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Schema.verify|verify} messages. * @param message Schema message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISchema, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Schema message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Schema.verify|verify} messages. * @param message Schema message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISchema, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Schema message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Schema * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Schema; /** * Decodes a Schema message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Schema * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Schema; /** * Verifies a Schema message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Schema message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Schema */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Schema; /** * Creates a plain object from a Schema message. Also converts values to other types if specified. * @param message Schema * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Schema, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Schema to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Schema * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingPassage. */ interface IGroundingPassage { /** GroundingPassage id */ id?: (string|null); /** GroundingPassage content */ content?: (google.ai.generativelanguage.v1alpha.IContent|null); } /** Represents a GroundingPassage. */ class GroundingPassage implements IGroundingPassage { /** * Constructs a new GroundingPassage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingPassage); /** GroundingPassage id. */ public id: string; /** GroundingPassage content. */ public content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** * Creates a new GroundingPassage instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassage instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingPassage): google.ai.generativelanguage.v1alpha.GroundingPassage; /** * Encodes the specified GroundingPassage message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingPassage.verify|verify} messages. * @param message GroundingPassage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingPassage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingPassage.verify|verify} messages. * @param message GroundingPassage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingPassage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingPassage; /** * Decodes a GroundingPassage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingPassage; /** * Verifies a GroundingPassage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingPassage; /** * Creates a plain object from a GroundingPassage message. Also converts values to other types if specified. * @param message GroundingPassage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingPassage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingPassages. */ interface IGroundingPassages { /** GroundingPassages passages */ passages?: (google.ai.generativelanguage.v1alpha.IGroundingPassage[]|null); } /** Represents a GroundingPassages. */ class GroundingPassages implements IGroundingPassages { /** * Constructs a new GroundingPassages. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingPassages); /** GroundingPassages passages. */ public passages: google.ai.generativelanguage.v1alpha.IGroundingPassage[]; /** * Creates a new GroundingPassages instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassages instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingPassages): google.ai.generativelanguage.v1alpha.GroundingPassages; /** * Encodes the specified GroundingPassages message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingPassages.verify|verify} messages. * @param message GroundingPassages message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingPassages, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassages message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingPassages.verify|verify} messages. * @param message GroundingPassages message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingPassages, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassages message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassages * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingPassages; /** * Decodes a GroundingPassages message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassages * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingPassages; /** * Verifies a GroundingPassages message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassages message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassages */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingPassages; /** * Creates a plain object from a GroundingPassages message. Also converts values to other types if specified. * @param message GroundingPassages * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingPassages, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassages to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassages * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationMetadata. */ interface ICitationMetadata { /** CitationMetadata citationSources */ citationSources?: (google.ai.generativelanguage.v1alpha.ICitationSource[]|null); } /** Represents a CitationMetadata. */ class CitationMetadata implements ICitationMetadata { /** * Constructs a new CitationMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICitationMetadata); /** CitationMetadata citationSources. */ public citationSources: google.ai.generativelanguage.v1alpha.ICitationSource[]; /** * Creates a new CitationMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CitationMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICitationMetadata): google.ai.generativelanguage.v1alpha.CitationMetadata; /** * Encodes the specified CitationMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CitationMetadata; /** * Decodes a CitationMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CitationMetadata; /** * Verifies a CitationMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CitationMetadata; /** * Creates a plain object from a CitationMetadata message. Also converts values to other types if specified. * @param message CitationMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CitationMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationSource. */ interface ICitationSource { /** CitationSource startIndex */ startIndex?: (number|null); /** CitationSource endIndex */ endIndex?: (number|null); /** CitationSource uri */ uri?: (string|null); /** CitationSource license */ license?: (string|null); } /** Represents a CitationSource. */ class CitationSource implements ICitationSource { /** * Constructs a new CitationSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICitationSource); /** CitationSource startIndex. */ public startIndex?: (number|null); /** CitationSource endIndex. */ public endIndex?: (number|null); /** CitationSource uri. */ public uri?: (string|null); /** CitationSource license. */ public license?: (string|null); /** * Creates a new CitationSource instance using the specified properties. * @param [properties] Properties to set * @returns CitationSource instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICitationSource): google.ai.generativelanguage.v1alpha.CitationSource; /** * Encodes the specified CitationSource message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CitationSource; /** * Decodes a CitationSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CitationSource; /** * Verifies a CitationSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CitationSource; /** * Creates a plain object from a CitationSource message. Also converts values to other types if specified. * @param message CitationSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CitationSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a DiscussService */ class DiscussService extends $protobuf.rpc.Service { /** * Constructs a new DiscussService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new DiscussService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DiscussService; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateMessageResponse */ public generateMessage(request: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest, callback: google.ai.generativelanguage.v1alpha.DiscussService.GenerateMessageCallback): void; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @returns Promise */ public generateMessage(request: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest): Promise; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountMessageTokensResponse */ public countMessageTokens(request: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest, callback: google.ai.generativelanguage.v1alpha.DiscussService.CountMessageTokensCallback): void; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @returns Promise */ public countMessageTokens(request: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest): Promise; } namespace DiscussService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.DiscussService|generateMessage}. * @param error Error, if any * @param [response] GenerateMessageResponse */ type GenerateMessageCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.GenerateMessageResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.DiscussService|countMessageTokens}. * @param error Error, if any * @param [response] CountMessageTokensResponse */ type CountMessageTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CountMessageTokensResponse) => void; } /** Properties of a GenerateMessageRequest. */ interface IGenerateMessageRequest { /** GenerateMessageRequest model */ model?: (string|null); /** GenerateMessageRequest prompt */ prompt?: (google.ai.generativelanguage.v1alpha.IMessagePrompt|null); /** GenerateMessageRequest temperature */ temperature?: (number|null); /** GenerateMessageRequest candidateCount */ candidateCount?: (number|null); /** GenerateMessageRequest topP */ topP?: (number|null); /** GenerateMessageRequest topK */ topK?: (number|null); } /** Represents a GenerateMessageRequest. */ class GenerateMessageRequest implements IGenerateMessageRequest { /** * Constructs a new GenerateMessageRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest); /** GenerateMessageRequest model. */ public model: string; /** GenerateMessageRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1alpha.IMessagePrompt|null); /** GenerateMessageRequest temperature. */ public temperature?: (number|null); /** GenerateMessageRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateMessageRequest topP. */ public topP?: (number|null); /** GenerateMessageRequest topK. */ public topK?: (number|null); /** * Creates a new GenerateMessageRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest): google.ai.generativelanguage.v1alpha.GenerateMessageRequest; /** * Encodes the specified GenerateMessageRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateMessageRequest; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateMessageRequest; /** * Verifies a GenerateMessageRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateMessageRequest; /** * Creates a plain object from a GenerateMessageRequest message. Also converts values to other types if specified. * @param message GenerateMessageRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateMessageRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateMessageResponse. */ interface IGenerateMessageResponse { /** GenerateMessageResponse candidates */ candidates?: (google.ai.generativelanguage.v1alpha.IMessage[]|null); /** GenerateMessageResponse messages */ messages?: (google.ai.generativelanguage.v1alpha.IMessage[]|null); /** GenerateMessageResponse filters */ filters?: (google.ai.generativelanguage.v1alpha.IContentFilter[]|null); } /** Represents a GenerateMessageResponse. */ class GenerateMessageResponse implements IGenerateMessageResponse { /** * Constructs a new GenerateMessageResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateMessageResponse); /** GenerateMessageResponse candidates. */ public candidates: google.ai.generativelanguage.v1alpha.IMessage[]; /** GenerateMessageResponse messages. */ public messages: google.ai.generativelanguage.v1alpha.IMessage[]; /** GenerateMessageResponse filters. */ public filters: google.ai.generativelanguage.v1alpha.IContentFilter[]; /** * Creates a new GenerateMessageResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateMessageResponse): google.ai.generativelanguage.v1alpha.GenerateMessageResponse; /** * Encodes the specified GenerateMessageResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateMessageResponse; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateMessageResponse; /** * Verifies a GenerateMessageResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateMessageResponse; /** * Creates a plain object from a GenerateMessageResponse message. Also converts values to other types if specified. * @param message GenerateMessageResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateMessageResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Message. */ interface IMessage { /** Message author */ author?: (string|null); /** Message content */ content?: (string|null); /** Message citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); } /** Represents a Message. */ class Message implements IMessage { /** * Constructs a new Message. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IMessage); /** Message author. */ public author: string; /** Message content. */ public content: string; /** Message citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); /** * Creates a new Message instance using the specified properties. * @param [properties] Properties to set * @returns Message instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IMessage): google.ai.generativelanguage.v1alpha.Message; /** * Encodes the specified Message message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Message message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Message message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Message; /** * Decodes a Message message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Message; /** * Verifies a Message message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Message message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Message */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Message; /** * Creates a plain object from a Message message. Also converts values to other types if specified. * @param message Message * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Message, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Message to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Message * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MessagePrompt. */ interface IMessagePrompt { /** MessagePrompt context */ context?: (string|null); /** MessagePrompt examples */ examples?: (google.ai.generativelanguage.v1alpha.IExample[]|null); /** MessagePrompt messages */ messages?: (google.ai.generativelanguage.v1alpha.IMessage[]|null); } /** Represents a MessagePrompt. */ class MessagePrompt implements IMessagePrompt { /** * Constructs a new MessagePrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IMessagePrompt); /** MessagePrompt context. */ public context: string; /** MessagePrompt examples. */ public examples: google.ai.generativelanguage.v1alpha.IExample[]; /** MessagePrompt messages. */ public messages: google.ai.generativelanguage.v1alpha.IMessage[]; /** * Creates a new MessagePrompt instance using the specified properties. * @param [properties] Properties to set * @returns MessagePrompt instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IMessagePrompt): google.ai.generativelanguage.v1alpha.MessagePrompt; /** * Encodes the specified MessagePrompt message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MessagePrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MessagePrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.MessagePrompt; /** * Decodes a MessagePrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.MessagePrompt; /** * Verifies a MessagePrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MessagePrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MessagePrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.MessagePrompt; /** * Creates a plain object from a MessagePrompt message. Also converts values to other types if specified. * @param message MessagePrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.MessagePrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MessagePrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MessagePrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Example. */ interface IExample { /** Example input */ input?: (google.ai.generativelanguage.v1alpha.IMessage|null); /** Example output */ output?: (google.ai.generativelanguage.v1alpha.IMessage|null); } /** Represents an Example. */ class Example implements IExample { /** * Constructs a new Example. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IExample); /** Example input. */ public input?: (google.ai.generativelanguage.v1alpha.IMessage|null); /** Example output. */ public output?: (google.ai.generativelanguage.v1alpha.IMessage|null); /** * Creates a new Example instance using the specified properties. * @param [properties] Properties to set * @returns Example instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IExample): google.ai.generativelanguage.v1alpha.Example; /** * Encodes the specified Example message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Example message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Example message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Example; /** * Decodes an Example message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Example; /** * Verifies an Example message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Example message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Example */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Example; /** * Creates a plain object from an Example message. Also converts values to other types if specified. * @param message Example * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Example, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Example to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Example * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensRequest. */ interface ICountMessageTokensRequest { /** CountMessageTokensRequest model */ model?: (string|null); /** CountMessageTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1alpha.IMessagePrompt|null); } /** Represents a CountMessageTokensRequest. */ class CountMessageTokensRequest implements ICountMessageTokensRequest { /** * Constructs a new CountMessageTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest); /** CountMessageTokensRequest model. */ public model: string; /** CountMessageTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1alpha.IMessagePrompt|null); /** * Creates a new CountMessageTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest): google.ai.generativelanguage.v1alpha.CountMessageTokensRequest; /** * Encodes the specified CountMessageTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountMessageTokensRequest; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountMessageTokensRequest; /** * Verifies a CountMessageTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountMessageTokensRequest; /** * Creates a plain object from a CountMessageTokensRequest message. Also converts values to other types if specified. * @param message CountMessageTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountMessageTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensResponse. */ interface ICountMessageTokensResponse { /** CountMessageTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountMessageTokensResponse. */ class CountMessageTokensResponse implements ICountMessageTokensResponse { /** * Constructs a new CountMessageTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountMessageTokensResponse); /** CountMessageTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountMessageTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountMessageTokensResponse): google.ai.generativelanguage.v1alpha.CountMessageTokensResponse; /** * Encodes the specified CountMessageTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountMessageTokensResponse; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountMessageTokensResponse; /** * Verifies a CountMessageTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountMessageTokensResponse; /** * Creates a plain object from a CountMessageTokensResponse message. Also converts values to other types if specified. * @param message CountMessageTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountMessageTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** HarmCategory enum. */ enum HarmCategory { HARM_CATEGORY_UNSPECIFIED = 0, HARM_CATEGORY_DEROGATORY = 1, HARM_CATEGORY_TOXICITY = 2, HARM_CATEGORY_VIOLENCE = 3, HARM_CATEGORY_SEXUAL = 4, HARM_CATEGORY_MEDICAL = 5, HARM_CATEGORY_DANGEROUS = 6, HARM_CATEGORY_HARASSMENT = 7, HARM_CATEGORY_HATE_SPEECH = 8, HARM_CATEGORY_SEXUALLY_EXPLICIT = 9, HARM_CATEGORY_DANGEROUS_CONTENT = 10, HARM_CATEGORY_CIVIC_INTEGRITY = 11 } /** Properties of a ContentFilter. */ interface IContentFilter { /** ContentFilter reason */ reason?: (google.ai.generativelanguage.v1alpha.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1alpha.ContentFilter.BlockedReason|null); /** ContentFilter message */ message?: (string|null); } /** Represents a ContentFilter. */ class ContentFilter implements IContentFilter { /** * Constructs a new ContentFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IContentFilter); /** ContentFilter reason. */ public reason: (google.ai.generativelanguage.v1alpha.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1alpha.ContentFilter.BlockedReason); /** ContentFilter message. */ public message?: (string|null); /** * Creates a new ContentFilter instance using the specified properties. * @param [properties] Properties to set * @returns ContentFilter instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IContentFilter): google.ai.generativelanguage.v1alpha.ContentFilter; /** * Encodes the specified ContentFilter message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ContentFilter; /** * Decodes a ContentFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ContentFilter; /** * Verifies a ContentFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ContentFilter; /** * Creates a plain object from a ContentFilter message. Also converts values to other types if specified. * @param message ContentFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ContentFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ContentFilter { /** BlockedReason enum. */ enum BlockedReason { BLOCKED_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } /** Properties of a SafetyFeedback. */ interface ISafetyFeedback { /** SafetyFeedback rating */ rating?: (google.ai.generativelanguage.v1alpha.ISafetyRating|null); /** SafetyFeedback setting */ setting?: (google.ai.generativelanguage.v1alpha.ISafetySetting|null); } /** Represents a SafetyFeedback. */ class SafetyFeedback implements ISafetyFeedback { /** * Constructs a new SafetyFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISafetyFeedback); /** SafetyFeedback rating. */ public rating?: (google.ai.generativelanguage.v1alpha.ISafetyRating|null); /** SafetyFeedback setting. */ public setting?: (google.ai.generativelanguage.v1alpha.ISafetySetting|null); /** * Creates a new SafetyFeedback instance using the specified properties. * @param [properties] Properties to set * @returns SafetyFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISafetyFeedback): google.ai.generativelanguage.v1alpha.SafetyFeedback; /** * Encodes the specified SafetyFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SafetyFeedback; /** * Decodes a SafetyFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SafetyFeedback; /** * Verifies a SafetyFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SafetyFeedback; /** * Creates a plain object from a SafetyFeedback message. Also converts values to other types if specified. * @param message SafetyFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SafetyFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SafetyRating. */ interface ISafetyRating { /** SafetyRating category */ category?: (google.ai.generativelanguage.v1alpha.HarmCategory|keyof typeof google.ai.generativelanguage.v1alpha.HarmCategory|null); /** SafetyRating probability */ probability?: (google.ai.generativelanguage.v1alpha.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1alpha.SafetyRating.HarmProbability|null); /** SafetyRating blocked */ blocked?: (boolean|null); } /** Represents a SafetyRating. */ class SafetyRating implements ISafetyRating { /** * Constructs a new SafetyRating. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISafetyRating); /** SafetyRating category. */ public category: (google.ai.generativelanguage.v1alpha.HarmCategory|keyof typeof google.ai.generativelanguage.v1alpha.HarmCategory); /** SafetyRating probability. */ public probability: (google.ai.generativelanguage.v1alpha.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1alpha.SafetyRating.HarmProbability); /** SafetyRating blocked. */ public blocked: boolean; /** * Creates a new SafetyRating instance using the specified properties. * @param [properties] Properties to set * @returns SafetyRating instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISafetyRating): google.ai.generativelanguage.v1alpha.SafetyRating; /** * Encodes the specified SafetyRating message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyRating message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyRating message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SafetyRating; /** * Decodes a SafetyRating message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SafetyRating; /** * Verifies a SafetyRating message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyRating message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyRating */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SafetyRating; /** * Creates a plain object from a SafetyRating message. Also converts values to other types if specified. * @param message SafetyRating * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SafetyRating, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyRating to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyRating * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetyRating { /** HarmProbability enum. */ enum HarmProbability { HARM_PROBABILITY_UNSPECIFIED = 0, NEGLIGIBLE = 1, LOW = 2, MEDIUM = 3, HIGH = 4 } } /** Properties of a SafetySetting. */ interface ISafetySetting { /** SafetySetting category */ category?: (google.ai.generativelanguage.v1alpha.HarmCategory|keyof typeof google.ai.generativelanguage.v1alpha.HarmCategory|null); /** SafetySetting threshold */ threshold?: (google.ai.generativelanguage.v1alpha.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1alpha.SafetySetting.HarmBlockThreshold|null); } /** Represents a SafetySetting. */ class SafetySetting implements ISafetySetting { /** * Constructs a new SafetySetting. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISafetySetting); /** SafetySetting category. */ public category: (google.ai.generativelanguage.v1alpha.HarmCategory|keyof typeof google.ai.generativelanguage.v1alpha.HarmCategory); /** SafetySetting threshold. */ public threshold: (google.ai.generativelanguage.v1alpha.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1alpha.SafetySetting.HarmBlockThreshold); /** * Creates a new SafetySetting instance using the specified properties. * @param [properties] Properties to set * @returns SafetySetting instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISafetySetting): google.ai.generativelanguage.v1alpha.SafetySetting; /** * Encodes the specified SafetySetting message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetySetting message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetySetting message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SafetySetting; /** * Decodes a SafetySetting message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SafetySetting; /** * Verifies a SafetySetting message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetySetting message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetySetting */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SafetySetting; /** * Creates a plain object from a SafetySetting message. Also converts values to other types if specified. * @param message SafetySetting * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SafetySetting, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetySetting to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetySetting * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetySetting { /** HarmBlockThreshold enum. */ enum HarmBlockThreshold { HARM_BLOCK_THRESHOLD_UNSPECIFIED = 0, BLOCK_LOW_AND_ABOVE = 1, BLOCK_MEDIUM_AND_ABOVE = 2, BLOCK_ONLY_HIGH = 3, BLOCK_NONE = 4, OFF = 5 } } /** Properties of a File. */ interface IFile { /** File videoMetadata */ videoMetadata?: (google.ai.generativelanguage.v1alpha.IVideoMetadata|null); /** File name */ name?: (string|null); /** File displayName */ displayName?: (string|null); /** File mimeType */ mimeType?: (string|null); /** File sizeBytes */ sizeBytes?: (number|Long|string|null); /** File createTime */ createTime?: (google.protobuf.ITimestamp|null); /** File updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** File expirationTime */ expirationTime?: (google.protobuf.ITimestamp|null); /** File sha256Hash */ sha256Hash?: (Uint8Array|Buffer|string|null); /** File uri */ uri?: (string|null); /** File state */ state?: (google.ai.generativelanguage.v1alpha.File.State|keyof typeof google.ai.generativelanguage.v1alpha.File.State|null); /** File error */ error?: (google.rpc.IStatus|null); } /** Represents a File. */ class File implements IFile { /** * Constructs a new File. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IFile); /** File videoMetadata. */ public videoMetadata?: (google.ai.generativelanguage.v1alpha.IVideoMetadata|null); /** File name. */ public name: string; /** File displayName. */ public displayName: string; /** File mimeType. */ public mimeType: string; /** File sizeBytes. */ public sizeBytes: (number|Long|string); /** File createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** File updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** File expirationTime. */ public expirationTime?: (google.protobuf.ITimestamp|null); /** File sha256Hash. */ public sha256Hash: (Uint8Array|Buffer|string); /** File uri. */ public uri: string; /** File state. */ public state: (google.ai.generativelanguage.v1alpha.File.State|keyof typeof google.ai.generativelanguage.v1alpha.File.State); /** File error. */ public error?: (google.rpc.IStatus|null); /** File metadata. */ public metadata?: "videoMetadata"; /** * Creates a new File instance using the specified properties. * @param [properties] Properties to set * @returns File instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IFile): google.ai.generativelanguage.v1alpha.File; /** * Encodes the specified File message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.File.verify|verify} messages. * @param message File message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IFile, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified File message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.File.verify|verify} messages. * @param message File message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IFile, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a File message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns File * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.File; /** * Decodes a File message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns File * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.File; /** * Verifies a File message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a File message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns File */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.File; /** * Creates a plain object from a File message. Also converts values to other types if specified. * @param message File * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.File, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this File to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for File * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace File { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, PROCESSING = 1, ACTIVE = 2, FAILED = 10 } } /** Properties of a VideoMetadata. */ interface IVideoMetadata { /** VideoMetadata videoDuration */ videoDuration?: (google.protobuf.IDuration|null); } /** Represents a VideoMetadata. */ class VideoMetadata implements IVideoMetadata { /** * Constructs a new VideoMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IVideoMetadata); /** VideoMetadata videoDuration. */ public videoDuration?: (google.protobuf.IDuration|null); /** * Creates a new VideoMetadata instance using the specified properties. * @param [properties] Properties to set * @returns VideoMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IVideoMetadata): google.ai.generativelanguage.v1alpha.VideoMetadata; /** * Encodes the specified VideoMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VideoMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VideoMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.VideoMetadata; /** * Decodes a VideoMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.VideoMetadata; /** * Verifies a VideoMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VideoMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VideoMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.VideoMetadata; /** * Creates a plain object from a VideoMetadata message. Also converts values to other types if specified. * @param message VideoMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.VideoMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VideoMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VideoMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a FileService */ class FileService extends $protobuf.rpc.Service { /** * Constructs a new FileService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new FileService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): FileService; /** * Calls CreateFile. * @param request CreateFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and CreateFileResponse */ public createFile(request: google.ai.generativelanguage.v1alpha.ICreateFileRequest, callback: google.ai.generativelanguage.v1alpha.FileService.CreateFileCallback): void; /** * Calls CreateFile. * @param request CreateFileRequest message or plain object * @returns Promise */ public createFile(request: google.ai.generativelanguage.v1alpha.ICreateFileRequest): Promise; /** * Calls ListFiles. * @param request ListFilesRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListFilesResponse */ public listFiles(request: google.ai.generativelanguage.v1alpha.IListFilesRequest, callback: google.ai.generativelanguage.v1alpha.FileService.ListFilesCallback): void; /** * Calls ListFiles. * @param request ListFilesRequest message or plain object * @returns Promise */ public listFiles(request: google.ai.generativelanguage.v1alpha.IListFilesRequest): Promise; /** * Calls GetFile. * @param request GetFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and File */ public getFile(request: google.ai.generativelanguage.v1alpha.IGetFileRequest, callback: google.ai.generativelanguage.v1alpha.FileService.GetFileCallback): void; /** * Calls GetFile. * @param request GetFileRequest message or plain object * @returns Promise */ public getFile(request: google.ai.generativelanguage.v1alpha.IGetFileRequest): Promise; /** * Calls DeleteFile. * @param request DeleteFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteFile(request: google.ai.generativelanguage.v1alpha.IDeleteFileRequest, callback: google.ai.generativelanguage.v1alpha.FileService.DeleteFileCallback): void; /** * Calls DeleteFile. * @param request DeleteFileRequest message or plain object * @returns Promise */ public deleteFile(request: google.ai.generativelanguage.v1alpha.IDeleteFileRequest): Promise; } namespace FileService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.FileService|createFile}. * @param error Error, if any * @param [response] CreateFileResponse */ type CreateFileCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CreateFileResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.FileService|listFiles}. * @param error Error, if any * @param [response] ListFilesResponse */ type ListFilesCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListFilesResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.FileService|getFile}. * @param error Error, if any * @param [response] File */ type GetFileCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.File) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.FileService|deleteFile}. * @param error Error, if any * @param [response] Empty */ type DeleteFileCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a CreateFileRequest. */ interface ICreateFileRequest { /** CreateFileRequest file */ file?: (google.ai.generativelanguage.v1alpha.IFile|null); } /** Represents a CreateFileRequest. */ class CreateFileRequest implements ICreateFileRequest { /** * Constructs a new CreateFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateFileRequest); /** CreateFileRequest file. */ public file?: (google.ai.generativelanguage.v1alpha.IFile|null); /** * Creates a new CreateFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateFileRequest): google.ai.generativelanguage.v1alpha.CreateFileRequest; /** * Encodes the specified CreateFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateFileRequest.verify|verify} messages. * @param message CreateFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateFileRequest.verify|verify} messages. * @param message CreateFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateFileRequest; /** * Decodes a CreateFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateFileRequest; /** * Verifies a CreateFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateFileRequest; /** * Creates a plain object from a CreateFileRequest message. Also converts values to other types if specified. * @param message CreateFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateFileResponse. */ interface ICreateFileResponse { /** CreateFileResponse file */ file?: (google.ai.generativelanguage.v1alpha.IFile|null); } /** Represents a CreateFileResponse. */ class CreateFileResponse implements ICreateFileResponse { /** * Constructs a new CreateFileResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateFileResponse); /** CreateFileResponse file. */ public file?: (google.ai.generativelanguage.v1alpha.IFile|null); /** * Creates a new CreateFileResponse instance using the specified properties. * @param [properties] Properties to set * @returns CreateFileResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateFileResponse): google.ai.generativelanguage.v1alpha.CreateFileResponse; /** * Encodes the specified CreateFileResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateFileResponse.verify|verify} messages. * @param message CreateFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateFileResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateFileResponse.verify|verify} messages. * @param message CreateFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateFileResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateFileResponse; /** * Decodes a CreateFileResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateFileResponse; /** * Verifies a CreateFileResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateFileResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateFileResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateFileResponse; /** * Creates a plain object from a CreateFileResponse message. Also converts values to other types if specified. * @param message CreateFileResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateFileResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateFileResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateFileResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListFilesRequest. */ interface IListFilesRequest { /** ListFilesRequest pageSize */ pageSize?: (number|null); /** ListFilesRequest pageToken */ pageToken?: (string|null); } /** Represents a ListFilesRequest. */ class ListFilesRequest implements IListFilesRequest { /** * Constructs a new ListFilesRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListFilesRequest); /** ListFilesRequest pageSize. */ public pageSize: number; /** ListFilesRequest pageToken. */ public pageToken: string; /** * Creates a new ListFilesRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListFilesRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListFilesRequest): google.ai.generativelanguage.v1alpha.ListFilesRequest; /** * Encodes the specified ListFilesRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListFilesRequest.verify|verify} messages. * @param message ListFilesRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListFilesRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListFilesRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListFilesRequest.verify|verify} messages. * @param message ListFilesRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListFilesRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListFilesRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListFilesRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListFilesRequest; /** * Decodes a ListFilesRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListFilesRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListFilesRequest; /** * Verifies a ListFilesRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListFilesRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListFilesRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListFilesRequest; /** * Creates a plain object from a ListFilesRequest message. Also converts values to other types if specified. * @param message ListFilesRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListFilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListFilesRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListFilesRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListFilesResponse. */ interface IListFilesResponse { /** ListFilesResponse files */ files?: (google.ai.generativelanguage.v1alpha.IFile[]|null); /** ListFilesResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListFilesResponse. */ class ListFilesResponse implements IListFilesResponse { /** * Constructs a new ListFilesResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListFilesResponse); /** ListFilesResponse files. */ public files: google.ai.generativelanguage.v1alpha.IFile[]; /** ListFilesResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListFilesResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListFilesResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListFilesResponse): google.ai.generativelanguage.v1alpha.ListFilesResponse; /** * Encodes the specified ListFilesResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListFilesResponse.verify|verify} messages. * @param message ListFilesResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListFilesResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListFilesResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListFilesResponse.verify|verify} messages. * @param message ListFilesResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListFilesResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListFilesResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListFilesResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListFilesResponse; /** * Decodes a ListFilesResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListFilesResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListFilesResponse; /** * Verifies a ListFilesResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListFilesResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListFilesResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListFilesResponse; /** * Creates a plain object from a ListFilesResponse message. Also converts values to other types if specified. * @param message ListFilesResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListFilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListFilesResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListFilesResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetFileRequest. */ interface IGetFileRequest { /** GetFileRequest name */ name?: (string|null); } /** Represents a GetFileRequest. */ class GetFileRequest implements IGetFileRequest { /** * Constructs a new GetFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetFileRequest); /** GetFileRequest name. */ public name: string; /** * Creates a new GetFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetFileRequest): google.ai.generativelanguage.v1alpha.GetFileRequest; /** * Encodes the specified GetFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetFileRequest.verify|verify} messages. * @param message GetFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetFileRequest.verify|verify} messages. * @param message GetFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetFileRequest; /** * Decodes a GetFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetFileRequest; /** * Verifies a GetFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetFileRequest; /** * Creates a plain object from a GetFileRequest message. Also converts values to other types if specified. * @param message GetFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteFileRequest. */ interface IDeleteFileRequest { /** DeleteFileRequest name */ name?: (string|null); } /** Represents a DeleteFileRequest. */ class DeleteFileRequest implements IDeleteFileRequest { /** * Constructs a new DeleteFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteFileRequest); /** DeleteFileRequest name. */ public name: string; /** * Creates a new DeleteFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteFileRequest): google.ai.generativelanguage.v1alpha.DeleteFileRequest; /** * Encodes the specified DeleteFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteFileRequest.verify|verify} messages. * @param message DeleteFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteFileRequest.verify|verify} messages. * @param message DeleteFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteFileRequest; /** * Decodes a DeleteFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteFileRequest; /** * Verifies a DeleteFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteFileRequest; /** * Creates a plain object from a DeleteFileRequest message. Also converts values to other types if specified. * @param message DeleteFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a GenerativeService */ class GenerativeService extends $protobuf.rpc.Service { /** * Constructs a new GenerativeService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new GenerativeService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): GenerativeService; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public generateContent(request: google.ai.generativelanguage.v1alpha.IGenerateContentRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.GenerateContentCallback): void; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public generateContent(request: google.ai.generativelanguage.v1alpha.IGenerateContentRequest): Promise; /** * Calls GenerateAnswer. * @param request GenerateAnswerRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateAnswerResponse */ public generateAnswer(request: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.GenerateAnswerCallback): void; /** * Calls GenerateAnswer. * @param request GenerateAnswerRequest message or plain object * @returns Promise */ public generateAnswer(request: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest): Promise; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public streamGenerateContent(request: google.ai.generativelanguage.v1alpha.IGenerateContentRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.StreamGenerateContentCallback): void; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public streamGenerateContent(request: google.ai.generativelanguage.v1alpha.IGenerateContentRequest): Promise; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedContentResponse */ public embedContent(request: google.ai.generativelanguage.v1alpha.IEmbedContentRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.EmbedContentCallback): void; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @returns Promise */ public embedContent(request: google.ai.generativelanguage.v1alpha.IEmbedContentRequest): Promise; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedContentsResponse */ public batchEmbedContents(request: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.BatchEmbedContentsCallback): void; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @returns Promise */ public batchEmbedContents(request: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest): Promise; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTokensResponse */ public countTokens(request: google.ai.generativelanguage.v1alpha.ICountTokensRequest, callback: google.ai.generativelanguage.v1alpha.GenerativeService.CountTokensCallback): void; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @returns Promise */ public countTokens(request: google.ai.generativelanguage.v1alpha.ICountTokensRequest): Promise; /** * Calls BidiGenerateContent. * @param request BidiGenerateContentClientMessage message or plain object * @param callback Node-style callback called with the error, if any, and BidiGenerateContentServerMessage */ public bidiGenerateContent(request: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage, callback: google.ai.generativelanguage.v1alpha.GenerativeService.BidiGenerateContentCallback): void; /** * Calls BidiGenerateContent. * @param request BidiGenerateContentClientMessage message or plain object * @returns Promise */ public bidiGenerateContent(request: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage): Promise; } namespace GenerativeService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|generateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type GenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|generateAnswer}. * @param error Error, if any * @param [response] GenerateAnswerResponse */ type GenerateAnswerCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|streamGenerateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type StreamGenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|embedContent}. * @param error Error, if any * @param [response] EmbedContentResponse */ type EmbedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.EmbedContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|batchEmbedContents}. * @param error Error, if any * @param [response] BatchEmbedContentsResponse */ type BatchEmbedContentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|countTokens}. * @param error Error, if any * @param [response] CountTokensResponse */ type CountTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CountTokensResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.GenerativeService|bidiGenerateContent}. * @param error Error, if any * @param [response] BidiGenerateContentServerMessage */ type BidiGenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage) => void; } /** TaskType enum. */ enum TaskType { TASK_TYPE_UNSPECIFIED = 0, RETRIEVAL_QUERY = 1, RETRIEVAL_DOCUMENT = 2, SEMANTIC_SIMILARITY = 3, CLASSIFICATION = 4, CLUSTERING = 5, QUESTION_ANSWERING = 6, FACT_VERIFICATION = 7 } /** Properties of a GenerateContentRequest. */ interface IGenerateContentRequest { /** GenerateContentRequest model */ model?: (string|null); /** GenerateContentRequest systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** GenerateContentRequest contents */ contents?: (google.ai.generativelanguage.v1alpha.IContent[]|null); /** GenerateContentRequest tools */ tools?: (google.ai.generativelanguage.v1alpha.ITool[]|null); /** GenerateContentRequest toolConfig */ toolConfig?: (google.ai.generativelanguage.v1alpha.IToolConfig|null); /** GenerateContentRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1alpha.ISafetySetting[]|null); /** GenerateContentRequest generationConfig */ generationConfig?: (google.ai.generativelanguage.v1alpha.IGenerationConfig|null); /** GenerateContentRequest cachedContent */ cachedContent?: (string|null); } /** Represents a GenerateContentRequest. */ class GenerateContentRequest implements IGenerateContentRequest { /** * Constructs a new GenerateContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateContentRequest); /** GenerateContentRequest model. */ public model: string; /** GenerateContentRequest systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** GenerateContentRequest contents. */ public contents: google.ai.generativelanguage.v1alpha.IContent[]; /** GenerateContentRequest tools. */ public tools: google.ai.generativelanguage.v1alpha.ITool[]; /** GenerateContentRequest toolConfig. */ public toolConfig?: (google.ai.generativelanguage.v1alpha.IToolConfig|null); /** GenerateContentRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1alpha.ISafetySetting[]; /** GenerateContentRequest generationConfig. */ public generationConfig?: (google.ai.generativelanguage.v1alpha.IGenerationConfig|null); /** GenerateContentRequest cachedContent. */ public cachedContent?: (string|null); /** * Creates a new GenerateContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateContentRequest): google.ai.generativelanguage.v1alpha.GenerateContentRequest; /** * Encodes the specified GenerateContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateContentRequest; /** * Decodes a GenerateContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateContentRequest; /** * Verifies a GenerateContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateContentRequest; /** * Creates a plain object from a GenerateContentRequest message. Also converts values to other types if specified. * @param message GenerateContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PrebuiltVoiceConfig. */ interface IPrebuiltVoiceConfig { /** PrebuiltVoiceConfig voiceName */ voiceName?: (string|null); } /** Represents a PrebuiltVoiceConfig. */ class PrebuiltVoiceConfig implements IPrebuiltVoiceConfig { /** * Constructs a new PrebuiltVoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig); /** PrebuiltVoiceConfig voiceName. */ public voiceName?: (string|null); /** * Creates a new PrebuiltVoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns PrebuiltVoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig): google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig; /** * Encodes the specified PrebuiltVoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig.verify|verify} messages. * @param message PrebuiltVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PrebuiltVoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig.verify|verify} messages. * @param message PrebuiltVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PrebuiltVoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PrebuiltVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig; /** * Decodes a PrebuiltVoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PrebuiltVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig; /** * Verifies a PrebuiltVoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PrebuiltVoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PrebuiltVoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig; /** * Creates a plain object from a PrebuiltVoiceConfig message. Also converts values to other types if specified. * @param message PrebuiltVoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.PrebuiltVoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PrebuiltVoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PrebuiltVoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a VoiceConfig. */ interface IVoiceConfig { /** VoiceConfig prebuiltVoiceConfig */ prebuiltVoiceConfig?: (google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig|null); } /** Represents a VoiceConfig. */ class VoiceConfig implements IVoiceConfig { /** * Constructs a new VoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IVoiceConfig); /** VoiceConfig prebuiltVoiceConfig. */ public prebuiltVoiceConfig?: (google.ai.generativelanguage.v1alpha.IPrebuiltVoiceConfig|null); /** VoiceConfig voiceConfig. */ public voiceConfig?: "prebuiltVoiceConfig"; /** * Creates a new VoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns VoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IVoiceConfig): google.ai.generativelanguage.v1alpha.VoiceConfig; /** * Encodes the specified VoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.VoiceConfig.verify|verify} messages. * @param message VoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.VoiceConfig.verify|verify} messages. * @param message VoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.VoiceConfig; /** * Decodes a VoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.VoiceConfig; /** * Verifies a VoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.VoiceConfig; /** * Creates a plain object from a VoiceConfig message. Also converts values to other types if specified. * @param message VoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.VoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SpeechConfig. */ interface ISpeechConfig { /** SpeechConfig voiceConfig */ voiceConfig?: (google.ai.generativelanguage.v1alpha.IVoiceConfig|null); } /** Represents a SpeechConfig. */ class SpeechConfig implements ISpeechConfig { /** * Constructs a new SpeechConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISpeechConfig); /** SpeechConfig voiceConfig. */ public voiceConfig?: (google.ai.generativelanguage.v1alpha.IVoiceConfig|null); /** * Creates a new SpeechConfig instance using the specified properties. * @param [properties] Properties to set * @returns SpeechConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISpeechConfig): google.ai.generativelanguage.v1alpha.SpeechConfig; /** * Encodes the specified SpeechConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SpeechConfig.verify|verify} messages. * @param message SpeechConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISpeechConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SpeechConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SpeechConfig.verify|verify} messages. * @param message SpeechConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISpeechConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SpeechConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SpeechConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SpeechConfig; /** * Decodes a SpeechConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SpeechConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SpeechConfig; /** * Verifies a SpeechConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SpeechConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SpeechConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SpeechConfig; /** * Creates a plain object from a SpeechConfig message. Also converts values to other types if specified. * @param message SpeechConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SpeechConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SpeechConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SpeechConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerationConfig. */ interface IGenerationConfig { /** GenerationConfig candidateCount */ candidateCount?: (number|null); /** GenerationConfig stopSequences */ stopSequences?: (string[]|null); /** GenerationConfig maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerationConfig temperature */ temperature?: (number|null); /** GenerationConfig topP */ topP?: (number|null); /** GenerationConfig topK */ topK?: (number|null); /** GenerationConfig responseMimeType */ responseMimeType?: (string|null); /** GenerationConfig responseSchema */ responseSchema?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** GenerationConfig presencePenalty */ presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty */ frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs */ responseLogprobs?: (boolean|null); /** GenerationConfig logprobs */ logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers */ enableEnhancedCivicAnswers?: (boolean|null); /** GenerationConfig responseModalities */ responseModalities?: (google.ai.generativelanguage.v1alpha.GenerationConfig.Modality[]|null); /** GenerationConfig speechConfig */ speechConfig?: (google.ai.generativelanguage.v1alpha.ISpeechConfig|null); } /** Represents a GenerationConfig. */ class GenerationConfig implements IGenerationConfig { /** * Constructs a new GenerationConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerationConfig); /** GenerationConfig candidateCount. */ public candidateCount?: (number|null); /** GenerationConfig stopSequences. */ public stopSequences: string[]; /** GenerationConfig maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerationConfig temperature. */ public temperature?: (number|null); /** GenerationConfig topP. */ public topP?: (number|null); /** GenerationConfig topK. */ public topK?: (number|null); /** GenerationConfig responseMimeType. */ public responseMimeType: string; /** GenerationConfig responseSchema. */ public responseSchema?: (google.ai.generativelanguage.v1alpha.ISchema|null); /** GenerationConfig presencePenalty. */ public presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty. */ public frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs. */ public responseLogprobs?: (boolean|null); /** GenerationConfig logprobs. */ public logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers. */ public enableEnhancedCivicAnswers?: (boolean|null); /** GenerationConfig responseModalities. */ public responseModalities: google.ai.generativelanguage.v1alpha.GenerationConfig.Modality[]; /** GenerationConfig speechConfig. */ public speechConfig?: (google.ai.generativelanguage.v1alpha.ISpeechConfig|null); /** * Creates a new GenerationConfig instance using the specified properties. * @param [properties] Properties to set * @returns GenerationConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerationConfig): google.ai.generativelanguage.v1alpha.GenerationConfig; /** * Encodes the specified GenerationConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerationConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerationConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerationConfig; /** * Decodes a GenerationConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerationConfig; /** * Verifies a GenerationConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerationConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerationConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerationConfig; /** * Creates a plain object from a GenerationConfig message. Also converts values to other types if specified. * @param message GenerationConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerationConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerationConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerationConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerationConfig { /** Modality enum. */ enum Modality { MODALITY_UNSPECIFIED = 0, TEXT = 1, IMAGE = 2, AUDIO = 3 } } /** Properties of a SemanticRetrieverConfig. */ interface ISemanticRetrieverConfig { /** SemanticRetrieverConfig source */ source?: (string|null); /** SemanticRetrieverConfig query */ query?: (google.ai.generativelanguage.v1alpha.IContent|null); /** SemanticRetrieverConfig metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1alpha.IMetadataFilter[]|null); /** SemanticRetrieverConfig maxChunksCount */ maxChunksCount?: (number|null); /** SemanticRetrieverConfig minimumRelevanceScore */ minimumRelevanceScore?: (number|null); } /** Represents a SemanticRetrieverConfig. */ class SemanticRetrieverConfig implements ISemanticRetrieverConfig { /** * Constructs a new SemanticRetrieverConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig); /** SemanticRetrieverConfig source. */ public source: string; /** SemanticRetrieverConfig query. */ public query?: (google.ai.generativelanguage.v1alpha.IContent|null); /** SemanticRetrieverConfig metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1alpha.IMetadataFilter[]; /** SemanticRetrieverConfig maxChunksCount. */ public maxChunksCount?: (number|null); /** SemanticRetrieverConfig minimumRelevanceScore. */ public minimumRelevanceScore?: (number|null); /** * Creates a new SemanticRetrieverConfig instance using the specified properties. * @param [properties] Properties to set * @returns SemanticRetrieverConfig instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig): google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig; /** * Encodes the specified SemanticRetrieverConfig message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig.verify|verify} messages. * @param message SemanticRetrieverConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SemanticRetrieverConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig.verify|verify} messages. * @param message SemanticRetrieverConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SemanticRetrieverConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SemanticRetrieverConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig; /** * Decodes a SemanticRetrieverConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SemanticRetrieverConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig; /** * Verifies a SemanticRetrieverConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SemanticRetrieverConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SemanticRetrieverConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig; /** * Creates a plain object from a SemanticRetrieverConfig message. Also converts values to other types if specified. * @param message SemanticRetrieverConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SemanticRetrieverConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SemanticRetrieverConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SemanticRetrieverConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateContentResponse. */ interface IGenerateContentResponse { /** GenerateContentResponse candidates */ candidates?: (google.ai.generativelanguage.v1alpha.ICandidate[]|null); /** GenerateContentResponse promptFeedback */ promptFeedback?: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion */ modelVersion?: (string|null); } /** Represents a GenerateContentResponse. */ class GenerateContentResponse implements IGenerateContentResponse { /** * Constructs a new GenerateContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateContentResponse); /** GenerateContentResponse candidates. */ public candidates: google.ai.generativelanguage.v1alpha.ICandidate[]; /** GenerateContentResponse promptFeedback. */ public promptFeedback?: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion. */ public modelVersion: string; /** * Creates a new GenerateContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateContentResponse): google.ai.generativelanguage.v1alpha.GenerateContentResponse; /** * Encodes the specified GenerateContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateContentResponse; /** * Decodes a GenerateContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateContentResponse; /** * Verifies a GenerateContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateContentResponse; /** * Creates a plain object from a GenerateContentResponse message. Also converts values to other types if specified. * @param message GenerateContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateContentResponse { /** Properties of a PromptFeedback. */ interface IPromptFeedback { /** PromptFeedback blockReason */ blockReason?: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.BlockReason|null); /** PromptFeedback safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1alpha.ISafetyRating[]|null); } /** Represents a PromptFeedback. */ class PromptFeedback implements IPromptFeedback { /** * Constructs a new PromptFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback); /** PromptFeedback blockReason. */ public blockReason: (google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.BlockReason); /** PromptFeedback safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1alpha.ISafetyRating[]; /** * Creates a new PromptFeedback instance using the specified properties. * @param [properties] Properties to set * @returns PromptFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback): google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback; /** * Encodes the specified PromptFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PromptFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PromptFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback; /** * Decodes a PromptFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback; /** * Verifies a PromptFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PromptFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PromptFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback; /** * Creates a plain object from a PromptFeedback message. Also converts values to other types if specified. * @param message PromptFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.PromptFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PromptFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PromptFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace PromptFeedback { /** BlockReason enum. */ enum BlockReason { BLOCK_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2, BLOCKLIST = 3, PROHIBITED_CONTENT = 4, IMAGE_SAFETY = 5 } } /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata promptTokenCount */ promptTokenCount?: (number|null); /** UsageMetadata cachedContentTokenCount */ cachedContentTokenCount?: (number|null); /** UsageMetadata candidatesTokenCount */ candidatesTokenCount?: (number|null); /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata); /** UsageMetadata promptTokenCount. */ public promptTokenCount: number; /** UsageMetadata cachedContentTokenCount. */ public cachedContentTokenCount: number; /** UsageMetadata candidatesTokenCount. */ public candidatesTokenCount: number; /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata): google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateContentResponse.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a Candidate. */ interface ICandidate { /** Candidate index */ index?: (number|null); /** Candidate content */ content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** Candidate finishReason */ finishReason?: (google.ai.generativelanguage.v1alpha.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1alpha.Candidate.FinishReason|null); /** Candidate safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1alpha.ISafetyRating[]|null); /** Candidate citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); /** Candidate tokenCount */ tokenCount?: (number|null); /** Candidate groundingAttributions */ groundingAttributions?: (google.ai.generativelanguage.v1alpha.IGroundingAttribution[]|null); /** Candidate groundingMetadata */ groundingMetadata?: (google.ai.generativelanguage.v1alpha.IGroundingMetadata|null); /** Candidate avgLogprobs */ avgLogprobs?: (number|null); /** Candidate logprobsResult */ logprobsResult?: (google.ai.generativelanguage.v1alpha.ILogprobsResult|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICandidate); /** Candidate index. */ public index?: (number|null); /** Candidate content. */ public content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** Candidate finishReason. */ public finishReason: (google.ai.generativelanguage.v1alpha.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1alpha.Candidate.FinishReason); /** Candidate safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1alpha.ISafetyRating[]; /** Candidate citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); /** Candidate tokenCount. */ public tokenCount: number; /** Candidate groundingAttributions. */ public groundingAttributions: google.ai.generativelanguage.v1alpha.IGroundingAttribution[]; /** Candidate groundingMetadata. */ public groundingMetadata?: (google.ai.generativelanguage.v1alpha.IGroundingMetadata|null); /** Candidate avgLogprobs. */ public avgLogprobs: number; /** Candidate logprobsResult. */ public logprobsResult?: (google.ai.generativelanguage.v1alpha.ILogprobsResult|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICandidate): google.ai.generativelanguage.v1alpha.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Candidate { /** FinishReason enum. */ enum FinishReason { FINISH_REASON_UNSPECIFIED = 0, STOP = 1, MAX_TOKENS = 2, SAFETY = 3, RECITATION = 4, LANGUAGE = 6, OTHER = 5, BLOCKLIST = 7, PROHIBITED_CONTENT = 8, SPII = 9, MALFORMED_FUNCTION_CALL = 10, IMAGE_SAFETY = 11 } } /** Properties of a LogprobsResult. */ interface ILogprobsResult { /** LogprobsResult topCandidates */ topCandidates?: (google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates[]|null); /** LogprobsResult chosenCandidates */ chosenCandidates?: (google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate[]|null); } /** Represents a LogprobsResult. */ class LogprobsResult implements ILogprobsResult { /** * Constructs a new LogprobsResult. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ILogprobsResult); /** LogprobsResult topCandidates. */ public topCandidates: google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates[]; /** LogprobsResult chosenCandidates. */ public chosenCandidates: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate[]; /** * Creates a new LogprobsResult instance using the specified properties. * @param [properties] Properties to set * @returns LogprobsResult instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ILogprobsResult): google.ai.generativelanguage.v1alpha.LogprobsResult; /** * Encodes the specified LogprobsResult message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified LogprobsResult message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a LogprobsResult message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.LogprobsResult; /** * Decodes a LogprobsResult message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.LogprobsResult; /** * Verifies a LogprobsResult message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a LogprobsResult message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns LogprobsResult */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.LogprobsResult; /** * Creates a plain object from a LogprobsResult message. Also converts values to other types if specified. * @param message LogprobsResult * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.LogprobsResult, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this LogprobsResult to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for LogprobsResult * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace LogprobsResult { /** Properties of a Candidate. */ interface ICandidate { /** Candidate token */ token?: (string|null); /** Candidate tokenId */ tokenId?: (number|null); /** Candidate logProbability */ logProbability?: (number|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate); /** Candidate token. */ public token?: (string|null); /** Candidate tokenId. */ public tokenId?: (number|null); /** Candidate logProbability. */ public logProbability?: (number|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate): google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.LogprobsResult.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TopCandidates. */ interface ITopCandidates { /** TopCandidates candidates */ candidates?: (google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate[]|null); } /** Represents a TopCandidates. */ class TopCandidates implements ITopCandidates { /** * Constructs a new TopCandidates. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates); /** TopCandidates candidates. */ public candidates: google.ai.generativelanguage.v1alpha.LogprobsResult.ICandidate[]; /** * Creates a new TopCandidates instance using the specified properties. * @param [properties] Properties to set * @returns TopCandidates instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates): google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates; /** * Encodes the specified TopCandidates message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TopCandidates message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TopCandidates message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates; /** * Decodes a TopCandidates message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates; /** * Verifies a TopCandidates message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TopCandidates message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TopCandidates */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates; /** * Creates a plain object from a TopCandidates message. Also converts values to other types if specified. * @param message TopCandidates * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.LogprobsResult.TopCandidates, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TopCandidates to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TopCandidates * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an AttributionSourceId. */ interface IAttributionSourceId { /** AttributionSourceId groundingPassage */ groundingPassage?: (google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId|null); /** AttributionSourceId semanticRetrieverChunk */ semanticRetrieverChunk?: (google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk|null); } /** Represents an AttributionSourceId. */ class AttributionSourceId implements IAttributionSourceId { /** * Constructs a new AttributionSourceId. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IAttributionSourceId); /** AttributionSourceId groundingPassage. */ public groundingPassage?: (google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId|null); /** AttributionSourceId semanticRetrieverChunk. */ public semanticRetrieverChunk?: (google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk|null); /** AttributionSourceId source. */ public source?: ("groundingPassage"|"semanticRetrieverChunk"); /** * Creates a new AttributionSourceId instance using the specified properties. * @param [properties] Properties to set * @returns AttributionSourceId instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IAttributionSourceId): google.ai.generativelanguage.v1alpha.AttributionSourceId; /** * Encodes the specified AttributionSourceId message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.verify|verify} messages. * @param message AttributionSourceId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IAttributionSourceId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified AttributionSourceId message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.verify|verify} messages. * @param message AttributionSourceId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IAttributionSourceId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an AttributionSourceId message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns AttributionSourceId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.AttributionSourceId; /** * Decodes an AttributionSourceId message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns AttributionSourceId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.AttributionSourceId; /** * Verifies an AttributionSourceId message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an AttributionSourceId message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns AttributionSourceId */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.AttributionSourceId; /** * Creates a plain object from an AttributionSourceId message. Also converts values to other types if specified. * @param message AttributionSourceId * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.AttributionSourceId, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this AttributionSourceId to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for AttributionSourceId * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace AttributionSourceId { /** Properties of a GroundingPassageId. */ interface IGroundingPassageId { /** GroundingPassageId passageId */ passageId?: (string|null); /** GroundingPassageId partIndex */ partIndex?: (number|null); } /** Represents a GroundingPassageId. */ class GroundingPassageId implements IGroundingPassageId { /** * Constructs a new GroundingPassageId. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId); /** GroundingPassageId passageId. */ public passageId: string; /** GroundingPassageId partIndex. */ public partIndex: number; /** * Creates a new GroundingPassageId instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassageId instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId): google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId; /** * Encodes the specified GroundingPassageId message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId.verify|verify} messages. * @param message GroundingPassageId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassageId message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId.verify|verify} messages. * @param message GroundingPassageId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.IGroundingPassageId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassageId message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassageId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId; /** * Decodes a GroundingPassageId message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassageId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId; /** * Verifies a GroundingPassageId message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassageId message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassageId */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId; /** * Creates a plain object from a GroundingPassageId message. Also converts values to other types if specified. * @param message GroundingPassageId * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.GroundingPassageId, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassageId to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassageId * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SemanticRetrieverChunk. */ interface ISemanticRetrieverChunk { /** SemanticRetrieverChunk source */ source?: (string|null); /** SemanticRetrieverChunk chunk */ chunk?: (string|null); } /** Represents a SemanticRetrieverChunk. */ class SemanticRetrieverChunk implements ISemanticRetrieverChunk { /** * Constructs a new SemanticRetrieverChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk); /** SemanticRetrieverChunk source. */ public source: string; /** SemanticRetrieverChunk chunk. */ public chunk: string; /** * Creates a new SemanticRetrieverChunk instance using the specified properties. * @param [properties] Properties to set * @returns SemanticRetrieverChunk instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk): google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk; /** * Encodes the specified SemanticRetrieverChunk message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk.verify|verify} messages. * @param message SemanticRetrieverChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SemanticRetrieverChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk.verify|verify} messages. * @param message SemanticRetrieverChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.ISemanticRetrieverChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SemanticRetrieverChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SemanticRetrieverChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk; /** * Decodes a SemanticRetrieverChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SemanticRetrieverChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk; /** * Verifies a SemanticRetrieverChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SemanticRetrieverChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SemanticRetrieverChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk; /** * Creates a plain object from a SemanticRetrieverChunk message. Also converts values to other types if specified. * @param message SemanticRetrieverChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.AttributionSourceId.SemanticRetrieverChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SemanticRetrieverChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SemanticRetrieverChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a GroundingAttribution. */ interface IGroundingAttribution { /** GroundingAttribution sourceId */ sourceId?: (google.ai.generativelanguage.v1alpha.IAttributionSourceId|null); /** GroundingAttribution content */ content?: (google.ai.generativelanguage.v1alpha.IContent|null); } /** Represents a GroundingAttribution. */ class GroundingAttribution implements IGroundingAttribution { /** * Constructs a new GroundingAttribution. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingAttribution); /** GroundingAttribution sourceId. */ public sourceId?: (google.ai.generativelanguage.v1alpha.IAttributionSourceId|null); /** GroundingAttribution content. */ public content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** * Creates a new GroundingAttribution instance using the specified properties. * @param [properties] Properties to set * @returns GroundingAttribution instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingAttribution): google.ai.generativelanguage.v1alpha.GroundingAttribution; /** * Encodes the specified GroundingAttribution message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingAttribution.verify|verify} messages. * @param message GroundingAttribution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingAttribution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingAttribution message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingAttribution.verify|verify} messages. * @param message GroundingAttribution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingAttribution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingAttribution message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingAttribution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingAttribution; /** * Decodes a GroundingAttribution message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingAttribution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingAttribution; /** * Verifies a GroundingAttribution message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingAttribution message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingAttribution */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingAttribution; /** * Creates a plain object from a GroundingAttribution message. Also converts values to other types if specified. * @param message GroundingAttribution * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingAttribution, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingAttribution to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingAttribution * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RetrievalMetadata. */ interface IRetrievalMetadata { /** RetrievalMetadata googleSearchDynamicRetrievalScore */ googleSearchDynamicRetrievalScore?: (number|null); } /** Represents a RetrievalMetadata. */ class RetrievalMetadata implements IRetrievalMetadata { /** * Constructs a new RetrievalMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IRetrievalMetadata); /** RetrievalMetadata googleSearchDynamicRetrievalScore. */ public googleSearchDynamicRetrievalScore: number; /** * Creates a new RetrievalMetadata instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IRetrievalMetadata): google.ai.generativelanguage.v1alpha.RetrievalMetadata; /** * Encodes the specified RetrievalMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.RetrievalMetadata; /** * Decodes a RetrievalMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.RetrievalMetadata; /** * Verifies a RetrievalMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.RetrievalMetadata; /** * Creates a plain object from a RetrievalMetadata message. Also converts values to other types if specified. * @param message RetrievalMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.RetrievalMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingMetadata. */ interface IGroundingMetadata { /** GroundingMetadata searchEntryPoint */ searchEntryPoint?: (google.ai.generativelanguage.v1alpha.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks */ groundingChunks?: (google.ai.generativelanguage.v1alpha.IGroundingChunk[]|null); /** GroundingMetadata groundingSupports */ groundingSupports?: (google.ai.generativelanguage.v1alpha.IGroundingSupport[]|null); /** GroundingMetadata retrievalMetadata */ retrievalMetadata?: (google.ai.generativelanguage.v1alpha.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries */ webSearchQueries?: (string[]|null); } /** Represents a GroundingMetadata. */ class GroundingMetadata implements IGroundingMetadata { /** * Constructs a new GroundingMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingMetadata); /** GroundingMetadata searchEntryPoint. */ public searchEntryPoint?: (google.ai.generativelanguage.v1alpha.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks. */ public groundingChunks: google.ai.generativelanguage.v1alpha.IGroundingChunk[]; /** GroundingMetadata groundingSupports. */ public groundingSupports: google.ai.generativelanguage.v1alpha.IGroundingSupport[]; /** GroundingMetadata retrievalMetadata. */ public retrievalMetadata?: (google.ai.generativelanguage.v1alpha.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries. */ public webSearchQueries: string[]; /** * Creates a new GroundingMetadata instance using the specified properties. * @param [properties] Properties to set * @returns GroundingMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingMetadata): google.ai.generativelanguage.v1alpha.GroundingMetadata; /** * Encodes the specified GroundingMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingMetadata; /** * Decodes a GroundingMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingMetadata; /** * Verifies a GroundingMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingMetadata; /** * Creates a plain object from a GroundingMetadata message. Also converts values to other types if specified. * @param message GroundingMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SearchEntryPoint. */ interface ISearchEntryPoint { /** SearchEntryPoint renderedContent */ renderedContent?: (string|null); /** SearchEntryPoint sdkBlob */ sdkBlob?: (Uint8Array|Buffer|string|null); } /** Represents a SearchEntryPoint. */ class SearchEntryPoint implements ISearchEntryPoint { /** * Constructs a new SearchEntryPoint. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISearchEntryPoint); /** SearchEntryPoint renderedContent. */ public renderedContent: string; /** SearchEntryPoint sdkBlob. */ public sdkBlob: (Uint8Array|Buffer|string); /** * Creates a new SearchEntryPoint instance using the specified properties. * @param [properties] Properties to set * @returns SearchEntryPoint instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISearchEntryPoint): google.ai.generativelanguage.v1alpha.SearchEntryPoint; /** * Encodes the specified SearchEntryPoint message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SearchEntryPoint message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SearchEntryPoint message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.SearchEntryPoint; /** * Decodes a SearchEntryPoint message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.SearchEntryPoint; /** * Verifies a SearchEntryPoint message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SearchEntryPoint message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SearchEntryPoint */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.SearchEntryPoint; /** * Creates a plain object from a SearchEntryPoint message. Also converts values to other types if specified. * @param message SearchEntryPoint * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.SearchEntryPoint, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SearchEntryPoint to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SearchEntryPoint * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingChunk. */ interface IGroundingChunk { /** GroundingChunk web */ web?: (google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb|null); } /** Represents a GroundingChunk. */ class GroundingChunk implements IGroundingChunk { /** * Constructs a new GroundingChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingChunk); /** GroundingChunk web. */ public web?: (google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb|null); /** GroundingChunk chunkType. */ public chunkType?: "web"; /** * Creates a new GroundingChunk instance using the specified properties. * @param [properties] Properties to set * @returns GroundingChunk instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingChunk): google.ai.generativelanguage.v1alpha.GroundingChunk; /** * Encodes the specified GroundingChunk message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingChunk; /** * Decodes a GroundingChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingChunk; /** * Verifies a GroundingChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingChunk; /** * Creates a plain object from a GroundingChunk message. Also converts values to other types if specified. * @param message GroundingChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GroundingChunk { /** Properties of a Web. */ interface IWeb { /** Web uri */ uri?: (string|null); /** Web title */ title?: (string|null); } /** Represents a Web. */ class Web implements IWeb { /** * Constructs a new Web. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb); /** Web uri. */ public uri?: (string|null); /** Web title. */ public title?: (string|null); /** * Creates a new Web instance using the specified properties. * @param [properties] Properties to set * @returns Web instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb): google.ai.generativelanguage.v1alpha.GroundingChunk.Web; /** * Encodes the specified Web message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Web message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Web message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingChunk.Web; /** * Decodes a Web message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingChunk.Web; /** * Verifies a Web message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Web message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Web */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingChunk.Web; /** * Creates a plain object from a Web message. Also converts values to other types if specified. * @param message Web * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingChunk.Web, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Web to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Web * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a Segment. */ interface ISegment { /** Segment partIndex */ partIndex?: (number|null); /** Segment startIndex */ startIndex?: (number|null); /** Segment endIndex */ endIndex?: (number|null); /** Segment text */ text?: (string|null); } /** Represents a Segment. */ class Segment implements ISegment { /** * Constructs a new Segment. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ISegment); /** Segment partIndex. */ public partIndex: number; /** Segment startIndex. */ public startIndex: number; /** Segment endIndex. */ public endIndex: number; /** Segment text. */ public text: string; /** * Creates a new Segment instance using the specified properties. * @param [properties] Properties to set * @returns Segment instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ISegment): google.ai.generativelanguage.v1alpha.Segment; /** * Encodes the specified Segment message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Segment message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Segment message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Segment; /** * Decodes a Segment message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Segment; /** * Verifies a Segment message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Segment message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Segment */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Segment; /** * Creates a plain object from a Segment message. Also converts values to other types if specified. * @param message Segment * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Segment, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Segment to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Segment * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingSupport. */ interface IGroundingSupport { /** GroundingSupport segment */ segment?: (google.ai.generativelanguage.v1alpha.ISegment|null); /** GroundingSupport groundingChunkIndices */ groundingChunkIndices?: (number[]|null); /** GroundingSupport confidenceScores */ confidenceScores?: (number[]|null); } /** Represents a GroundingSupport. */ class GroundingSupport implements IGroundingSupport { /** * Constructs a new GroundingSupport. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGroundingSupport); /** GroundingSupport segment. */ public segment?: (google.ai.generativelanguage.v1alpha.ISegment|null); /** GroundingSupport groundingChunkIndices. */ public groundingChunkIndices: number[]; /** GroundingSupport confidenceScores. */ public confidenceScores: number[]; /** * Creates a new GroundingSupport instance using the specified properties. * @param [properties] Properties to set * @returns GroundingSupport instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGroundingSupport): google.ai.generativelanguage.v1alpha.GroundingSupport; /** * Encodes the specified GroundingSupport message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingSupport message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingSupport message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GroundingSupport; /** * Decodes a GroundingSupport message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GroundingSupport; /** * Verifies a GroundingSupport message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingSupport message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingSupport */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GroundingSupport; /** * Creates a plain object from a GroundingSupport message. Also converts values to other types if specified. * @param message GroundingSupport * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GroundingSupport, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingSupport to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingSupport * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateAnswerRequest. */ interface IGenerateAnswerRequest { /** GenerateAnswerRequest inlinePassages */ inlinePassages?: (google.ai.generativelanguage.v1alpha.IGroundingPassages|null); /** GenerateAnswerRequest semanticRetriever */ semanticRetriever?: (google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig|null); /** GenerateAnswerRequest model */ model?: (string|null); /** GenerateAnswerRequest contents */ contents?: (google.ai.generativelanguage.v1alpha.IContent[]|null); /** GenerateAnswerRequest answerStyle */ answerStyle?: (google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.AnswerStyle|keyof typeof google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.AnswerStyle|null); /** GenerateAnswerRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1alpha.ISafetySetting[]|null); /** GenerateAnswerRequest temperature */ temperature?: (number|null); } /** Represents a GenerateAnswerRequest. */ class GenerateAnswerRequest implements IGenerateAnswerRequest { /** * Constructs a new GenerateAnswerRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest); /** GenerateAnswerRequest inlinePassages. */ public inlinePassages?: (google.ai.generativelanguage.v1alpha.IGroundingPassages|null); /** GenerateAnswerRequest semanticRetriever. */ public semanticRetriever?: (google.ai.generativelanguage.v1alpha.ISemanticRetrieverConfig|null); /** GenerateAnswerRequest model. */ public model: string; /** GenerateAnswerRequest contents. */ public contents: google.ai.generativelanguage.v1alpha.IContent[]; /** GenerateAnswerRequest answerStyle. */ public answerStyle: (google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.AnswerStyle|keyof typeof google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.AnswerStyle); /** GenerateAnswerRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1alpha.ISafetySetting[]; /** GenerateAnswerRequest temperature. */ public temperature?: (number|null); /** GenerateAnswerRequest groundingSource. */ public groundingSource?: ("inlinePassages"|"semanticRetriever"); /** * Creates a new GenerateAnswerRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateAnswerRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest): google.ai.generativelanguage.v1alpha.GenerateAnswerRequest; /** * Encodes the specified GenerateAnswerRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.verify|verify} messages. * @param message GenerateAnswerRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateAnswerRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerRequest.verify|verify} messages. * @param message GenerateAnswerRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateAnswerRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateAnswerRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateAnswerRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateAnswerRequest; /** * Decodes a GenerateAnswerRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateAnswerRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateAnswerRequest; /** * Verifies a GenerateAnswerRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateAnswerRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateAnswerRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateAnswerRequest; /** * Creates a plain object from a GenerateAnswerRequest message. Also converts values to other types if specified. * @param message GenerateAnswerRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateAnswerRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateAnswerRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateAnswerRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateAnswerRequest { /** AnswerStyle enum. */ enum AnswerStyle { ANSWER_STYLE_UNSPECIFIED = 0, ABSTRACTIVE = 1, EXTRACTIVE = 2, VERBOSE = 3 } } /** Properties of a GenerateAnswerResponse. */ interface IGenerateAnswerResponse { /** GenerateAnswerResponse answer */ answer?: (google.ai.generativelanguage.v1alpha.ICandidate|null); /** GenerateAnswerResponse answerableProbability */ answerableProbability?: (number|null); /** GenerateAnswerResponse inputFeedback */ inputFeedback?: (google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback|null); } /** Represents a GenerateAnswerResponse. */ class GenerateAnswerResponse implements IGenerateAnswerResponse { /** * Constructs a new GenerateAnswerResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateAnswerResponse); /** GenerateAnswerResponse answer. */ public answer?: (google.ai.generativelanguage.v1alpha.ICandidate|null); /** GenerateAnswerResponse answerableProbability. */ public answerableProbability?: (number|null); /** GenerateAnswerResponse inputFeedback. */ public inputFeedback?: (google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback|null); /** * Creates a new GenerateAnswerResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateAnswerResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateAnswerResponse): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse; /** * Encodes the specified GenerateAnswerResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.verify|verify} messages. * @param message GenerateAnswerResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateAnswerResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateAnswerResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.verify|verify} messages. * @param message GenerateAnswerResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateAnswerResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateAnswerResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateAnswerResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse; /** * Decodes a GenerateAnswerResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateAnswerResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse; /** * Verifies a GenerateAnswerResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateAnswerResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateAnswerResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse; /** * Creates a plain object from a GenerateAnswerResponse message. Also converts values to other types if specified. * @param message GenerateAnswerResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateAnswerResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateAnswerResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateAnswerResponse { /** Properties of an InputFeedback. */ interface IInputFeedback { /** InputFeedback blockReason */ blockReason?: (google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.BlockReason|null); /** InputFeedback safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1alpha.ISafetyRating[]|null); } /** Represents an InputFeedback. */ class InputFeedback implements IInputFeedback { /** * Constructs a new InputFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback); /** InputFeedback blockReason. */ public blockReason?: (google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.BlockReason|null); /** InputFeedback safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1alpha.ISafetyRating[]; /** * Creates a new InputFeedback instance using the specified properties. * @param [properties] Properties to set * @returns InputFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback; /** * Encodes the specified InputFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.verify|verify} messages. * @param message InputFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified InputFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback.verify|verify} messages. * @param message InputFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.IInputFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an InputFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns InputFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback; /** * Decodes an InputFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns InputFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback; /** * Verifies an InputFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an InputFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns InputFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback; /** * Creates a plain object from an InputFeedback message. Also converts values to other types if specified. * @param message InputFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateAnswerResponse.InputFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this InputFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for InputFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace InputFeedback { /** BlockReason enum. */ enum BlockReason { BLOCK_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } } /** Properties of an EmbedContentRequest. */ interface IEmbedContentRequest { /** EmbedContentRequest model */ model?: (string|null); /** EmbedContentRequest content */ content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** EmbedContentRequest taskType */ taskType?: (google.ai.generativelanguage.v1alpha.TaskType|keyof typeof google.ai.generativelanguage.v1alpha.TaskType|null); /** EmbedContentRequest title */ title?: (string|null); /** EmbedContentRequest outputDimensionality */ outputDimensionality?: (number|null); } /** Represents an EmbedContentRequest. */ class EmbedContentRequest implements IEmbedContentRequest { /** * Constructs a new EmbedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IEmbedContentRequest); /** EmbedContentRequest model. */ public model: string; /** EmbedContentRequest content. */ public content?: (google.ai.generativelanguage.v1alpha.IContent|null); /** EmbedContentRequest taskType. */ public taskType?: (google.ai.generativelanguage.v1alpha.TaskType|keyof typeof google.ai.generativelanguage.v1alpha.TaskType|null); /** EmbedContentRequest title. */ public title?: (string|null); /** EmbedContentRequest outputDimensionality. */ public outputDimensionality?: (number|null); /** * Creates a new EmbedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IEmbedContentRequest): google.ai.generativelanguage.v1alpha.EmbedContentRequest; /** * Encodes the specified EmbedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.EmbedContentRequest; /** * Decodes an EmbedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.EmbedContentRequest; /** * Verifies an EmbedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.EmbedContentRequest; /** * Creates a plain object from an EmbedContentRequest message. Also converts values to other types if specified. * @param message EmbedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.EmbedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ContentEmbedding. */ interface IContentEmbedding { /** ContentEmbedding values */ values?: (number[]|null); } /** Represents a ContentEmbedding. */ class ContentEmbedding implements IContentEmbedding { /** * Constructs a new ContentEmbedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IContentEmbedding); /** ContentEmbedding values. */ public values: number[]; /** * Creates a new ContentEmbedding instance using the specified properties. * @param [properties] Properties to set * @returns ContentEmbedding instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IContentEmbedding): google.ai.generativelanguage.v1alpha.ContentEmbedding; /** * Encodes the specified ContentEmbedding message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentEmbedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentEmbedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ContentEmbedding; /** * Decodes a ContentEmbedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ContentEmbedding; /** * Verifies a ContentEmbedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentEmbedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentEmbedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ContentEmbedding; /** * Creates a plain object from a ContentEmbedding message. Also converts values to other types if specified. * @param message ContentEmbedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ContentEmbedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentEmbedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentEmbedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedContentResponse. */ interface IEmbedContentResponse { /** EmbedContentResponse embedding */ embedding?: (google.ai.generativelanguage.v1alpha.IContentEmbedding|null); } /** Represents an EmbedContentResponse. */ class EmbedContentResponse implements IEmbedContentResponse { /** * Constructs a new EmbedContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IEmbedContentResponse); /** EmbedContentResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1alpha.IContentEmbedding|null); /** * Creates a new EmbedContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IEmbedContentResponse): google.ai.generativelanguage.v1alpha.EmbedContentResponse; /** * Encodes the specified EmbedContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.EmbedContentResponse; /** * Decodes an EmbedContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.EmbedContentResponse; /** * Verifies an EmbedContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.EmbedContentResponse; /** * Creates a plain object from an EmbedContentResponse message. Also converts values to other types if specified. * @param message EmbedContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.EmbedContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsRequest. */ interface IBatchEmbedContentsRequest { /** BatchEmbedContentsRequest model */ model?: (string|null); /** BatchEmbedContentsRequest requests */ requests?: (google.ai.generativelanguage.v1alpha.IEmbedContentRequest[]|null); } /** Represents a BatchEmbedContentsRequest. */ class BatchEmbedContentsRequest implements IBatchEmbedContentsRequest { /** * Constructs a new BatchEmbedContentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest); /** BatchEmbedContentsRequest model. */ public model: string; /** BatchEmbedContentsRequest requests. */ public requests: google.ai.generativelanguage.v1alpha.IEmbedContentRequest[]; /** * Creates a new BatchEmbedContentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest): google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest; /** * Encodes the specified BatchEmbedContentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest; /** * Verifies a BatchEmbedContentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest; /** * Creates a plain object from a BatchEmbedContentsRequest message. Also converts values to other types if specified. * @param message BatchEmbedContentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchEmbedContentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsResponse. */ interface IBatchEmbedContentsResponse { /** BatchEmbedContentsResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1alpha.IContentEmbedding[]|null); } /** Represents a BatchEmbedContentsResponse. */ class BatchEmbedContentsResponse implements IBatchEmbedContentsResponse { /** * Constructs a new BatchEmbedContentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsResponse); /** BatchEmbedContentsResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1alpha.IContentEmbedding[]; /** * Creates a new BatchEmbedContentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsResponse): google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse; /** * Encodes the specified BatchEmbedContentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse; /** * Verifies a BatchEmbedContentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse; /** * Creates a plain object from a BatchEmbedContentsResponse message. Also converts values to other types if specified. * @param message BatchEmbedContentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchEmbedContentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensRequest. */ interface ICountTokensRequest { /** CountTokensRequest model */ model?: (string|null); /** CountTokensRequest contents */ contents?: (google.ai.generativelanguage.v1alpha.IContent[]|null); /** CountTokensRequest generateContentRequest */ generateContentRequest?: (google.ai.generativelanguage.v1alpha.IGenerateContentRequest|null); } /** Represents a CountTokensRequest. */ class CountTokensRequest implements ICountTokensRequest { /** * Constructs a new CountTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountTokensRequest); /** CountTokensRequest model. */ public model: string; /** CountTokensRequest contents. */ public contents: google.ai.generativelanguage.v1alpha.IContent[]; /** CountTokensRequest generateContentRequest. */ public generateContentRequest?: (google.ai.generativelanguage.v1alpha.IGenerateContentRequest|null); /** * Creates a new CountTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountTokensRequest): google.ai.generativelanguage.v1alpha.CountTokensRequest; /** * Encodes the specified CountTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountTokensRequest; /** * Decodes a CountTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountTokensRequest; /** * Verifies a CountTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountTokensRequest; /** * Creates a plain object from a CountTokensRequest message. Also converts values to other types if specified. * @param message CountTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensResponse. */ interface ICountTokensResponse { /** CountTokensResponse totalTokens */ totalTokens?: (number|null); /** CountTokensResponse cachedContentTokenCount */ cachedContentTokenCount?: (number|null); } /** Represents a CountTokensResponse. */ class CountTokensResponse implements ICountTokensResponse { /** * Constructs a new CountTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountTokensResponse); /** CountTokensResponse totalTokens. */ public totalTokens: number; /** CountTokensResponse cachedContentTokenCount. */ public cachedContentTokenCount: number; /** * Creates a new CountTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountTokensResponse): google.ai.generativelanguage.v1alpha.CountTokensResponse; /** * Encodes the specified CountTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountTokensResponse; /** * Decodes a CountTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountTokensResponse; /** * Verifies a CountTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountTokensResponse; /** * Creates a plain object from a CountTokensResponse message. Also converts values to other types if specified. * @param message CountTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentSetup. */ interface IBidiGenerateContentSetup { /** BidiGenerateContentSetup model */ model?: (string|null); /** BidiGenerateContentSetup generationConfig */ generationConfig?: (google.ai.generativelanguage.v1alpha.IGenerationConfig|null); /** BidiGenerateContentSetup systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** BidiGenerateContentSetup tools */ tools?: (google.ai.generativelanguage.v1alpha.ITool[]|null); } /** Represents a BidiGenerateContentSetup. */ class BidiGenerateContentSetup implements IBidiGenerateContentSetup { /** * Constructs a new BidiGenerateContentSetup. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup); /** BidiGenerateContentSetup model. */ public model: string; /** BidiGenerateContentSetup generationConfig. */ public generationConfig?: (google.ai.generativelanguage.v1alpha.IGenerationConfig|null); /** BidiGenerateContentSetup systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1alpha.IContent|null); /** BidiGenerateContentSetup tools. */ public tools: google.ai.generativelanguage.v1alpha.ITool[]; /** * Creates a new BidiGenerateContentSetup instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentSetup instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup; /** * Encodes the specified BidiGenerateContentSetup message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup.verify|verify} messages. * @param message BidiGenerateContentSetup message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentSetup message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup.verify|verify} messages. * @param message BidiGenerateContentSetup message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentSetup message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentSetup * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup; /** * Decodes a BidiGenerateContentSetup message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentSetup * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup; /** * Verifies a BidiGenerateContentSetup message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentSetup message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentSetup */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup; /** * Creates a plain object from a BidiGenerateContentSetup message. Also converts values to other types if specified. * @param message BidiGenerateContentSetup * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentSetup, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentSetup to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentSetup * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentClientContent. */ interface IBidiGenerateContentClientContent { /** BidiGenerateContentClientContent turns */ turns?: (google.ai.generativelanguage.v1alpha.IContent[]|null); /** BidiGenerateContentClientContent turnComplete */ turnComplete?: (boolean|null); } /** Represents a BidiGenerateContentClientContent. */ class BidiGenerateContentClientContent implements IBidiGenerateContentClientContent { /** * Constructs a new BidiGenerateContentClientContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent); /** BidiGenerateContentClientContent turns. */ public turns: google.ai.generativelanguage.v1alpha.IContent[]; /** BidiGenerateContentClientContent turnComplete. */ public turnComplete: boolean; /** * Creates a new BidiGenerateContentClientContent instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentClientContent instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent; /** * Encodes the specified BidiGenerateContentClientContent message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent.verify|verify} messages. * @param message BidiGenerateContentClientContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentClientContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent.verify|verify} messages. * @param message BidiGenerateContentClientContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentClientContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentClientContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent; /** * Decodes a BidiGenerateContentClientContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentClientContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent; /** * Verifies a BidiGenerateContentClientContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentClientContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentClientContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent; /** * Creates a plain object from a BidiGenerateContentClientContent message. Also converts values to other types if specified. * @param message BidiGenerateContentClientContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentClientContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentClientContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentClientContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentRealtimeInput. */ interface IBidiGenerateContentRealtimeInput { /** BidiGenerateContentRealtimeInput mediaChunks */ mediaChunks?: (google.ai.generativelanguage.v1alpha.IBlob[]|null); } /** Represents a BidiGenerateContentRealtimeInput. */ class BidiGenerateContentRealtimeInput implements IBidiGenerateContentRealtimeInput { /** * Constructs a new BidiGenerateContentRealtimeInput. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput); /** BidiGenerateContentRealtimeInput mediaChunks. */ public mediaChunks: google.ai.generativelanguage.v1alpha.IBlob[]; /** * Creates a new BidiGenerateContentRealtimeInput instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentRealtimeInput instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput): google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput; /** * Encodes the specified BidiGenerateContentRealtimeInput message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput.verify|verify} messages. * @param message BidiGenerateContentRealtimeInput message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentRealtimeInput message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput.verify|verify} messages. * @param message BidiGenerateContentRealtimeInput message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentRealtimeInput message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentRealtimeInput * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput; /** * Decodes a BidiGenerateContentRealtimeInput message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentRealtimeInput * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput; /** * Verifies a BidiGenerateContentRealtimeInput message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentRealtimeInput message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentRealtimeInput */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput; /** * Creates a plain object from a BidiGenerateContentRealtimeInput message. Also converts values to other types if specified. * @param message BidiGenerateContentRealtimeInput * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentRealtimeInput, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentRealtimeInput to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentRealtimeInput * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentToolResponse. */ interface IBidiGenerateContentToolResponse { /** BidiGenerateContentToolResponse functionResponses */ functionResponses?: (google.ai.generativelanguage.v1alpha.IFunctionResponse[]|null); } /** Represents a BidiGenerateContentToolResponse. */ class BidiGenerateContentToolResponse implements IBidiGenerateContentToolResponse { /** * Constructs a new BidiGenerateContentToolResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse); /** BidiGenerateContentToolResponse functionResponses. */ public functionResponses: google.ai.generativelanguage.v1alpha.IFunctionResponse[]; /** * Creates a new BidiGenerateContentToolResponse instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse; /** * Encodes the specified BidiGenerateContentToolResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse.verify|verify} messages. * @param message BidiGenerateContentToolResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse.verify|verify} messages. * @param message BidiGenerateContentToolResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse; /** * Decodes a BidiGenerateContentToolResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse; /** * Verifies a BidiGenerateContentToolResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse; /** * Creates a plain object from a BidiGenerateContentToolResponse message. Also converts values to other types if specified. * @param message BidiGenerateContentToolResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentToolResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentClientMessage. */ interface IBidiGenerateContentClientMessage { /** BidiGenerateContentClientMessage setup */ setup?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup|null); /** BidiGenerateContentClientMessage clientContent */ clientContent?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent|null); /** BidiGenerateContentClientMessage realtimeInput */ realtimeInput?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput|null); /** BidiGenerateContentClientMessage toolResponse */ toolResponse?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse|null); } /** Represents a BidiGenerateContentClientMessage. */ class BidiGenerateContentClientMessage implements IBidiGenerateContentClientMessage { /** * Constructs a new BidiGenerateContentClientMessage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage); /** BidiGenerateContentClientMessage setup. */ public setup?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetup|null); /** BidiGenerateContentClientMessage clientContent. */ public clientContent?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientContent|null); /** BidiGenerateContentClientMessage realtimeInput. */ public realtimeInput?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentRealtimeInput|null); /** BidiGenerateContentClientMessage toolResponse. */ public toolResponse?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolResponse|null); /** BidiGenerateContentClientMessage messageType. */ public messageType?: ("setup"|"clientContent"|"realtimeInput"|"toolResponse"); /** * Creates a new BidiGenerateContentClientMessage instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentClientMessage instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage; /** * Encodes the specified BidiGenerateContentClientMessage message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage.verify|verify} messages. * @param message BidiGenerateContentClientMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentClientMessage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage.verify|verify} messages. * @param message BidiGenerateContentClientMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentClientMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentClientMessage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentClientMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage; /** * Decodes a BidiGenerateContentClientMessage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentClientMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage; /** * Verifies a BidiGenerateContentClientMessage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentClientMessage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentClientMessage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage; /** * Creates a plain object from a BidiGenerateContentClientMessage message. Also converts values to other types if specified. * @param message BidiGenerateContentClientMessage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentClientMessage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentClientMessage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentClientMessage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentSetupComplete. */ interface IBidiGenerateContentSetupComplete { } /** Represents a BidiGenerateContentSetupComplete. */ class BidiGenerateContentSetupComplete implements IBidiGenerateContentSetupComplete { /** * Constructs a new BidiGenerateContentSetupComplete. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete); /** * Creates a new BidiGenerateContentSetupComplete instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentSetupComplete instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete; /** * Encodes the specified BidiGenerateContentSetupComplete message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete.verify|verify} messages. * @param message BidiGenerateContentSetupComplete message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentSetupComplete message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete.verify|verify} messages. * @param message BidiGenerateContentSetupComplete message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentSetupComplete message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentSetupComplete * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete; /** * Decodes a BidiGenerateContentSetupComplete message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentSetupComplete * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete; /** * Verifies a BidiGenerateContentSetupComplete message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentSetupComplete message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentSetupComplete */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete; /** * Creates a plain object from a BidiGenerateContentSetupComplete message. Also converts values to other types if specified. * @param message BidiGenerateContentSetupComplete * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentSetupComplete, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentSetupComplete to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentSetupComplete * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentServerContent. */ interface IBidiGenerateContentServerContent { /** BidiGenerateContentServerContent modelTurn */ modelTurn?: (google.ai.generativelanguage.v1alpha.IContent|null); /** BidiGenerateContentServerContent turnComplete */ turnComplete?: (boolean|null); /** BidiGenerateContentServerContent interrupted */ interrupted?: (boolean|null); /** BidiGenerateContentServerContent groundingMetadata */ groundingMetadata?: (google.ai.generativelanguage.v1alpha.IGroundingMetadata|null); } /** Represents a BidiGenerateContentServerContent. */ class BidiGenerateContentServerContent implements IBidiGenerateContentServerContent { /** * Constructs a new BidiGenerateContentServerContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent); /** BidiGenerateContentServerContent modelTurn. */ public modelTurn?: (google.ai.generativelanguage.v1alpha.IContent|null); /** BidiGenerateContentServerContent turnComplete. */ public turnComplete: boolean; /** BidiGenerateContentServerContent interrupted. */ public interrupted: boolean; /** BidiGenerateContentServerContent groundingMetadata. */ public groundingMetadata?: (google.ai.generativelanguage.v1alpha.IGroundingMetadata|null); /** * Creates a new BidiGenerateContentServerContent instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentServerContent instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent; /** * Encodes the specified BidiGenerateContentServerContent message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent.verify|verify} messages. * @param message BidiGenerateContentServerContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentServerContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent.verify|verify} messages. * @param message BidiGenerateContentServerContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentServerContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentServerContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent; /** * Decodes a BidiGenerateContentServerContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentServerContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent; /** * Verifies a BidiGenerateContentServerContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentServerContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentServerContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent; /** * Creates a plain object from a BidiGenerateContentServerContent message. Also converts values to other types if specified. * @param message BidiGenerateContentServerContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentServerContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentServerContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentServerContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentToolCall. */ interface IBidiGenerateContentToolCall { /** BidiGenerateContentToolCall functionCalls */ functionCalls?: (google.ai.generativelanguage.v1alpha.IFunctionCall[]|null); } /** Represents a BidiGenerateContentToolCall. */ class BidiGenerateContentToolCall implements IBidiGenerateContentToolCall { /** * Constructs a new BidiGenerateContentToolCall. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall); /** BidiGenerateContentToolCall functionCalls. */ public functionCalls: google.ai.generativelanguage.v1alpha.IFunctionCall[]; /** * Creates a new BidiGenerateContentToolCall instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolCall instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall; /** * Encodes the specified BidiGenerateContentToolCall message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall.verify|verify} messages. * @param message BidiGenerateContentToolCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolCall message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall.verify|verify} messages. * @param message BidiGenerateContentToolCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolCall message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall; /** * Decodes a BidiGenerateContentToolCall message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall; /** * Verifies a BidiGenerateContentToolCall message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolCall message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolCall */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall; /** * Creates a plain object from a BidiGenerateContentToolCall message. Also converts values to other types if specified. * @param message BidiGenerateContentToolCall * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCall, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolCall to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolCall * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentToolCallCancellation. */ interface IBidiGenerateContentToolCallCancellation { /** BidiGenerateContentToolCallCancellation ids */ ids?: (string[]|null); } /** Represents a BidiGenerateContentToolCallCancellation. */ class BidiGenerateContentToolCallCancellation implements IBidiGenerateContentToolCallCancellation { /** * Constructs a new BidiGenerateContentToolCallCancellation. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation); /** BidiGenerateContentToolCallCancellation ids. */ public ids: string[]; /** * Creates a new BidiGenerateContentToolCallCancellation instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolCallCancellation instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation; /** * Encodes the specified BidiGenerateContentToolCallCancellation message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation.verify|verify} messages. * @param message BidiGenerateContentToolCallCancellation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolCallCancellation message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation.verify|verify} messages. * @param message BidiGenerateContentToolCallCancellation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolCallCancellation message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolCallCancellation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation; /** * Decodes a BidiGenerateContentToolCallCancellation message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolCallCancellation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation; /** * Verifies a BidiGenerateContentToolCallCancellation message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolCallCancellation message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolCallCancellation */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation; /** * Creates a plain object from a BidiGenerateContentToolCallCancellation message. Also converts values to other types if specified. * @param message BidiGenerateContentToolCallCancellation * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentToolCallCancellation, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolCallCancellation to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolCallCancellation * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentServerMessage. */ interface IBidiGenerateContentServerMessage { /** BidiGenerateContentServerMessage setupComplete */ setupComplete?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete|null); /** BidiGenerateContentServerMessage serverContent */ serverContent?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent|null); /** BidiGenerateContentServerMessage toolCall */ toolCall?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall|null); /** BidiGenerateContentServerMessage toolCallCancellation */ toolCallCancellation?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation|null); } /** Represents a BidiGenerateContentServerMessage. */ class BidiGenerateContentServerMessage implements IBidiGenerateContentServerMessage { /** * Constructs a new BidiGenerateContentServerMessage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerMessage); /** BidiGenerateContentServerMessage setupComplete. */ public setupComplete?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentSetupComplete|null); /** BidiGenerateContentServerMessage serverContent. */ public serverContent?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerContent|null); /** BidiGenerateContentServerMessage toolCall. */ public toolCall?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCall|null); /** BidiGenerateContentServerMessage toolCallCancellation. */ public toolCallCancellation?: (google.ai.generativelanguage.v1alpha.IBidiGenerateContentToolCallCancellation|null); /** BidiGenerateContentServerMessage messageType. */ public messageType?: ("setupComplete"|"serverContent"|"toolCall"|"toolCallCancellation"); /** * Creates a new BidiGenerateContentServerMessage instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentServerMessage instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerMessage): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage; /** * Encodes the specified BidiGenerateContentServerMessage message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage.verify|verify} messages. * @param message BidiGenerateContentServerMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentServerMessage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage.verify|verify} messages. * @param message BidiGenerateContentServerMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBidiGenerateContentServerMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentServerMessage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentServerMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage; /** * Decodes a BidiGenerateContentServerMessage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentServerMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage; /** * Verifies a BidiGenerateContentServerMessage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentServerMessage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentServerMessage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage; /** * Creates a plain object from a BidiGenerateContentServerMessage message. Also converts values to other types if specified. * @param message BidiGenerateContentServerMessage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BidiGenerateContentServerMessage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentServerMessage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentServerMessage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Corpus. */ interface ICorpus { /** Corpus name */ name?: (string|null); /** Corpus displayName */ displayName?: (string|null); /** Corpus createTime */ createTime?: (google.protobuf.ITimestamp|null); /** Corpus updateTime */ updateTime?: (google.protobuf.ITimestamp|null); } /** Represents a Corpus. */ class Corpus implements ICorpus { /** * Constructs a new Corpus. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICorpus); /** Corpus name. */ public name: string; /** Corpus displayName. */ public displayName: string; /** Corpus createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** Corpus updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** * Creates a new Corpus instance using the specified properties. * @param [properties] Properties to set * @returns Corpus instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICorpus): google.ai.generativelanguage.v1alpha.Corpus; /** * Encodes the specified Corpus message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Corpus.verify|verify} messages. * @param message Corpus message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICorpus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Corpus message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Corpus.verify|verify} messages. * @param message Corpus message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICorpus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Corpus message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Corpus * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Corpus; /** * Decodes a Corpus message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Corpus * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Corpus; /** * Verifies a Corpus message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Corpus message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Corpus */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Corpus; /** * Creates a plain object from a Corpus message. Also converts values to other types if specified. * @param message Corpus * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Corpus, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Corpus to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Corpus * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Document. */ interface IDocument { /** Document name */ name?: (string|null); /** Document displayName */ displayName?: (string|null); /** Document customMetadata */ customMetadata?: (google.ai.generativelanguage.v1alpha.ICustomMetadata[]|null); /** Document updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** Document createTime */ createTime?: (google.protobuf.ITimestamp|null); } /** Represents a Document. */ class Document implements IDocument { /** * Constructs a new Document. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDocument); /** Document name. */ public name: string; /** Document displayName. */ public displayName: string; /** Document customMetadata. */ public customMetadata: google.ai.generativelanguage.v1alpha.ICustomMetadata[]; /** Document updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** Document createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** * Creates a new Document instance using the specified properties. * @param [properties] Properties to set * @returns Document instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDocument): google.ai.generativelanguage.v1alpha.Document; /** * Encodes the specified Document message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Document.verify|verify} messages. * @param message Document message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDocument, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Document message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Document.verify|verify} messages. * @param message Document message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDocument, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Document message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Document * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Document; /** * Decodes a Document message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Document * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Document; /** * Verifies a Document message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Document message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Document */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Document; /** * Creates a plain object from a Document message. Also converts values to other types if specified. * @param message Document * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Document, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Document to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Document * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a StringList. */ interface IStringList { /** StringList values */ values?: (string[]|null); } /** Represents a StringList. */ class StringList implements IStringList { /** * Constructs a new StringList. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IStringList); /** StringList values. */ public values: string[]; /** * Creates a new StringList instance using the specified properties. * @param [properties] Properties to set * @returns StringList instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IStringList): google.ai.generativelanguage.v1alpha.StringList; /** * Encodes the specified StringList message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.StringList.verify|verify} messages. * @param message StringList message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IStringList, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified StringList message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.StringList.verify|verify} messages. * @param message StringList message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IStringList, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a StringList message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns StringList * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.StringList; /** * Decodes a StringList message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns StringList * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.StringList; /** * Verifies a StringList message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a StringList message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns StringList */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.StringList; /** * Creates a plain object from a StringList message. Also converts values to other types if specified. * @param message StringList * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.StringList, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this StringList to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for StringList * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CustomMetadata. */ interface ICustomMetadata { /** CustomMetadata stringValue */ stringValue?: (string|null); /** CustomMetadata stringListValue */ stringListValue?: (google.ai.generativelanguage.v1alpha.IStringList|null); /** CustomMetadata numericValue */ numericValue?: (number|null); /** CustomMetadata key */ key?: (string|null); } /** Represents a CustomMetadata. */ class CustomMetadata implements ICustomMetadata { /** * Constructs a new CustomMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICustomMetadata); /** CustomMetadata stringValue. */ public stringValue?: (string|null); /** CustomMetadata stringListValue. */ public stringListValue?: (google.ai.generativelanguage.v1alpha.IStringList|null); /** CustomMetadata numericValue. */ public numericValue?: (number|null); /** CustomMetadata key. */ public key: string; /** CustomMetadata value. */ public value?: ("stringValue"|"stringListValue"|"numericValue"); /** * Creates a new CustomMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CustomMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICustomMetadata): google.ai.generativelanguage.v1alpha.CustomMetadata; /** * Encodes the specified CustomMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CustomMetadata.verify|verify} messages. * @param message CustomMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICustomMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CustomMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CustomMetadata.verify|verify} messages. * @param message CustomMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICustomMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CustomMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CustomMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CustomMetadata; /** * Decodes a CustomMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CustomMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CustomMetadata; /** * Verifies a CustomMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CustomMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CustomMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CustomMetadata; /** * Creates a plain object from a CustomMetadata message. Also converts values to other types if specified. * @param message CustomMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CustomMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CustomMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CustomMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MetadataFilter. */ interface IMetadataFilter { /** MetadataFilter key */ key?: (string|null); /** MetadataFilter conditions */ conditions?: (google.ai.generativelanguage.v1alpha.ICondition[]|null); } /** Represents a MetadataFilter. */ class MetadataFilter implements IMetadataFilter { /** * Constructs a new MetadataFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IMetadataFilter); /** MetadataFilter key. */ public key: string; /** MetadataFilter conditions. */ public conditions: google.ai.generativelanguage.v1alpha.ICondition[]; /** * Creates a new MetadataFilter instance using the specified properties. * @param [properties] Properties to set * @returns MetadataFilter instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IMetadataFilter): google.ai.generativelanguage.v1alpha.MetadataFilter; /** * Encodes the specified MetadataFilter message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.MetadataFilter.verify|verify} messages. * @param message MetadataFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IMetadataFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MetadataFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.MetadataFilter.verify|verify} messages. * @param message MetadataFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IMetadataFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MetadataFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MetadataFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.MetadataFilter; /** * Decodes a MetadataFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MetadataFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.MetadataFilter; /** * Verifies a MetadataFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MetadataFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MetadataFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.MetadataFilter; /** * Creates a plain object from a MetadataFilter message. Also converts values to other types if specified. * @param message MetadataFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.MetadataFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MetadataFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MetadataFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Condition. */ interface ICondition { /** Condition stringValue */ stringValue?: (string|null); /** Condition numericValue */ numericValue?: (number|null); /** Condition operation */ operation?: (google.ai.generativelanguage.v1alpha.Condition.Operator|keyof typeof google.ai.generativelanguage.v1alpha.Condition.Operator|null); } /** Represents a Condition. */ class Condition implements ICondition { /** * Constructs a new Condition. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICondition); /** Condition stringValue. */ public stringValue?: (string|null); /** Condition numericValue. */ public numericValue?: (number|null); /** Condition operation. */ public operation: (google.ai.generativelanguage.v1alpha.Condition.Operator|keyof typeof google.ai.generativelanguage.v1alpha.Condition.Operator); /** Condition value. */ public value?: ("stringValue"|"numericValue"); /** * Creates a new Condition instance using the specified properties. * @param [properties] Properties to set * @returns Condition instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICondition): google.ai.generativelanguage.v1alpha.Condition; /** * Encodes the specified Condition message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Condition.verify|verify} messages. * @param message Condition message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICondition, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Condition message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Condition.verify|verify} messages. * @param message Condition message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICondition, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Condition message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Condition * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Condition; /** * Decodes a Condition message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Condition * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Condition; /** * Verifies a Condition message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Condition message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Condition */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Condition; /** * Creates a plain object from a Condition message. Also converts values to other types if specified. * @param message Condition * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Condition, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Condition to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Condition * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Condition { /** Operator enum. */ enum Operator { OPERATOR_UNSPECIFIED = 0, LESS = 1, LESS_EQUAL = 2, EQUAL = 3, GREATER_EQUAL = 4, GREATER = 5, NOT_EQUAL = 6, INCLUDES = 7, EXCLUDES = 8 } } /** Properties of a Chunk. */ interface IChunk { /** Chunk name */ name?: (string|null); /** Chunk data */ data?: (google.ai.generativelanguage.v1alpha.IChunkData|null); /** Chunk customMetadata */ customMetadata?: (google.ai.generativelanguage.v1alpha.ICustomMetadata[]|null); /** Chunk createTime */ createTime?: (google.protobuf.ITimestamp|null); /** Chunk updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** Chunk state */ state?: (google.ai.generativelanguage.v1alpha.Chunk.State|keyof typeof google.ai.generativelanguage.v1alpha.Chunk.State|null); } /** Represents a Chunk. */ class Chunk implements IChunk { /** * Constructs a new Chunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IChunk); /** Chunk name. */ public name: string; /** Chunk data. */ public data?: (google.ai.generativelanguage.v1alpha.IChunkData|null); /** Chunk customMetadata. */ public customMetadata: google.ai.generativelanguage.v1alpha.ICustomMetadata[]; /** Chunk createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** Chunk updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** Chunk state. */ public state: (google.ai.generativelanguage.v1alpha.Chunk.State|keyof typeof google.ai.generativelanguage.v1alpha.Chunk.State); /** * Creates a new Chunk instance using the specified properties. * @param [properties] Properties to set * @returns Chunk instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IChunk): google.ai.generativelanguage.v1alpha.Chunk; /** * Encodes the specified Chunk message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Chunk.verify|verify} messages. * @param message Chunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Chunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Chunk.verify|verify} messages. * @param message Chunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Chunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Chunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Chunk; /** * Decodes a Chunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Chunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Chunk; /** * Verifies a Chunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Chunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Chunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Chunk; /** * Creates a plain object from a Chunk message. Also converts values to other types if specified. * @param message Chunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Chunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Chunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Chunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Chunk { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, STATE_PENDING_PROCESSING = 1, STATE_ACTIVE = 2, STATE_FAILED = 10 } } /** Properties of a ChunkData. */ interface IChunkData { /** ChunkData stringValue */ stringValue?: (string|null); } /** Represents a ChunkData. */ class ChunkData implements IChunkData { /** * Constructs a new ChunkData. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IChunkData); /** ChunkData stringValue. */ public stringValue?: (string|null); /** ChunkData data. */ public data?: "stringValue"; /** * Creates a new ChunkData instance using the specified properties. * @param [properties] Properties to set * @returns ChunkData instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IChunkData): google.ai.generativelanguage.v1alpha.ChunkData; /** * Encodes the specified ChunkData message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ChunkData.verify|verify} messages. * @param message ChunkData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IChunkData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ChunkData message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ChunkData.verify|verify} messages. * @param message ChunkData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IChunkData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ChunkData message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ChunkData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ChunkData; /** * Decodes a ChunkData message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ChunkData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ChunkData; /** * Verifies a ChunkData message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ChunkData message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ChunkData */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ChunkData; /** * Creates a plain object from a ChunkData message. Also converts values to other types if specified. * @param message ChunkData * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ChunkData, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ChunkData to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ChunkData * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Model. */ interface IModel { /** Model name */ name?: (string|null); /** Model baseModelId */ baseModelId?: (string|null); /** Model version */ version?: (string|null); /** Model displayName */ displayName?: (string|null); /** Model description */ description?: (string|null); /** Model inputTokenLimit */ inputTokenLimit?: (number|null); /** Model outputTokenLimit */ outputTokenLimit?: (number|null); /** Model supportedGenerationMethods */ supportedGenerationMethods?: (string[]|null); /** Model temperature */ temperature?: (number|null); /** Model maxTemperature */ maxTemperature?: (number|null); /** Model topP */ topP?: (number|null); /** Model topK */ topK?: (number|null); } /** Represents a Model. */ class Model implements IModel { /** * Constructs a new Model. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IModel); /** Model name. */ public name: string; /** Model baseModelId. */ public baseModelId: string; /** Model version. */ public version: string; /** Model displayName. */ public displayName: string; /** Model description. */ public description: string; /** Model inputTokenLimit. */ public inputTokenLimit: number; /** Model outputTokenLimit. */ public outputTokenLimit: number; /** Model supportedGenerationMethods. */ public supportedGenerationMethods: string[]; /** Model temperature. */ public temperature?: (number|null); /** Model maxTemperature. */ public maxTemperature?: (number|null); /** Model topP. */ public topP?: (number|null); /** Model topK. */ public topK?: (number|null); /** * Creates a new Model instance using the specified properties. * @param [properties] Properties to set * @returns Model instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IModel): google.ai.generativelanguage.v1alpha.Model; /** * Encodes the specified Model message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Model message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Model message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Model; /** * Decodes a Model message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Model; /** * Verifies a Model message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Model message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Model */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Model; /** * Creates a plain object from a Model message. Also converts values to other types if specified. * @param message Model * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Model, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Model to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Model * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a ModelService */ class ModelService extends $protobuf.rpc.Service { /** * Constructs a new ModelService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new ModelService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ModelService; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Model */ public getModel(request: google.ai.generativelanguage.v1alpha.IGetModelRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.GetModelCallback): void; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @returns Promise */ public getModel(request: google.ai.generativelanguage.v1alpha.IGetModelRequest): Promise; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListModelsResponse */ public listModels(request: google.ai.generativelanguage.v1alpha.IListModelsRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.ListModelsCallback): void; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @returns Promise */ public listModels(request: google.ai.generativelanguage.v1alpha.IListModelsRequest): Promise; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public getTunedModel(request: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.GetTunedModelCallback): void; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @returns Promise */ public getTunedModel(request: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest): Promise; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListTunedModelsResponse */ public listTunedModels(request: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.ListTunedModelsCallback): void; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @returns Promise */ public listTunedModels(request: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest): Promise; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public createTunedModel(request: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.CreateTunedModelCallback): void; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @returns Promise */ public createTunedModel(request: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest): Promise; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public updateTunedModel(request: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.UpdateTunedModelCallback): void; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @returns Promise */ public updateTunedModel(request: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest): Promise; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteTunedModel(request: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest, callback: google.ai.generativelanguage.v1alpha.ModelService.DeleteTunedModelCallback): void; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @returns Promise */ public deleteTunedModel(request: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest): Promise; } namespace ModelService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|getModel}. * @param error Error, if any * @param [response] Model */ type GetModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Model) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|listModels}. * @param error Error, if any * @param [response] ListModelsResponse */ type ListModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|getTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type GetTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|listTunedModels}. * @param error Error, if any * @param [response] ListTunedModelsResponse */ type ListTunedModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListTunedModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|createTunedModel}. * @param error Error, if any * @param [response] Operation */ type CreateTunedModelCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|updateTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type UpdateTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.ModelService|deleteTunedModel}. * @param error Error, if any * @param [response] Empty */ type DeleteTunedModelCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a GetModelRequest. */ interface IGetModelRequest { /** GetModelRequest name */ name?: (string|null); } /** Represents a GetModelRequest. */ class GetModelRequest implements IGetModelRequest { /** * Constructs a new GetModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetModelRequest); /** GetModelRequest name. */ public name: string; /** * Creates a new GetModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetModelRequest): google.ai.generativelanguage.v1alpha.GetModelRequest; /** * Encodes the specified GetModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetModelRequest; /** * Decodes a GetModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetModelRequest; /** * Verifies a GetModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetModelRequest; /** * Creates a plain object from a GetModelRequest message. Also converts values to other types if specified. * @param message GetModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsRequest. */ interface IListModelsRequest { /** ListModelsRequest pageSize */ pageSize?: (number|null); /** ListModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListModelsRequest. */ class ListModelsRequest implements IListModelsRequest { /** * Constructs a new ListModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListModelsRequest); /** ListModelsRequest pageSize. */ public pageSize: number; /** ListModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListModelsRequest): google.ai.generativelanguage.v1alpha.ListModelsRequest; /** * Encodes the specified ListModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListModelsRequest; /** * Decodes a ListModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListModelsRequest; /** * Verifies a ListModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListModelsRequest; /** * Creates a plain object from a ListModelsRequest message. Also converts values to other types if specified. * @param message ListModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsResponse. */ interface IListModelsResponse { /** ListModelsResponse models */ models?: (google.ai.generativelanguage.v1alpha.IModel[]|null); /** ListModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListModelsResponse. */ class ListModelsResponse implements IListModelsResponse { /** * Constructs a new ListModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListModelsResponse); /** ListModelsResponse models. */ public models: google.ai.generativelanguage.v1alpha.IModel[]; /** ListModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListModelsResponse): google.ai.generativelanguage.v1alpha.ListModelsResponse; /** * Encodes the specified ListModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListModelsResponse; /** * Decodes a ListModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListModelsResponse; /** * Verifies a ListModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListModelsResponse; /** * Creates a plain object from a ListModelsResponse message. Also converts values to other types if specified. * @param message ListModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetTunedModelRequest. */ interface IGetTunedModelRequest { /** GetTunedModelRequest name */ name?: (string|null); } /** Represents a GetTunedModelRequest. */ class GetTunedModelRequest implements IGetTunedModelRequest { /** * Constructs a new GetTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest); /** GetTunedModelRequest name. */ public name: string; /** * Creates a new GetTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest): google.ai.generativelanguage.v1alpha.GetTunedModelRequest; /** * Encodes the specified GetTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetTunedModelRequest; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetTunedModelRequest; /** * Verifies a GetTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetTunedModelRequest; /** * Creates a plain object from a GetTunedModelRequest message. Also converts values to other types if specified. * @param message GetTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsRequest. */ interface IListTunedModelsRequest { /** ListTunedModelsRequest pageSize */ pageSize?: (number|null); /** ListTunedModelsRequest pageToken */ pageToken?: (string|null); /** ListTunedModelsRequest filter */ filter?: (string|null); } /** Represents a ListTunedModelsRequest. */ class ListTunedModelsRequest implements IListTunedModelsRequest { /** * Constructs a new ListTunedModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest); /** ListTunedModelsRequest pageSize. */ public pageSize: number; /** ListTunedModelsRequest pageToken. */ public pageToken: string; /** ListTunedModelsRequest filter. */ public filter: string; /** * Creates a new ListTunedModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest): google.ai.generativelanguage.v1alpha.ListTunedModelsRequest; /** * Encodes the specified ListTunedModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListTunedModelsRequest; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListTunedModelsRequest; /** * Verifies a ListTunedModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListTunedModelsRequest; /** * Creates a plain object from a ListTunedModelsRequest message. Also converts values to other types if specified. * @param message ListTunedModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListTunedModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsResponse. */ interface IListTunedModelsResponse { /** ListTunedModelsResponse tunedModels */ tunedModels?: (google.ai.generativelanguage.v1alpha.ITunedModel[]|null); /** ListTunedModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListTunedModelsResponse. */ class ListTunedModelsResponse implements IListTunedModelsResponse { /** * Constructs a new ListTunedModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListTunedModelsResponse); /** ListTunedModelsResponse tunedModels. */ public tunedModels: google.ai.generativelanguage.v1alpha.ITunedModel[]; /** ListTunedModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListTunedModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListTunedModelsResponse): google.ai.generativelanguage.v1alpha.ListTunedModelsResponse; /** * Encodes the specified ListTunedModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListTunedModelsResponse; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListTunedModelsResponse; /** * Verifies a ListTunedModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListTunedModelsResponse; /** * Creates a plain object from a ListTunedModelsResponse message. Also converts values to other types if specified. * @param message ListTunedModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListTunedModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelRequest. */ interface ICreateTunedModelRequest { /** CreateTunedModelRequest tunedModelId */ tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1alpha.ITunedModel|null); } /** Represents a CreateTunedModelRequest. */ class CreateTunedModelRequest implements ICreateTunedModelRequest { /** * Constructs a new CreateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest); /** CreateTunedModelRequest tunedModelId. */ public tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1alpha.ITunedModel|null); /** * Creates a new CreateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest): google.ai.generativelanguage.v1alpha.CreateTunedModelRequest; /** * Encodes the specified CreateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateTunedModelRequest; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateTunedModelRequest; /** * Verifies a CreateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateTunedModelRequest; /** * Creates a plain object from a CreateTunedModelRequest message. Also converts values to other types if specified. * @param message CreateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelMetadata. */ interface ICreateTunedModelMetadata { /** CreateTunedModelMetadata tunedModel */ tunedModel?: (string|null); /** CreateTunedModelMetadata totalSteps */ totalSteps?: (number|null); /** CreateTunedModelMetadata completedSteps */ completedSteps?: (number|null); /** CreateTunedModelMetadata completedPercent */ completedPercent?: (number|null); /** CreateTunedModelMetadata snapshots */ snapshots?: (google.ai.generativelanguage.v1alpha.ITuningSnapshot[]|null); } /** Represents a CreateTunedModelMetadata. */ class CreateTunedModelMetadata implements ICreateTunedModelMetadata { /** * Constructs a new CreateTunedModelMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateTunedModelMetadata); /** CreateTunedModelMetadata tunedModel. */ public tunedModel: string; /** CreateTunedModelMetadata totalSteps. */ public totalSteps: number; /** CreateTunedModelMetadata completedSteps. */ public completedSteps: number; /** CreateTunedModelMetadata completedPercent. */ public completedPercent: number; /** CreateTunedModelMetadata snapshots. */ public snapshots: google.ai.generativelanguage.v1alpha.ITuningSnapshot[]; /** * Creates a new CreateTunedModelMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateTunedModelMetadata): google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata; /** * Encodes the specified CreateTunedModelMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata; /** * Verifies a CreateTunedModelMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata; /** * Creates a plain object from a CreateTunedModelMetadata message. Also converts values to other types if specified. * @param message CreateTunedModelMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateTunedModelMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateTunedModelRequest. */ interface IUpdateTunedModelRequest { /** UpdateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1alpha.ITunedModel|null); /** UpdateTunedModelRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateTunedModelRequest. */ class UpdateTunedModelRequest implements IUpdateTunedModelRequest { /** * Constructs a new UpdateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest); /** UpdateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1alpha.ITunedModel|null); /** UpdateTunedModelRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest): google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest; /** * Encodes the specified UpdateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest; /** * Verifies an UpdateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest; /** * Creates a plain object from an UpdateTunedModelRequest message. Also converts values to other types if specified. * @param message UpdateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteTunedModelRequest. */ interface IDeleteTunedModelRequest { /** DeleteTunedModelRequest name */ name?: (string|null); } /** Represents a DeleteTunedModelRequest. */ class DeleteTunedModelRequest implements IDeleteTunedModelRequest { /** * Constructs a new DeleteTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest); /** DeleteTunedModelRequest name. */ public name: string; /** * Creates a new DeleteTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest): google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest; /** * Encodes the specified DeleteTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest; /** * Verifies a DeleteTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest; /** * Creates a plain object from a DeleteTunedModelRequest message. Also converts values to other types if specified. * @param message DeleteTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TunedModel. */ interface ITunedModel { /** TunedModel tunedModelSource */ tunedModelSource?: (google.ai.generativelanguage.v1alpha.ITunedModelSource|null); /** TunedModel baseModel */ baseModel?: (string|null); /** TunedModel name */ name?: (string|null); /** TunedModel displayName */ displayName?: (string|null); /** TunedModel description */ description?: (string|null); /** TunedModel temperature */ temperature?: (number|null); /** TunedModel topP */ topP?: (number|null); /** TunedModel topK */ topK?: (number|null); /** TunedModel state */ state?: (google.ai.generativelanguage.v1alpha.TunedModel.State|keyof typeof google.ai.generativelanguage.v1alpha.TunedModel.State|null); /** TunedModel createTime */ createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask */ tuningTask?: (google.ai.generativelanguage.v1alpha.ITuningTask|null); /** TunedModel readerProjectNumbers */ readerProjectNumbers?: ((number|Long|string)[]|null); } /** Represents a TunedModel. */ class TunedModel implements ITunedModel { /** * Constructs a new TunedModel. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITunedModel); /** TunedModel tunedModelSource. */ public tunedModelSource?: (google.ai.generativelanguage.v1alpha.ITunedModelSource|null); /** TunedModel baseModel. */ public baseModel?: (string|null); /** TunedModel name. */ public name: string; /** TunedModel displayName. */ public displayName: string; /** TunedModel description. */ public description: string; /** TunedModel temperature. */ public temperature?: (number|null); /** TunedModel topP. */ public topP?: (number|null); /** TunedModel topK. */ public topK?: (number|null); /** TunedModel state. */ public state: (google.ai.generativelanguage.v1alpha.TunedModel.State|keyof typeof google.ai.generativelanguage.v1alpha.TunedModel.State); /** TunedModel createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask. */ public tuningTask?: (google.ai.generativelanguage.v1alpha.ITuningTask|null); /** TunedModel readerProjectNumbers. */ public readerProjectNumbers: (number|Long|string)[]; /** TunedModel sourceModel. */ public sourceModel?: ("tunedModelSource"|"baseModel"); /** * Creates a new TunedModel instance using the specified properties. * @param [properties] Properties to set * @returns TunedModel instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITunedModel): google.ai.generativelanguage.v1alpha.TunedModel; /** * Encodes the specified TunedModel message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModel message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModel message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TunedModel; /** * Decodes a TunedModel message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TunedModel; /** * Verifies a TunedModel message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModel message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModel */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TunedModel; /** * Creates a plain object from a TunedModel message. Also converts values to other types if specified. * @param message TunedModel * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TunedModel, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModel to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModel * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace TunedModel { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, CREATING = 1, ACTIVE = 2, FAILED = 3 } } /** Properties of a TunedModelSource. */ interface ITunedModelSource { /** TunedModelSource tunedModel */ tunedModel?: (string|null); /** TunedModelSource baseModel */ baseModel?: (string|null); } /** Represents a TunedModelSource. */ class TunedModelSource implements ITunedModelSource { /** * Constructs a new TunedModelSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITunedModelSource); /** TunedModelSource tunedModel. */ public tunedModel: string; /** TunedModelSource baseModel. */ public baseModel: string; /** * Creates a new TunedModelSource instance using the specified properties. * @param [properties] Properties to set * @returns TunedModelSource instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITunedModelSource): google.ai.generativelanguage.v1alpha.TunedModelSource; /** * Encodes the specified TunedModelSource message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModelSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModelSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TunedModelSource; /** * Decodes a TunedModelSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TunedModelSource; /** * Verifies a TunedModelSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModelSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModelSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TunedModelSource; /** * Creates a plain object from a TunedModelSource message. Also converts values to other types if specified. * @param message TunedModelSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TunedModelSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModelSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModelSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningTask. */ interface ITuningTask { /** TuningTask startTime */ startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime */ completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots */ snapshots?: (google.ai.generativelanguage.v1alpha.ITuningSnapshot[]|null); /** TuningTask trainingData */ trainingData?: (google.ai.generativelanguage.v1alpha.IDataset|null); /** TuningTask hyperparameters */ hyperparameters?: (google.ai.generativelanguage.v1alpha.IHyperparameters|null); } /** Represents a TuningTask. */ class TuningTask implements ITuningTask { /** * Constructs a new TuningTask. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningTask); /** TuningTask startTime. */ public startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime. */ public completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots. */ public snapshots: google.ai.generativelanguage.v1alpha.ITuningSnapshot[]; /** TuningTask trainingData. */ public trainingData?: (google.ai.generativelanguage.v1alpha.IDataset|null); /** TuningTask hyperparameters. */ public hyperparameters?: (google.ai.generativelanguage.v1alpha.IHyperparameters|null); /** * Creates a new TuningTask instance using the specified properties. * @param [properties] Properties to set * @returns TuningTask instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningTask): google.ai.generativelanguage.v1alpha.TuningTask; /** * Encodes the specified TuningTask message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningTask message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningTask message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningTask; /** * Decodes a TuningTask message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningTask; /** * Verifies a TuningTask message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningTask message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningTask */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningTask; /** * Creates a plain object from a TuningTask message. Also converts values to other types if specified. * @param message TuningTask * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningTask, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningTask to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningTask * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Hyperparameters. */ interface IHyperparameters { /** Hyperparameters learningRate */ learningRate?: (number|null); /** Hyperparameters learningRateMultiplier */ learningRateMultiplier?: (number|null); /** Hyperparameters epochCount */ epochCount?: (number|null); /** Hyperparameters batchSize */ batchSize?: (number|null); } /** Represents a Hyperparameters. */ class Hyperparameters implements IHyperparameters { /** * Constructs a new Hyperparameters. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IHyperparameters); /** Hyperparameters learningRate. */ public learningRate?: (number|null); /** Hyperparameters learningRateMultiplier. */ public learningRateMultiplier?: (number|null); /** Hyperparameters epochCount. */ public epochCount?: (number|null); /** Hyperparameters batchSize. */ public batchSize?: (number|null); /** Hyperparameters learningRateOption. */ public learningRateOption?: ("learningRate"|"learningRateMultiplier"); /** * Creates a new Hyperparameters instance using the specified properties. * @param [properties] Properties to set * @returns Hyperparameters instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IHyperparameters): google.ai.generativelanguage.v1alpha.Hyperparameters; /** * Encodes the specified Hyperparameters message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Hyperparameters message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Hyperparameters message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Hyperparameters; /** * Decodes a Hyperparameters message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Hyperparameters; /** * Verifies a Hyperparameters message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Hyperparameters message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Hyperparameters */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Hyperparameters; /** * Creates a plain object from a Hyperparameters message. Also converts values to other types if specified. * @param message Hyperparameters * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Hyperparameters, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Hyperparameters to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Hyperparameters * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Dataset. */ interface IDataset { /** Dataset examples */ examples?: (google.ai.generativelanguage.v1alpha.ITuningExamples|null); } /** Represents a Dataset. */ class Dataset implements IDataset { /** * Constructs a new Dataset. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDataset); /** Dataset examples. */ public examples?: (google.ai.generativelanguage.v1alpha.ITuningExamples|null); /** Dataset dataset. */ public dataset?: "examples"; /** * Creates a new Dataset instance using the specified properties. * @param [properties] Properties to set * @returns Dataset instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDataset): google.ai.generativelanguage.v1alpha.Dataset; /** * Encodes the specified Dataset message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Dataset message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Dataset message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Dataset; /** * Decodes a Dataset message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Dataset; /** * Verifies a Dataset message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Dataset message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Dataset */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Dataset; /** * Creates a plain object from a Dataset message. Also converts values to other types if specified. * @param message Dataset * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Dataset, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Dataset to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Dataset * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExamples. */ interface ITuningExamples { /** TuningExamples examples */ examples?: (google.ai.generativelanguage.v1alpha.ITuningExample[]|null); /** TuningExamples multiturnExamples */ multiturnExamples?: (google.ai.generativelanguage.v1alpha.ITuningMultiturnExample[]|null); } /** Represents a TuningExamples. */ class TuningExamples implements ITuningExamples { /** * Constructs a new TuningExamples. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningExamples); /** TuningExamples examples. */ public examples: google.ai.generativelanguage.v1alpha.ITuningExample[]; /** TuningExamples multiturnExamples. */ public multiturnExamples: google.ai.generativelanguage.v1alpha.ITuningMultiturnExample[]; /** * Creates a new TuningExamples instance using the specified properties. * @param [properties] Properties to set * @returns TuningExamples instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningExamples): google.ai.generativelanguage.v1alpha.TuningExamples; /** * Encodes the specified TuningExamples message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExamples message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExamples message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningExamples; /** * Decodes a TuningExamples message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningExamples; /** * Verifies a TuningExamples message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExamples message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExamples */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningExamples; /** * Creates a plain object from a TuningExamples message. Also converts values to other types if specified. * @param message TuningExamples * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningExamples, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExamples to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExamples * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningPart. */ interface ITuningPart { /** TuningPart text */ text?: (string|null); } /** Represents a TuningPart. */ class TuningPart implements ITuningPart { /** * Constructs a new TuningPart. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningPart); /** TuningPart text. */ public text?: (string|null); /** TuningPart data. */ public data?: "text"; /** * Creates a new TuningPart instance using the specified properties. * @param [properties] Properties to set * @returns TuningPart instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningPart): google.ai.generativelanguage.v1alpha.TuningPart; /** * Encodes the specified TuningPart message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningPart.verify|verify} messages. * @param message TuningPart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningPart message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningPart.verify|verify} messages. * @param message TuningPart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningPart message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningPart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningPart; /** * Decodes a TuningPart message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningPart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningPart; /** * Verifies a TuningPart message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningPart message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningPart */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningPart; /** * Creates a plain object from a TuningPart message. Also converts values to other types if specified. * @param message TuningPart * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningPart, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningPart to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningPart * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningContent. */ interface ITuningContent { /** TuningContent parts */ parts?: (google.ai.generativelanguage.v1alpha.ITuningPart[]|null); /** TuningContent role */ role?: (string|null); } /** Represents a TuningContent. */ class TuningContent implements ITuningContent { /** * Constructs a new TuningContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningContent); /** TuningContent parts. */ public parts: google.ai.generativelanguage.v1alpha.ITuningPart[]; /** TuningContent role. */ public role: string; /** * Creates a new TuningContent instance using the specified properties. * @param [properties] Properties to set * @returns TuningContent instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningContent): google.ai.generativelanguage.v1alpha.TuningContent; /** * Encodes the specified TuningContent message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningContent.verify|verify} messages. * @param message TuningContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningContent.verify|verify} messages. * @param message TuningContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningContent; /** * Decodes a TuningContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningContent; /** * Verifies a TuningContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningContent; /** * Creates a plain object from a TuningContent message. Also converts values to other types if specified. * @param message TuningContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningMultiturnExample. */ interface ITuningMultiturnExample { /** TuningMultiturnExample systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1alpha.ITuningContent|null); /** TuningMultiturnExample contents */ contents?: (google.ai.generativelanguage.v1alpha.ITuningContent[]|null); } /** Represents a TuningMultiturnExample. */ class TuningMultiturnExample implements ITuningMultiturnExample { /** * Constructs a new TuningMultiturnExample. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningMultiturnExample); /** TuningMultiturnExample systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1alpha.ITuningContent|null); /** TuningMultiturnExample contents. */ public contents: google.ai.generativelanguage.v1alpha.ITuningContent[]; /** * Creates a new TuningMultiturnExample instance using the specified properties. * @param [properties] Properties to set * @returns TuningMultiturnExample instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningMultiturnExample): google.ai.generativelanguage.v1alpha.TuningMultiturnExample; /** * Encodes the specified TuningMultiturnExample message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningMultiturnExample.verify|verify} messages. * @param message TuningMultiturnExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningMultiturnExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningMultiturnExample message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningMultiturnExample.verify|verify} messages. * @param message TuningMultiturnExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningMultiturnExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningMultiturnExample message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningMultiturnExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningMultiturnExample; /** * Decodes a TuningMultiturnExample message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningMultiturnExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningMultiturnExample; /** * Verifies a TuningMultiturnExample message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningMultiturnExample message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningMultiturnExample */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningMultiturnExample; /** * Creates a plain object from a TuningMultiturnExample message. Also converts values to other types if specified. * @param message TuningMultiturnExample * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningMultiturnExample, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningMultiturnExample to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningMultiturnExample * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExample. */ interface ITuningExample { /** TuningExample textInput */ textInput?: (string|null); /** TuningExample output */ output?: (string|null); } /** Represents a TuningExample. */ class TuningExample implements ITuningExample { /** * Constructs a new TuningExample. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningExample); /** TuningExample textInput. */ public textInput?: (string|null); /** TuningExample output. */ public output: string; /** TuningExample modelInput. */ public modelInput?: "textInput"; /** * Creates a new TuningExample instance using the specified properties. * @param [properties] Properties to set * @returns TuningExample instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningExample): google.ai.generativelanguage.v1alpha.TuningExample; /** * Encodes the specified TuningExample message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExample message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExample message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningExample; /** * Decodes a TuningExample message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningExample; /** * Verifies a TuningExample message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExample message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExample */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningExample; /** * Creates a plain object from a TuningExample message. Also converts values to other types if specified. * @param message TuningExample * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningExample, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExample to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExample * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningSnapshot. */ interface ITuningSnapshot { /** TuningSnapshot step */ step?: (number|null); /** TuningSnapshot epoch */ epoch?: (number|null); /** TuningSnapshot meanLoss */ meanLoss?: (number|null); /** TuningSnapshot computeTime */ computeTime?: (google.protobuf.ITimestamp|null); } /** Represents a TuningSnapshot. */ class TuningSnapshot implements ITuningSnapshot { /** * Constructs a new TuningSnapshot. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITuningSnapshot); /** TuningSnapshot step. */ public step: number; /** TuningSnapshot epoch. */ public epoch: number; /** TuningSnapshot meanLoss. */ public meanLoss: number; /** TuningSnapshot computeTime. */ public computeTime?: (google.protobuf.ITimestamp|null); /** * Creates a new TuningSnapshot instance using the specified properties. * @param [properties] Properties to set * @returns TuningSnapshot instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITuningSnapshot): google.ai.generativelanguage.v1alpha.TuningSnapshot; /** * Encodes the specified TuningSnapshot message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningSnapshot message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningSnapshot message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TuningSnapshot; /** * Decodes a TuningSnapshot message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TuningSnapshot; /** * Verifies a TuningSnapshot message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningSnapshot message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningSnapshot */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TuningSnapshot; /** * Creates a plain object from a TuningSnapshot message. Also converts values to other types if specified. * @param message TuningSnapshot * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TuningSnapshot, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningSnapshot to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningSnapshot * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Permission. */ interface IPermission { /** Permission name */ name?: (string|null); /** Permission granteeType */ granteeType?: (google.ai.generativelanguage.v1alpha.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1alpha.Permission.GranteeType|null); /** Permission emailAddress */ emailAddress?: (string|null); /** Permission role */ role?: (google.ai.generativelanguage.v1alpha.Permission.Role|keyof typeof google.ai.generativelanguage.v1alpha.Permission.Role|null); } /** Represents a Permission. */ class Permission implements IPermission { /** * Constructs a new Permission. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IPermission); /** Permission name. */ public name: string; /** Permission granteeType. */ public granteeType?: (google.ai.generativelanguage.v1alpha.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1alpha.Permission.GranteeType|null); /** Permission emailAddress. */ public emailAddress?: (string|null); /** Permission role. */ public role?: (google.ai.generativelanguage.v1alpha.Permission.Role|keyof typeof google.ai.generativelanguage.v1alpha.Permission.Role|null); /** * Creates a new Permission instance using the specified properties. * @param [properties] Properties to set * @returns Permission instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IPermission): google.ai.generativelanguage.v1alpha.Permission; /** * Encodes the specified Permission message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Permission message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Permission message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Permission; /** * Decodes a Permission message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Permission; /** * Verifies a Permission message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Permission message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Permission */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Permission; /** * Creates a plain object from a Permission message. Also converts values to other types if specified. * @param message Permission * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Permission, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Permission to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Permission * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Permission { /** GranteeType enum. */ enum GranteeType { GRANTEE_TYPE_UNSPECIFIED = 0, USER = 1, GROUP = 2, EVERYONE = 3 } /** Role enum. */ enum Role { ROLE_UNSPECIFIED = 0, OWNER = 1, WRITER = 2, READER = 3 } } /** Represents a PermissionService */ class PermissionService extends $protobuf.rpc.Service { /** * Constructs a new PermissionService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new PermissionService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): PermissionService; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public createPermission(request: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.CreatePermissionCallback): void; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @returns Promise */ public createPermission(request: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest): Promise; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public getPermission(request: google.ai.generativelanguage.v1alpha.IGetPermissionRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.GetPermissionCallback): void; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @returns Promise */ public getPermission(request: google.ai.generativelanguage.v1alpha.IGetPermissionRequest): Promise; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListPermissionsResponse */ public listPermissions(request: google.ai.generativelanguage.v1alpha.IListPermissionsRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.ListPermissionsCallback): void; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @returns Promise */ public listPermissions(request: google.ai.generativelanguage.v1alpha.IListPermissionsRequest): Promise; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public updatePermission(request: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.UpdatePermissionCallback): void; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @returns Promise */ public updatePermission(request: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest): Promise; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deletePermission(request: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.DeletePermissionCallback): void; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @returns Promise */ public deletePermission(request: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest): Promise; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @param callback Node-style callback called with the error, if any, and TransferOwnershipResponse */ public transferOwnership(request: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest, callback: google.ai.generativelanguage.v1alpha.PermissionService.TransferOwnershipCallback): void; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @returns Promise */ public transferOwnership(request: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest): Promise; } namespace PermissionService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|createPermission}. * @param error Error, if any * @param [response] Permission */ type CreatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|getPermission}. * @param error Error, if any * @param [response] Permission */ type GetPermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|listPermissions}. * @param error Error, if any * @param [response] ListPermissionsResponse */ type ListPermissionsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListPermissionsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|updatePermission}. * @param error Error, if any * @param [response] Permission */ type UpdatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|deletePermission}. * @param error Error, if any * @param [response] Empty */ type DeletePermissionCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PermissionService|transferOwnership}. * @param error Error, if any * @param [response] TransferOwnershipResponse */ type TransferOwnershipCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.TransferOwnershipResponse) => void; } /** Properties of a CreatePermissionRequest. */ interface ICreatePermissionRequest { /** CreatePermissionRequest parent */ parent?: (string|null); /** CreatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1alpha.IPermission|null); } /** Represents a CreatePermissionRequest. */ class CreatePermissionRequest implements ICreatePermissionRequest { /** * Constructs a new CreatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest); /** CreatePermissionRequest parent. */ public parent: string; /** CreatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1alpha.IPermission|null); /** * Creates a new CreatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest): google.ai.generativelanguage.v1alpha.CreatePermissionRequest; /** * Encodes the specified CreatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreatePermissionRequest; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreatePermissionRequest; /** * Verifies a CreatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreatePermissionRequest; /** * Creates a plain object from a CreatePermissionRequest message. Also converts values to other types if specified. * @param message CreatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetPermissionRequest. */ interface IGetPermissionRequest { /** GetPermissionRequest name */ name?: (string|null); } /** Represents a GetPermissionRequest. */ class GetPermissionRequest implements IGetPermissionRequest { /** * Constructs a new GetPermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetPermissionRequest); /** GetPermissionRequest name. */ public name: string; /** * Creates a new GetPermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetPermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetPermissionRequest): google.ai.generativelanguage.v1alpha.GetPermissionRequest; /** * Encodes the specified GetPermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetPermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetPermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetPermissionRequest; /** * Decodes a GetPermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetPermissionRequest; /** * Verifies a GetPermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetPermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetPermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetPermissionRequest; /** * Creates a plain object from a GetPermissionRequest message. Also converts values to other types if specified. * @param message GetPermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetPermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetPermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetPermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsRequest. */ interface IListPermissionsRequest { /** ListPermissionsRequest parent */ parent?: (string|null); /** ListPermissionsRequest pageSize */ pageSize?: (number|null); /** ListPermissionsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListPermissionsRequest. */ class ListPermissionsRequest implements IListPermissionsRequest { /** * Constructs a new ListPermissionsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListPermissionsRequest); /** ListPermissionsRequest parent. */ public parent: string; /** ListPermissionsRequest pageSize. */ public pageSize: number; /** ListPermissionsRequest pageToken. */ public pageToken: string; /** * Creates a new ListPermissionsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListPermissionsRequest): google.ai.generativelanguage.v1alpha.ListPermissionsRequest; /** * Encodes the specified ListPermissionsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListPermissionsRequest; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListPermissionsRequest; /** * Verifies a ListPermissionsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListPermissionsRequest; /** * Creates a plain object from a ListPermissionsRequest message. Also converts values to other types if specified. * @param message ListPermissionsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListPermissionsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsResponse. */ interface IListPermissionsResponse { /** ListPermissionsResponse permissions */ permissions?: (google.ai.generativelanguage.v1alpha.IPermission[]|null); /** ListPermissionsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListPermissionsResponse. */ class ListPermissionsResponse implements IListPermissionsResponse { /** * Constructs a new ListPermissionsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListPermissionsResponse); /** ListPermissionsResponse permissions. */ public permissions: google.ai.generativelanguage.v1alpha.IPermission[]; /** ListPermissionsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListPermissionsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListPermissionsResponse): google.ai.generativelanguage.v1alpha.ListPermissionsResponse; /** * Encodes the specified ListPermissionsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListPermissionsResponse; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListPermissionsResponse; /** * Verifies a ListPermissionsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListPermissionsResponse; /** * Creates a plain object from a ListPermissionsResponse message. Also converts values to other types if specified. * @param message ListPermissionsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListPermissionsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdatePermissionRequest. */ interface IUpdatePermissionRequest { /** UpdatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1alpha.IPermission|null); /** UpdatePermissionRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdatePermissionRequest. */ class UpdatePermissionRequest implements IUpdatePermissionRequest { /** * Constructs a new UpdatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest); /** UpdatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1alpha.IPermission|null); /** UpdatePermissionRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest): google.ai.generativelanguage.v1alpha.UpdatePermissionRequest; /** * Encodes the specified UpdatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdatePermissionRequest; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdatePermissionRequest; /** * Verifies an UpdatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdatePermissionRequest; /** * Creates a plain object from an UpdatePermissionRequest message. Also converts values to other types if specified. * @param message UpdatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeletePermissionRequest. */ interface IDeletePermissionRequest { /** DeletePermissionRequest name */ name?: (string|null); } /** Represents a DeletePermissionRequest. */ class DeletePermissionRequest implements IDeletePermissionRequest { /** * Constructs a new DeletePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest); /** DeletePermissionRequest name. */ public name: string; /** * Creates a new DeletePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeletePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest): google.ai.generativelanguage.v1alpha.DeletePermissionRequest; /** * Encodes the specified DeletePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeletePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeletePermissionRequest; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeletePermissionRequest; /** * Verifies a DeletePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeletePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeletePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeletePermissionRequest; /** * Creates a plain object from a DeletePermissionRequest message. Also converts values to other types if specified. * @param message DeletePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeletePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeletePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeletePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipRequest. */ interface ITransferOwnershipRequest { /** TransferOwnershipRequest name */ name?: (string|null); /** TransferOwnershipRequest emailAddress */ emailAddress?: (string|null); } /** Represents a TransferOwnershipRequest. */ class TransferOwnershipRequest implements ITransferOwnershipRequest { /** * Constructs a new TransferOwnershipRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest); /** TransferOwnershipRequest name. */ public name: string; /** TransferOwnershipRequest emailAddress. */ public emailAddress: string; /** * Creates a new TransferOwnershipRequest instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest): google.ai.generativelanguage.v1alpha.TransferOwnershipRequest; /** * Encodes the specified TransferOwnershipRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TransferOwnershipRequest; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TransferOwnershipRequest; /** * Verifies a TransferOwnershipRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TransferOwnershipRequest; /** * Creates a plain object from a TransferOwnershipRequest message. Also converts values to other types if specified. * @param message TransferOwnershipRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TransferOwnershipRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipResponse. */ interface ITransferOwnershipResponse { } /** Represents a TransferOwnershipResponse. */ class TransferOwnershipResponse implements ITransferOwnershipResponse { /** * Constructs a new TransferOwnershipResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITransferOwnershipResponse); /** * Creates a new TransferOwnershipResponse instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITransferOwnershipResponse): google.ai.generativelanguage.v1alpha.TransferOwnershipResponse; /** * Encodes the specified TransferOwnershipResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TransferOwnershipResponse; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TransferOwnershipResponse; /** * Verifies a TransferOwnershipResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TransferOwnershipResponse; /** * Creates a plain object from a TransferOwnershipResponse message. Also converts values to other types if specified. * @param message TransferOwnershipResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TransferOwnershipResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a PredictionService */ class PredictionService extends $protobuf.rpc.Service { /** * Constructs a new PredictionService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new PredictionService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): PredictionService; /** * Calls Predict. * @param request PredictRequest message or plain object * @param callback Node-style callback called with the error, if any, and PredictResponse */ public predict(request: google.ai.generativelanguage.v1alpha.IPredictRequest, callback: google.ai.generativelanguage.v1alpha.PredictionService.PredictCallback): void; /** * Calls Predict. * @param request PredictRequest message or plain object * @returns Promise */ public predict(request: google.ai.generativelanguage.v1alpha.IPredictRequest): Promise; } namespace PredictionService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.PredictionService|predict}. * @param error Error, if any * @param [response] PredictResponse */ type PredictCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.PredictResponse) => void; } /** Properties of a PredictRequest. */ interface IPredictRequest { /** PredictRequest model */ model?: (string|null); /** PredictRequest instances */ instances?: (google.protobuf.IValue[]|null); /** PredictRequest parameters */ parameters?: (google.protobuf.IValue|null); } /** Represents a PredictRequest. */ class PredictRequest implements IPredictRequest { /** * Constructs a new PredictRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IPredictRequest); /** PredictRequest model. */ public model: string; /** PredictRequest instances. */ public instances: google.protobuf.IValue[]; /** PredictRequest parameters. */ public parameters?: (google.protobuf.IValue|null); /** * Creates a new PredictRequest instance using the specified properties. * @param [properties] Properties to set * @returns PredictRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IPredictRequest): google.ai.generativelanguage.v1alpha.PredictRequest; /** * Encodes the specified PredictRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PredictRequest.verify|verify} messages. * @param message PredictRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IPredictRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PredictRequest.verify|verify} messages. * @param message PredictRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IPredictRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.PredictRequest; /** * Decodes a PredictRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.PredictRequest; /** * Verifies a PredictRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.PredictRequest; /** * Creates a plain object from a PredictRequest message. Also converts values to other types if specified. * @param message PredictRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.PredictRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictResponse. */ interface IPredictResponse { /** PredictResponse predictions */ predictions?: (google.protobuf.IValue[]|null); } /** Represents a PredictResponse. */ class PredictResponse implements IPredictResponse { /** * Constructs a new PredictResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IPredictResponse); /** PredictResponse predictions. */ public predictions: google.protobuf.IValue[]; /** * Creates a new PredictResponse instance using the specified properties. * @param [properties] Properties to set * @returns PredictResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IPredictResponse): google.ai.generativelanguage.v1alpha.PredictResponse; /** * Encodes the specified PredictResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PredictResponse.verify|verify} messages. * @param message PredictResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IPredictResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.PredictResponse.verify|verify} messages. * @param message PredictResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IPredictResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.PredictResponse; /** * Decodes a PredictResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.PredictResponse; /** * Verifies a PredictResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.PredictResponse; /** * Creates a plain object from a PredictResponse message. Also converts values to other types if specified. * @param message PredictResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.PredictResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a RetrieverService */ class RetrieverService extends $protobuf.rpc.Service { /** * Constructs a new RetrieverService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new RetrieverService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): RetrieverService; /** * Calls CreateCorpus. * @param request CreateCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public createCorpus(request: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.CreateCorpusCallback): void; /** * Calls CreateCorpus. * @param request CreateCorpusRequest message or plain object * @returns Promise */ public createCorpus(request: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest): Promise; /** * Calls GetCorpus. * @param request GetCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public getCorpus(request: google.ai.generativelanguage.v1alpha.IGetCorpusRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.GetCorpusCallback): void; /** * Calls GetCorpus. * @param request GetCorpusRequest message or plain object * @returns Promise */ public getCorpus(request: google.ai.generativelanguage.v1alpha.IGetCorpusRequest): Promise; /** * Calls UpdateCorpus. * @param request UpdateCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public updateCorpus(request: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.UpdateCorpusCallback): void; /** * Calls UpdateCorpus. * @param request UpdateCorpusRequest message or plain object * @returns Promise */ public updateCorpus(request: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest): Promise; /** * Calls DeleteCorpus. * @param request DeleteCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteCorpus(request: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.DeleteCorpusCallback): void; /** * Calls DeleteCorpus. * @param request DeleteCorpusRequest message or plain object * @returns Promise */ public deleteCorpus(request: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest): Promise; /** * Calls ListCorpora. * @param request ListCorporaRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListCorporaResponse */ public listCorpora(request: google.ai.generativelanguage.v1alpha.IListCorporaRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.ListCorporaCallback): void; /** * Calls ListCorpora. * @param request ListCorporaRequest message or plain object * @returns Promise */ public listCorpora(request: google.ai.generativelanguage.v1alpha.IListCorporaRequest): Promise; /** * Calls QueryCorpus. * @param request QueryCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and QueryCorpusResponse */ public queryCorpus(request: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.QueryCorpusCallback): void; /** * Calls QueryCorpus. * @param request QueryCorpusRequest message or plain object * @returns Promise */ public queryCorpus(request: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest): Promise; /** * Calls CreateDocument. * @param request CreateDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public createDocument(request: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.CreateDocumentCallback): void; /** * Calls CreateDocument. * @param request CreateDocumentRequest message or plain object * @returns Promise */ public createDocument(request: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest): Promise; /** * Calls GetDocument. * @param request GetDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public getDocument(request: google.ai.generativelanguage.v1alpha.IGetDocumentRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.GetDocumentCallback): void; /** * Calls GetDocument. * @param request GetDocumentRequest message or plain object * @returns Promise */ public getDocument(request: google.ai.generativelanguage.v1alpha.IGetDocumentRequest): Promise; /** * Calls UpdateDocument. * @param request UpdateDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public updateDocument(request: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.UpdateDocumentCallback): void; /** * Calls UpdateDocument. * @param request UpdateDocumentRequest message or plain object * @returns Promise */ public updateDocument(request: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest): Promise; /** * Calls DeleteDocument. * @param request DeleteDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteDocument(request: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.DeleteDocumentCallback): void; /** * Calls DeleteDocument. * @param request DeleteDocumentRequest message or plain object * @returns Promise */ public deleteDocument(request: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest): Promise; /** * Calls ListDocuments. * @param request ListDocumentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListDocumentsResponse */ public listDocuments(request: google.ai.generativelanguage.v1alpha.IListDocumentsRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.ListDocumentsCallback): void; /** * Calls ListDocuments. * @param request ListDocumentsRequest message or plain object * @returns Promise */ public listDocuments(request: google.ai.generativelanguage.v1alpha.IListDocumentsRequest): Promise; /** * Calls QueryDocument. * @param request QueryDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and QueryDocumentResponse */ public queryDocument(request: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.QueryDocumentCallback): void; /** * Calls QueryDocument. * @param request QueryDocumentRequest message or plain object * @returns Promise */ public queryDocument(request: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest): Promise; /** * Calls CreateChunk. * @param request CreateChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public createChunk(request: google.ai.generativelanguage.v1alpha.ICreateChunkRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.CreateChunkCallback): void; /** * Calls CreateChunk. * @param request CreateChunkRequest message or plain object * @returns Promise */ public createChunk(request: google.ai.generativelanguage.v1alpha.ICreateChunkRequest): Promise; /** * Calls BatchCreateChunks. * @param request BatchCreateChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchCreateChunksResponse */ public batchCreateChunks(request: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.BatchCreateChunksCallback): void; /** * Calls BatchCreateChunks. * @param request BatchCreateChunksRequest message or plain object * @returns Promise */ public batchCreateChunks(request: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest): Promise; /** * Calls GetChunk. * @param request GetChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public getChunk(request: google.ai.generativelanguage.v1alpha.IGetChunkRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.GetChunkCallback): void; /** * Calls GetChunk. * @param request GetChunkRequest message or plain object * @returns Promise */ public getChunk(request: google.ai.generativelanguage.v1alpha.IGetChunkRequest): Promise; /** * Calls UpdateChunk. * @param request UpdateChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public updateChunk(request: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.UpdateChunkCallback): void; /** * Calls UpdateChunk. * @param request UpdateChunkRequest message or plain object * @returns Promise */ public updateChunk(request: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest): Promise; /** * Calls BatchUpdateChunks. * @param request BatchUpdateChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchUpdateChunksResponse */ public batchUpdateChunks(request: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.BatchUpdateChunksCallback): void; /** * Calls BatchUpdateChunks. * @param request BatchUpdateChunksRequest message or plain object * @returns Promise */ public batchUpdateChunks(request: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest): Promise; /** * Calls DeleteChunk. * @param request DeleteChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteChunk(request: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.DeleteChunkCallback): void; /** * Calls DeleteChunk. * @param request DeleteChunkRequest message or plain object * @returns Promise */ public deleteChunk(request: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest): Promise; /** * Calls BatchDeleteChunks. * @param request BatchDeleteChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public batchDeleteChunks(request: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.BatchDeleteChunksCallback): void; /** * Calls BatchDeleteChunks. * @param request BatchDeleteChunksRequest message or plain object * @returns Promise */ public batchDeleteChunks(request: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest): Promise; /** * Calls ListChunks. * @param request ListChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListChunksResponse */ public listChunks(request: google.ai.generativelanguage.v1alpha.IListChunksRequest, callback: google.ai.generativelanguage.v1alpha.RetrieverService.ListChunksCallback): void; /** * Calls ListChunks. * @param request ListChunksRequest message or plain object * @returns Promise */ public listChunks(request: google.ai.generativelanguage.v1alpha.IListChunksRequest): Promise; } namespace RetrieverService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|createCorpus}. * @param error Error, if any * @param [response] Corpus */ type CreateCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|getCorpus}. * @param error Error, if any * @param [response] Corpus */ type GetCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|updateCorpus}. * @param error Error, if any * @param [response] Corpus */ type UpdateCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|deleteCorpus}. * @param error Error, if any * @param [response] Empty */ type DeleteCorpusCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|listCorpora}. * @param error Error, if any * @param [response] ListCorporaResponse */ type ListCorporaCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListCorporaResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|queryCorpus}. * @param error Error, if any * @param [response] QueryCorpusResponse */ type QueryCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.QueryCorpusResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|createDocument}. * @param error Error, if any * @param [response] Document */ type CreateDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|getDocument}. * @param error Error, if any * @param [response] Document */ type GetDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|updateDocument}. * @param error Error, if any * @param [response] Document */ type UpdateDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|deleteDocument}. * @param error Error, if any * @param [response] Empty */ type DeleteDocumentCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|listDocuments}. * @param error Error, if any * @param [response] ListDocumentsResponse */ type ListDocumentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListDocumentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|queryDocument}. * @param error Error, if any * @param [response] QueryDocumentResponse */ type QueryDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.QueryDocumentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|createChunk}. * @param error Error, if any * @param [response] Chunk */ type CreateChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|batchCreateChunks}. * @param error Error, if any * @param [response] BatchCreateChunksResponse */ type BatchCreateChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|getChunk}. * @param error Error, if any * @param [response] Chunk */ type GetChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|updateChunk}. * @param error Error, if any * @param [response] Chunk */ type UpdateChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|batchUpdateChunks}. * @param error Error, if any * @param [response] BatchUpdateChunksResponse */ type BatchUpdateChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|deleteChunk}. * @param error Error, if any * @param [response] Empty */ type DeleteChunkCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|batchDeleteChunks}. * @param error Error, if any * @param [response] Empty */ type BatchDeleteChunksCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.RetrieverService|listChunks}. * @param error Error, if any * @param [response] ListChunksResponse */ type ListChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.ListChunksResponse) => void; } /** Properties of a CreateCorpusRequest. */ interface ICreateCorpusRequest { /** CreateCorpusRequest corpus */ corpus?: (google.ai.generativelanguage.v1alpha.ICorpus|null); } /** Represents a CreateCorpusRequest. */ class CreateCorpusRequest implements ICreateCorpusRequest { /** * Constructs a new CreateCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest); /** CreateCorpusRequest corpus. */ public corpus?: (google.ai.generativelanguage.v1alpha.ICorpus|null); /** * Creates a new CreateCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest): google.ai.generativelanguage.v1alpha.CreateCorpusRequest; /** * Encodes the specified CreateCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateCorpusRequest.verify|verify} messages. * @param message CreateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateCorpusRequest.verify|verify} messages. * @param message CreateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateCorpusRequest; /** * Decodes a CreateCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateCorpusRequest; /** * Verifies a CreateCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateCorpusRequest; /** * Creates a plain object from a CreateCorpusRequest message. Also converts values to other types if specified. * @param message CreateCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetCorpusRequest. */ interface IGetCorpusRequest { /** GetCorpusRequest name */ name?: (string|null); } /** Represents a GetCorpusRequest. */ class GetCorpusRequest implements IGetCorpusRequest { /** * Constructs a new GetCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetCorpusRequest); /** GetCorpusRequest name. */ public name: string; /** * Creates a new GetCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetCorpusRequest): google.ai.generativelanguage.v1alpha.GetCorpusRequest; /** * Encodes the specified GetCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetCorpusRequest.verify|verify} messages. * @param message GetCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetCorpusRequest.verify|verify} messages. * @param message GetCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetCorpusRequest; /** * Decodes a GetCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetCorpusRequest; /** * Verifies a GetCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetCorpusRequest; /** * Creates a plain object from a GetCorpusRequest message. Also converts values to other types if specified. * @param message GetCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateCorpusRequest. */ interface IUpdateCorpusRequest { /** UpdateCorpusRequest corpus */ corpus?: (google.ai.generativelanguage.v1alpha.ICorpus|null); /** UpdateCorpusRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateCorpusRequest. */ class UpdateCorpusRequest implements IUpdateCorpusRequest { /** * Constructs a new UpdateCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest); /** UpdateCorpusRequest corpus. */ public corpus?: (google.ai.generativelanguage.v1alpha.ICorpus|null); /** UpdateCorpusRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest): google.ai.generativelanguage.v1alpha.UpdateCorpusRequest; /** * Encodes the specified UpdateCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateCorpusRequest.verify|verify} messages. * @param message UpdateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateCorpusRequest.verify|verify} messages. * @param message UpdateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdateCorpusRequest; /** * Decodes an UpdateCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdateCorpusRequest; /** * Verifies an UpdateCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdateCorpusRequest; /** * Creates a plain object from an UpdateCorpusRequest message. Also converts values to other types if specified. * @param message UpdateCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdateCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteCorpusRequest. */ interface IDeleteCorpusRequest { /** DeleteCorpusRequest name */ name?: (string|null); /** DeleteCorpusRequest force */ force?: (boolean|null); } /** Represents a DeleteCorpusRequest. */ class DeleteCorpusRequest implements IDeleteCorpusRequest { /** * Constructs a new DeleteCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest); /** DeleteCorpusRequest name. */ public name: string; /** DeleteCorpusRequest force. */ public force: boolean; /** * Creates a new DeleteCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest): google.ai.generativelanguage.v1alpha.DeleteCorpusRequest; /** * Encodes the specified DeleteCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteCorpusRequest.verify|verify} messages. * @param message DeleteCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteCorpusRequest.verify|verify} messages. * @param message DeleteCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteCorpusRequest; /** * Decodes a DeleteCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteCorpusRequest; /** * Verifies a DeleteCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteCorpusRequest; /** * Creates a plain object from a DeleteCorpusRequest message. Also converts values to other types if specified. * @param message DeleteCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCorporaRequest. */ interface IListCorporaRequest { /** ListCorporaRequest pageSize */ pageSize?: (number|null); /** ListCorporaRequest pageToken */ pageToken?: (string|null); } /** Represents a ListCorporaRequest. */ class ListCorporaRequest implements IListCorporaRequest { /** * Constructs a new ListCorporaRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListCorporaRequest); /** ListCorporaRequest pageSize. */ public pageSize: number; /** ListCorporaRequest pageToken. */ public pageToken: string; /** * Creates a new ListCorporaRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListCorporaRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListCorporaRequest): google.ai.generativelanguage.v1alpha.ListCorporaRequest; /** * Encodes the specified ListCorporaRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCorporaRequest.verify|verify} messages. * @param message ListCorporaRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListCorporaRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCorporaRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCorporaRequest.verify|verify} messages. * @param message ListCorporaRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListCorporaRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCorporaRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCorporaRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListCorporaRequest; /** * Decodes a ListCorporaRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCorporaRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListCorporaRequest; /** * Verifies a ListCorporaRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCorporaRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCorporaRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListCorporaRequest; /** * Creates a plain object from a ListCorporaRequest message. Also converts values to other types if specified. * @param message ListCorporaRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListCorporaRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCorporaRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCorporaRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCorporaResponse. */ interface IListCorporaResponse { /** ListCorporaResponse corpora */ corpora?: (google.ai.generativelanguage.v1alpha.ICorpus[]|null); /** ListCorporaResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListCorporaResponse. */ class ListCorporaResponse implements IListCorporaResponse { /** * Constructs a new ListCorporaResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListCorporaResponse); /** ListCorporaResponse corpora. */ public corpora: google.ai.generativelanguage.v1alpha.ICorpus[]; /** ListCorporaResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListCorporaResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListCorporaResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListCorporaResponse): google.ai.generativelanguage.v1alpha.ListCorporaResponse; /** * Encodes the specified ListCorporaResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCorporaResponse.verify|verify} messages. * @param message ListCorporaResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListCorporaResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCorporaResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListCorporaResponse.verify|verify} messages. * @param message ListCorporaResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListCorporaResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCorporaResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCorporaResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListCorporaResponse; /** * Decodes a ListCorporaResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCorporaResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListCorporaResponse; /** * Verifies a ListCorporaResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCorporaResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCorporaResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListCorporaResponse; /** * Creates a plain object from a ListCorporaResponse message. Also converts values to other types if specified. * @param message ListCorporaResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListCorporaResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCorporaResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCorporaResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryCorpusRequest. */ interface IQueryCorpusRequest { /** QueryCorpusRequest name */ name?: (string|null); /** QueryCorpusRequest query */ query?: (string|null); /** QueryCorpusRequest metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1alpha.IMetadataFilter[]|null); /** QueryCorpusRequest resultsCount */ resultsCount?: (number|null); } /** Represents a QueryCorpusRequest. */ class QueryCorpusRequest implements IQueryCorpusRequest { /** * Constructs a new QueryCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest); /** QueryCorpusRequest name. */ public name: string; /** QueryCorpusRequest query. */ public query: string; /** QueryCorpusRequest metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1alpha.IMetadataFilter[]; /** QueryCorpusRequest resultsCount. */ public resultsCount: number; /** * Creates a new QueryCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns QueryCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest): google.ai.generativelanguage.v1alpha.QueryCorpusRequest; /** * Encodes the specified QueryCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryCorpusRequest.verify|verify} messages. * @param message QueryCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryCorpusRequest.verify|verify} messages. * @param message QueryCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IQueryCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.QueryCorpusRequest; /** * Decodes a QueryCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.QueryCorpusRequest; /** * Verifies a QueryCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.QueryCorpusRequest; /** * Creates a plain object from a QueryCorpusRequest message. Also converts values to other types if specified. * @param message QueryCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.QueryCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryCorpusResponse. */ interface IQueryCorpusResponse { /** QueryCorpusResponse relevantChunks */ relevantChunks?: (google.ai.generativelanguage.v1alpha.IRelevantChunk[]|null); } /** Represents a QueryCorpusResponse. */ class QueryCorpusResponse implements IQueryCorpusResponse { /** * Constructs a new QueryCorpusResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IQueryCorpusResponse); /** QueryCorpusResponse relevantChunks. */ public relevantChunks: google.ai.generativelanguage.v1alpha.IRelevantChunk[]; /** * Creates a new QueryCorpusResponse instance using the specified properties. * @param [properties] Properties to set * @returns QueryCorpusResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IQueryCorpusResponse): google.ai.generativelanguage.v1alpha.QueryCorpusResponse; /** * Encodes the specified QueryCorpusResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryCorpusResponse.verify|verify} messages. * @param message QueryCorpusResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IQueryCorpusResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryCorpusResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryCorpusResponse.verify|verify} messages. * @param message QueryCorpusResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IQueryCorpusResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryCorpusResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryCorpusResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.QueryCorpusResponse; /** * Decodes a QueryCorpusResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryCorpusResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.QueryCorpusResponse; /** * Verifies a QueryCorpusResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryCorpusResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryCorpusResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.QueryCorpusResponse; /** * Creates a plain object from a QueryCorpusResponse message. Also converts values to other types if specified. * @param message QueryCorpusResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.QueryCorpusResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryCorpusResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryCorpusResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RelevantChunk. */ interface IRelevantChunk { /** RelevantChunk chunkRelevanceScore */ chunkRelevanceScore?: (number|null); /** RelevantChunk chunk */ chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); } /** Represents a RelevantChunk. */ class RelevantChunk implements IRelevantChunk { /** * Constructs a new RelevantChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IRelevantChunk); /** RelevantChunk chunkRelevanceScore. */ public chunkRelevanceScore: number; /** RelevantChunk chunk. */ public chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); /** * Creates a new RelevantChunk instance using the specified properties. * @param [properties] Properties to set * @returns RelevantChunk instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IRelevantChunk): google.ai.generativelanguage.v1alpha.RelevantChunk; /** * Encodes the specified RelevantChunk message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.RelevantChunk.verify|verify} messages. * @param message RelevantChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IRelevantChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RelevantChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.RelevantChunk.verify|verify} messages. * @param message RelevantChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IRelevantChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RelevantChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RelevantChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.RelevantChunk; /** * Decodes a RelevantChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RelevantChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.RelevantChunk; /** * Verifies a RelevantChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RelevantChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RelevantChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.RelevantChunk; /** * Creates a plain object from a RelevantChunk message. Also converts values to other types if specified. * @param message RelevantChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.RelevantChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RelevantChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RelevantChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateDocumentRequest. */ interface ICreateDocumentRequest { /** CreateDocumentRequest parent */ parent?: (string|null); /** CreateDocumentRequest document */ document?: (google.ai.generativelanguage.v1alpha.IDocument|null); } /** Represents a CreateDocumentRequest. */ class CreateDocumentRequest implements ICreateDocumentRequest { /** * Constructs a new CreateDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest); /** CreateDocumentRequest parent. */ public parent: string; /** CreateDocumentRequest document. */ public document?: (google.ai.generativelanguage.v1alpha.IDocument|null); /** * Creates a new CreateDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest): google.ai.generativelanguage.v1alpha.CreateDocumentRequest; /** * Encodes the specified CreateDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateDocumentRequest.verify|verify} messages. * @param message CreateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateDocumentRequest.verify|verify} messages. * @param message CreateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateDocumentRequest; /** * Decodes a CreateDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateDocumentRequest; /** * Verifies a CreateDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateDocumentRequest; /** * Creates a plain object from a CreateDocumentRequest message. Also converts values to other types if specified. * @param message CreateDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetDocumentRequest. */ interface IGetDocumentRequest { /** GetDocumentRequest name */ name?: (string|null); } /** Represents a GetDocumentRequest. */ class GetDocumentRequest implements IGetDocumentRequest { /** * Constructs a new GetDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetDocumentRequest); /** GetDocumentRequest name. */ public name: string; /** * Creates a new GetDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetDocumentRequest): google.ai.generativelanguage.v1alpha.GetDocumentRequest; /** * Encodes the specified GetDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetDocumentRequest.verify|verify} messages. * @param message GetDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetDocumentRequest.verify|verify} messages. * @param message GetDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetDocumentRequest; /** * Decodes a GetDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetDocumentRequest; /** * Verifies a GetDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetDocumentRequest; /** * Creates a plain object from a GetDocumentRequest message. Also converts values to other types if specified. * @param message GetDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateDocumentRequest. */ interface IUpdateDocumentRequest { /** UpdateDocumentRequest document */ document?: (google.ai.generativelanguage.v1alpha.IDocument|null); /** UpdateDocumentRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateDocumentRequest. */ class UpdateDocumentRequest implements IUpdateDocumentRequest { /** * Constructs a new UpdateDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest); /** UpdateDocumentRequest document. */ public document?: (google.ai.generativelanguage.v1alpha.IDocument|null); /** UpdateDocumentRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest): google.ai.generativelanguage.v1alpha.UpdateDocumentRequest; /** * Encodes the specified UpdateDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateDocumentRequest.verify|verify} messages. * @param message UpdateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateDocumentRequest.verify|verify} messages. * @param message UpdateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdateDocumentRequest; /** * Decodes an UpdateDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdateDocumentRequest; /** * Verifies an UpdateDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdateDocumentRequest; /** * Creates a plain object from an UpdateDocumentRequest message. Also converts values to other types if specified. * @param message UpdateDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdateDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteDocumentRequest. */ interface IDeleteDocumentRequest { /** DeleteDocumentRequest name */ name?: (string|null); /** DeleteDocumentRequest force */ force?: (boolean|null); } /** Represents a DeleteDocumentRequest. */ class DeleteDocumentRequest implements IDeleteDocumentRequest { /** * Constructs a new DeleteDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest); /** DeleteDocumentRequest name. */ public name: string; /** DeleteDocumentRequest force. */ public force: boolean; /** * Creates a new DeleteDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest): google.ai.generativelanguage.v1alpha.DeleteDocumentRequest; /** * Encodes the specified DeleteDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteDocumentRequest.verify|verify} messages. * @param message DeleteDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteDocumentRequest.verify|verify} messages. * @param message DeleteDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteDocumentRequest; /** * Decodes a DeleteDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteDocumentRequest; /** * Verifies a DeleteDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteDocumentRequest; /** * Creates a plain object from a DeleteDocumentRequest message. Also converts values to other types if specified. * @param message DeleteDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListDocumentsRequest. */ interface IListDocumentsRequest { /** ListDocumentsRequest parent */ parent?: (string|null); /** ListDocumentsRequest pageSize */ pageSize?: (number|null); /** ListDocumentsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListDocumentsRequest. */ class ListDocumentsRequest implements IListDocumentsRequest { /** * Constructs a new ListDocumentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListDocumentsRequest); /** ListDocumentsRequest parent. */ public parent: string; /** ListDocumentsRequest pageSize. */ public pageSize: number; /** ListDocumentsRequest pageToken. */ public pageToken: string; /** * Creates a new ListDocumentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListDocumentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListDocumentsRequest): google.ai.generativelanguage.v1alpha.ListDocumentsRequest; /** * Encodes the specified ListDocumentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListDocumentsRequest.verify|verify} messages. * @param message ListDocumentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListDocumentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListDocumentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListDocumentsRequest.verify|verify} messages. * @param message ListDocumentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListDocumentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListDocumentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListDocumentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListDocumentsRequest; /** * Decodes a ListDocumentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListDocumentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListDocumentsRequest; /** * Verifies a ListDocumentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListDocumentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListDocumentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListDocumentsRequest; /** * Creates a plain object from a ListDocumentsRequest message. Also converts values to other types if specified. * @param message ListDocumentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListDocumentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListDocumentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListDocumentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListDocumentsResponse. */ interface IListDocumentsResponse { /** ListDocumentsResponse documents */ documents?: (google.ai.generativelanguage.v1alpha.IDocument[]|null); /** ListDocumentsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListDocumentsResponse. */ class ListDocumentsResponse implements IListDocumentsResponse { /** * Constructs a new ListDocumentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListDocumentsResponse); /** ListDocumentsResponse documents. */ public documents: google.ai.generativelanguage.v1alpha.IDocument[]; /** ListDocumentsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListDocumentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListDocumentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListDocumentsResponse): google.ai.generativelanguage.v1alpha.ListDocumentsResponse; /** * Encodes the specified ListDocumentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListDocumentsResponse.verify|verify} messages. * @param message ListDocumentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListDocumentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListDocumentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListDocumentsResponse.verify|verify} messages. * @param message ListDocumentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListDocumentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListDocumentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListDocumentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListDocumentsResponse; /** * Decodes a ListDocumentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListDocumentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListDocumentsResponse; /** * Verifies a ListDocumentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListDocumentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListDocumentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListDocumentsResponse; /** * Creates a plain object from a ListDocumentsResponse message. Also converts values to other types if specified. * @param message ListDocumentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListDocumentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListDocumentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListDocumentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryDocumentRequest. */ interface IQueryDocumentRequest { /** QueryDocumentRequest name */ name?: (string|null); /** QueryDocumentRequest query */ query?: (string|null); /** QueryDocumentRequest resultsCount */ resultsCount?: (number|null); /** QueryDocumentRequest metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1alpha.IMetadataFilter[]|null); } /** Represents a QueryDocumentRequest. */ class QueryDocumentRequest implements IQueryDocumentRequest { /** * Constructs a new QueryDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest); /** QueryDocumentRequest name. */ public name: string; /** QueryDocumentRequest query. */ public query: string; /** QueryDocumentRequest resultsCount. */ public resultsCount: number; /** QueryDocumentRequest metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1alpha.IMetadataFilter[]; /** * Creates a new QueryDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns QueryDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest): google.ai.generativelanguage.v1alpha.QueryDocumentRequest; /** * Encodes the specified QueryDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryDocumentRequest.verify|verify} messages. * @param message QueryDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryDocumentRequest.verify|verify} messages. * @param message QueryDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IQueryDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.QueryDocumentRequest; /** * Decodes a QueryDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.QueryDocumentRequest; /** * Verifies a QueryDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.QueryDocumentRequest; /** * Creates a plain object from a QueryDocumentRequest message. Also converts values to other types if specified. * @param message QueryDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.QueryDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryDocumentResponse. */ interface IQueryDocumentResponse { /** QueryDocumentResponse relevantChunks */ relevantChunks?: (google.ai.generativelanguage.v1alpha.IRelevantChunk[]|null); } /** Represents a QueryDocumentResponse. */ class QueryDocumentResponse implements IQueryDocumentResponse { /** * Constructs a new QueryDocumentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IQueryDocumentResponse); /** QueryDocumentResponse relevantChunks. */ public relevantChunks: google.ai.generativelanguage.v1alpha.IRelevantChunk[]; /** * Creates a new QueryDocumentResponse instance using the specified properties. * @param [properties] Properties to set * @returns QueryDocumentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IQueryDocumentResponse): google.ai.generativelanguage.v1alpha.QueryDocumentResponse; /** * Encodes the specified QueryDocumentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryDocumentResponse.verify|verify} messages. * @param message QueryDocumentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IQueryDocumentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryDocumentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.QueryDocumentResponse.verify|verify} messages. * @param message QueryDocumentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IQueryDocumentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryDocumentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryDocumentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.QueryDocumentResponse; /** * Decodes a QueryDocumentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryDocumentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.QueryDocumentResponse; /** * Verifies a QueryDocumentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryDocumentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryDocumentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.QueryDocumentResponse; /** * Creates a plain object from a QueryDocumentResponse message. Also converts values to other types if specified. * @param message QueryDocumentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.QueryDocumentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryDocumentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryDocumentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateChunkRequest. */ interface ICreateChunkRequest { /** CreateChunkRequest parent */ parent?: (string|null); /** CreateChunkRequest chunk */ chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); } /** Represents a CreateChunkRequest. */ class CreateChunkRequest implements ICreateChunkRequest { /** * Constructs a new CreateChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICreateChunkRequest); /** CreateChunkRequest parent. */ public parent: string; /** CreateChunkRequest chunk. */ public chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); /** * Creates a new CreateChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICreateChunkRequest): google.ai.generativelanguage.v1alpha.CreateChunkRequest; /** * Encodes the specified CreateChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateChunkRequest.verify|verify} messages. * @param message CreateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICreateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CreateChunkRequest.verify|verify} messages. * @param message CreateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICreateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CreateChunkRequest; /** * Decodes a CreateChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CreateChunkRequest; /** * Verifies a CreateChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CreateChunkRequest; /** * Creates a plain object from a CreateChunkRequest message. Also converts values to other types if specified. * @param message CreateChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CreateChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchCreateChunksRequest. */ interface IBatchCreateChunksRequest { /** BatchCreateChunksRequest parent */ parent?: (string|null); /** BatchCreateChunksRequest requests */ requests?: (google.ai.generativelanguage.v1alpha.ICreateChunkRequest[]|null); } /** Represents a BatchCreateChunksRequest. */ class BatchCreateChunksRequest implements IBatchCreateChunksRequest { /** * Constructs a new BatchCreateChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest); /** BatchCreateChunksRequest parent. */ public parent: string; /** BatchCreateChunksRequest requests. */ public requests: google.ai.generativelanguage.v1alpha.ICreateChunkRequest[]; /** * Creates a new BatchCreateChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchCreateChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest): google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest; /** * Encodes the specified BatchCreateChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest.verify|verify} messages. * @param message BatchCreateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchCreateChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest.verify|verify} messages. * @param message BatchCreateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchCreateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchCreateChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchCreateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest; /** * Decodes a BatchCreateChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchCreateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest; /** * Verifies a BatchCreateChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchCreateChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchCreateChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest; /** * Creates a plain object from a BatchCreateChunksRequest message. Also converts values to other types if specified. * @param message BatchCreateChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchCreateChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchCreateChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchCreateChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchCreateChunksResponse. */ interface IBatchCreateChunksResponse { /** BatchCreateChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1alpha.IChunk[]|null); } /** Represents a BatchCreateChunksResponse. */ class BatchCreateChunksResponse implements IBatchCreateChunksResponse { /** * Constructs a new BatchCreateChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchCreateChunksResponse); /** BatchCreateChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1alpha.IChunk[]; /** * Creates a new BatchCreateChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchCreateChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchCreateChunksResponse): google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse; /** * Encodes the specified BatchCreateChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse.verify|verify} messages. * @param message BatchCreateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchCreateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchCreateChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse.verify|verify} messages. * @param message BatchCreateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchCreateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchCreateChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchCreateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse; /** * Decodes a BatchCreateChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchCreateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse; /** * Verifies a BatchCreateChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchCreateChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchCreateChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse; /** * Creates a plain object from a BatchCreateChunksResponse message. Also converts values to other types if specified. * @param message BatchCreateChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchCreateChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchCreateChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchCreateChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetChunkRequest. */ interface IGetChunkRequest { /** GetChunkRequest name */ name?: (string|null); } /** Represents a GetChunkRequest. */ class GetChunkRequest implements IGetChunkRequest { /** * Constructs a new GetChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGetChunkRequest); /** GetChunkRequest name. */ public name: string; /** * Creates a new GetChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGetChunkRequest): google.ai.generativelanguage.v1alpha.GetChunkRequest; /** * Encodes the specified GetChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetChunkRequest.verify|verify} messages. * @param message GetChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGetChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GetChunkRequest.verify|verify} messages. * @param message GetChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGetChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GetChunkRequest; /** * Decodes a GetChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GetChunkRequest; /** * Verifies a GetChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GetChunkRequest; /** * Creates a plain object from a GetChunkRequest message. Also converts values to other types if specified. * @param message GetChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GetChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateChunkRequest. */ interface IUpdateChunkRequest { /** UpdateChunkRequest chunk */ chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); /** UpdateChunkRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateChunkRequest. */ class UpdateChunkRequest implements IUpdateChunkRequest { /** * Constructs a new UpdateChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest); /** UpdateChunkRequest chunk. */ public chunk?: (google.ai.generativelanguage.v1alpha.IChunk|null); /** UpdateChunkRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest): google.ai.generativelanguage.v1alpha.UpdateChunkRequest; /** * Encodes the specified UpdateChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateChunkRequest.verify|verify} messages. * @param message UpdateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.UpdateChunkRequest.verify|verify} messages. * @param message UpdateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.UpdateChunkRequest; /** * Decodes an UpdateChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.UpdateChunkRequest; /** * Verifies an UpdateChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.UpdateChunkRequest; /** * Creates a plain object from an UpdateChunkRequest message. Also converts values to other types if specified. * @param message UpdateChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.UpdateChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchUpdateChunksRequest. */ interface IBatchUpdateChunksRequest { /** BatchUpdateChunksRequest parent */ parent?: (string|null); /** BatchUpdateChunksRequest requests */ requests?: (google.ai.generativelanguage.v1alpha.IUpdateChunkRequest[]|null); } /** Represents a BatchUpdateChunksRequest. */ class BatchUpdateChunksRequest implements IBatchUpdateChunksRequest { /** * Constructs a new BatchUpdateChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest); /** BatchUpdateChunksRequest parent. */ public parent: string; /** BatchUpdateChunksRequest requests. */ public requests: google.ai.generativelanguage.v1alpha.IUpdateChunkRequest[]; /** * Creates a new BatchUpdateChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchUpdateChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest): google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest; /** * Encodes the specified BatchUpdateChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest.verify|verify} messages. * @param message BatchUpdateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchUpdateChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest.verify|verify} messages. * @param message BatchUpdateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchUpdateChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchUpdateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest; /** * Decodes a BatchUpdateChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchUpdateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest; /** * Verifies a BatchUpdateChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchUpdateChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchUpdateChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest; /** * Creates a plain object from a BatchUpdateChunksRequest message. Also converts values to other types if specified. * @param message BatchUpdateChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchUpdateChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchUpdateChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchUpdateChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchUpdateChunksResponse. */ interface IBatchUpdateChunksResponse { /** BatchUpdateChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1alpha.IChunk[]|null); } /** Represents a BatchUpdateChunksResponse. */ class BatchUpdateChunksResponse implements IBatchUpdateChunksResponse { /** * Constructs a new BatchUpdateChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksResponse); /** BatchUpdateChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1alpha.IChunk[]; /** * Creates a new BatchUpdateChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchUpdateChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksResponse): google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse; /** * Encodes the specified BatchUpdateChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse.verify|verify} messages. * @param message BatchUpdateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchUpdateChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse.verify|verify} messages. * @param message BatchUpdateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchUpdateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchUpdateChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchUpdateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse; /** * Decodes a BatchUpdateChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchUpdateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse; /** * Verifies a BatchUpdateChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchUpdateChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchUpdateChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse; /** * Creates a plain object from a BatchUpdateChunksResponse message. Also converts values to other types if specified. * @param message BatchUpdateChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchUpdateChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchUpdateChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchUpdateChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteChunkRequest. */ interface IDeleteChunkRequest { /** DeleteChunkRequest name */ name?: (string|null); } /** Represents a DeleteChunkRequest. */ class DeleteChunkRequest implements IDeleteChunkRequest { /** * Constructs a new DeleteChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest); /** DeleteChunkRequest name. */ public name: string; /** * Creates a new DeleteChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest): google.ai.generativelanguage.v1alpha.DeleteChunkRequest; /** * Encodes the specified DeleteChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteChunkRequest.verify|verify} messages. * @param message DeleteChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.DeleteChunkRequest.verify|verify} messages. * @param message DeleteChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.DeleteChunkRequest; /** * Decodes a DeleteChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.DeleteChunkRequest; /** * Verifies a DeleteChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.DeleteChunkRequest; /** * Creates a plain object from a DeleteChunkRequest message. Also converts values to other types if specified. * @param message DeleteChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.DeleteChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchDeleteChunksRequest. */ interface IBatchDeleteChunksRequest { /** BatchDeleteChunksRequest parent */ parent?: (string|null); /** BatchDeleteChunksRequest requests */ requests?: (google.ai.generativelanguage.v1alpha.IDeleteChunkRequest[]|null); } /** Represents a BatchDeleteChunksRequest. */ class BatchDeleteChunksRequest implements IBatchDeleteChunksRequest { /** * Constructs a new BatchDeleteChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest); /** BatchDeleteChunksRequest parent. */ public parent: string; /** BatchDeleteChunksRequest requests. */ public requests: google.ai.generativelanguage.v1alpha.IDeleteChunkRequest[]; /** * Creates a new BatchDeleteChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchDeleteChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest): google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest; /** * Encodes the specified BatchDeleteChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest.verify|verify} messages. * @param message BatchDeleteChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchDeleteChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest.verify|verify} messages. * @param message BatchDeleteChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchDeleteChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchDeleteChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchDeleteChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest; /** * Decodes a BatchDeleteChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchDeleteChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest; /** * Verifies a BatchDeleteChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchDeleteChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchDeleteChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest; /** * Creates a plain object from a BatchDeleteChunksRequest message. Also converts values to other types if specified. * @param message BatchDeleteChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchDeleteChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchDeleteChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchDeleteChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListChunksRequest. */ interface IListChunksRequest { /** ListChunksRequest parent */ parent?: (string|null); /** ListChunksRequest pageSize */ pageSize?: (number|null); /** ListChunksRequest pageToken */ pageToken?: (string|null); } /** Represents a ListChunksRequest. */ class ListChunksRequest implements IListChunksRequest { /** * Constructs a new ListChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListChunksRequest); /** ListChunksRequest parent. */ public parent: string; /** ListChunksRequest pageSize. */ public pageSize: number; /** ListChunksRequest pageToken. */ public pageToken: string; /** * Creates a new ListChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListChunksRequest): google.ai.generativelanguage.v1alpha.ListChunksRequest; /** * Encodes the specified ListChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListChunksRequest.verify|verify} messages. * @param message ListChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListChunksRequest.verify|verify} messages. * @param message ListChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListChunksRequest; /** * Decodes a ListChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListChunksRequest; /** * Verifies a ListChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListChunksRequest; /** * Creates a plain object from a ListChunksRequest message. Also converts values to other types if specified. * @param message ListChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListChunksResponse. */ interface IListChunksResponse { /** ListChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1alpha.IChunk[]|null); /** ListChunksResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListChunksResponse. */ class ListChunksResponse implements IListChunksResponse { /** * Constructs a new ListChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IListChunksResponse); /** ListChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1alpha.IChunk[]; /** ListChunksResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IListChunksResponse): google.ai.generativelanguage.v1alpha.ListChunksResponse; /** * Encodes the specified ListChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListChunksResponse.verify|verify} messages. * @param message ListChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IListChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.ListChunksResponse.verify|verify} messages. * @param message ListChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IListChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.ListChunksResponse; /** * Decodes a ListChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.ListChunksResponse; /** * Verifies a ListChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.ListChunksResponse; /** * Creates a plain object from a ListChunksResponse message. Also converts values to other types if specified. * @param message ListChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.ListChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a TextService */ class TextService extends $protobuf.rpc.Service { /** * Constructs a new TextService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new TextService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): TextService; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateTextResponse */ public generateText(request: google.ai.generativelanguage.v1alpha.IGenerateTextRequest, callback: google.ai.generativelanguage.v1alpha.TextService.GenerateTextCallback): void; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @returns Promise */ public generateText(request: google.ai.generativelanguage.v1alpha.IGenerateTextRequest): Promise; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedTextResponse */ public embedText(request: google.ai.generativelanguage.v1alpha.IEmbedTextRequest, callback: google.ai.generativelanguage.v1alpha.TextService.EmbedTextCallback): void; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @returns Promise */ public embedText(request: google.ai.generativelanguage.v1alpha.IEmbedTextRequest): Promise; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedTextResponse */ public batchEmbedText(request: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest, callback: google.ai.generativelanguage.v1alpha.TextService.BatchEmbedTextCallback): void; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @returns Promise */ public batchEmbedText(request: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest): Promise; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTextTokensResponse */ public countTextTokens(request: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest, callback: google.ai.generativelanguage.v1alpha.TextService.CountTextTokensCallback): void; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @returns Promise */ public countTextTokens(request: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest): Promise; } namespace TextService { /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.TextService|generateText}. * @param error Error, if any * @param [response] GenerateTextResponse */ type GenerateTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.GenerateTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.TextService|embedText}. * @param error Error, if any * @param [response] EmbedTextResponse */ type EmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.EmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.TextService|batchEmbedText}. * @param error Error, if any * @param [response] BatchEmbedTextResponse */ type BatchEmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1alpha.TextService|countTextTokens}. * @param error Error, if any * @param [response] CountTextTokensResponse */ type CountTextTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1alpha.CountTextTokensResponse) => void; } /** Properties of a GenerateTextRequest. */ interface IGenerateTextRequest { /** GenerateTextRequest model */ model?: (string|null); /** GenerateTextRequest prompt */ prompt?: (google.ai.generativelanguage.v1alpha.ITextPrompt|null); /** GenerateTextRequest temperature */ temperature?: (number|null); /** GenerateTextRequest candidateCount */ candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerateTextRequest topP */ topP?: (number|null); /** GenerateTextRequest topK */ topK?: (number|null); /** GenerateTextRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1alpha.ISafetySetting[]|null); /** GenerateTextRequest stopSequences */ stopSequences?: (string[]|null); } /** Represents a GenerateTextRequest. */ class GenerateTextRequest implements IGenerateTextRequest { /** * Constructs a new GenerateTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateTextRequest); /** GenerateTextRequest model. */ public model: string; /** GenerateTextRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1alpha.ITextPrompt|null); /** GenerateTextRequest temperature. */ public temperature?: (number|null); /** GenerateTextRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerateTextRequest topP. */ public topP?: (number|null); /** GenerateTextRequest topK. */ public topK?: (number|null); /** GenerateTextRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1alpha.ISafetySetting[]; /** GenerateTextRequest stopSequences. */ public stopSequences: string[]; /** * Creates a new GenerateTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateTextRequest): google.ai.generativelanguage.v1alpha.GenerateTextRequest; /** * Encodes the specified GenerateTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateTextRequest; /** * Decodes a GenerateTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateTextRequest; /** * Verifies a GenerateTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateTextRequest; /** * Creates a plain object from a GenerateTextRequest message. Also converts values to other types if specified. * @param message GenerateTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateTextResponse. */ interface IGenerateTextResponse { /** GenerateTextResponse candidates */ candidates?: (google.ai.generativelanguage.v1alpha.ITextCompletion[]|null); /** GenerateTextResponse filters */ filters?: (google.ai.generativelanguage.v1alpha.IContentFilter[]|null); /** GenerateTextResponse safetyFeedback */ safetyFeedback?: (google.ai.generativelanguage.v1alpha.ISafetyFeedback[]|null); } /** Represents a GenerateTextResponse. */ class GenerateTextResponse implements IGenerateTextResponse { /** * Constructs a new GenerateTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IGenerateTextResponse); /** GenerateTextResponse candidates. */ public candidates: google.ai.generativelanguage.v1alpha.ITextCompletion[]; /** GenerateTextResponse filters. */ public filters: google.ai.generativelanguage.v1alpha.IContentFilter[]; /** GenerateTextResponse safetyFeedback. */ public safetyFeedback: google.ai.generativelanguage.v1alpha.ISafetyFeedback[]; /** * Creates a new GenerateTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IGenerateTextResponse): google.ai.generativelanguage.v1alpha.GenerateTextResponse; /** * Encodes the specified GenerateTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.GenerateTextResponse; /** * Decodes a GenerateTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.GenerateTextResponse; /** * Verifies a GenerateTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.GenerateTextResponse; /** * Creates a plain object from a GenerateTextResponse message. Also converts values to other types if specified. * @param message GenerateTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.GenerateTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextPrompt. */ interface ITextPrompt { /** TextPrompt text */ text?: (string|null); } /** Represents a TextPrompt. */ class TextPrompt implements ITextPrompt { /** * Constructs a new TextPrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITextPrompt); /** TextPrompt text. */ public text: string; /** * Creates a new TextPrompt instance using the specified properties. * @param [properties] Properties to set * @returns TextPrompt instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITextPrompt): google.ai.generativelanguage.v1alpha.TextPrompt; /** * Encodes the specified TextPrompt message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextPrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextPrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TextPrompt; /** * Decodes a TextPrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TextPrompt; /** * Verifies a TextPrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextPrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextPrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TextPrompt; /** * Creates a plain object from a TextPrompt message. Also converts values to other types if specified. * @param message TextPrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TextPrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextPrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextPrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextCompletion. */ interface ITextCompletion { /** TextCompletion output */ output?: (string|null); /** TextCompletion safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1alpha.ISafetyRating[]|null); /** TextCompletion citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); } /** Represents a TextCompletion. */ class TextCompletion implements ITextCompletion { /** * Constructs a new TextCompletion. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ITextCompletion); /** TextCompletion output. */ public output: string; /** TextCompletion safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1alpha.ISafetyRating[]; /** TextCompletion citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1alpha.ICitationMetadata|null); /** * Creates a new TextCompletion instance using the specified properties. * @param [properties] Properties to set * @returns TextCompletion instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ITextCompletion): google.ai.generativelanguage.v1alpha.TextCompletion; /** * Encodes the specified TextCompletion message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextCompletion message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextCompletion message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.TextCompletion; /** * Decodes a TextCompletion message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.TextCompletion; /** * Verifies a TextCompletion message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextCompletion message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextCompletion */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.TextCompletion; /** * Creates a plain object from a TextCompletion message. Also converts values to other types if specified. * @param message TextCompletion * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.TextCompletion, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextCompletion to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextCompletion * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextRequest. */ interface IEmbedTextRequest { /** EmbedTextRequest model */ model?: (string|null); /** EmbedTextRequest text */ text?: (string|null); } /** Represents an EmbedTextRequest. */ class EmbedTextRequest implements IEmbedTextRequest { /** * Constructs a new EmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IEmbedTextRequest); /** EmbedTextRequest model. */ public model: string; /** EmbedTextRequest text. */ public text: string; /** * Creates a new EmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IEmbedTextRequest): google.ai.generativelanguage.v1alpha.EmbedTextRequest; /** * Encodes the specified EmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.EmbedTextRequest; /** * Decodes an EmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.EmbedTextRequest; /** * Verifies an EmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.EmbedTextRequest; /** * Creates a plain object from an EmbedTextRequest message. Also converts values to other types if specified. * @param message EmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.EmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextResponse. */ interface IEmbedTextResponse { /** EmbedTextResponse embedding */ embedding?: (google.ai.generativelanguage.v1alpha.IEmbedding|null); } /** Represents an EmbedTextResponse. */ class EmbedTextResponse implements IEmbedTextResponse { /** * Constructs a new EmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IEmbedTextResponse); /** EmbedTextResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1alpha.IEmbedding|null); /** * Creates a new EmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IEmbedTextResponse): google.ai.generativelanguage.v1alpha.EmbedTextResponse; /** * Encodes the specified EmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.EmbedTextResponse; /** * Decodes an EmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.EmbedTextResponse; /** * Verifies an EmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.EmbedTextResponse; /** * Creates a plain object from an EmbedTextResponse message. Also converts values to other types if specified. * @param message EmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.EmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextRequest. */ interface IBatchEmbedTextRequest { /** BatchEmbedTextRequest model */ model?: (string|null); /** BatchEmbedTextRequest texts */ texts?: (string[]|null); /** BatchEmbedTextRequest requests */ requests?: (google.ai.generativelanguage.v1alpha.IEmbedTextRequest[]|null); } /** Represents a BatchEmbedTextRequest. */ class BatchEmbedTextRequest implements IBatchEmbedTextRequest { /** * Constructs a new BatchEmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest); /** BatchEmbedTextRequest model. */ public model: string; /** BatchEmbedTextRequest texts. */ public texts: string[]; /** BatchEmbedTextRequest requests. */ public requests: google.ai.generativelanguage.v1alpha.IEmbedTextRequest[]; /** * Creates a new BatchEmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest): google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest; /** * Encodes the specified BatchEmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest; /** * Verifies a BatchEmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest; /** * Creates a plain object from a BatchEmbedTextRequest message. Also converts values to other types if specified. * @param message BatchEmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchEmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextResponse. */ interface IBatchEmbedTextResponse { /** BatchEmbedTextResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1alpha.IEmbedding[]|null); } /** Represents a BatchEmbedTextResponse. */ class BatchEmbedTextResponse implements IBatchEmbedTextResponse { /** * Constructs a new BatchEmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedTextResponse); /** BatchEmbedTextResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1alpha.IEmbedding[]; /** * Creates a new BatchEmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IBatchEmbedTextResponse): google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse; /** * Encodes the specified BatchEmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse; /** * Verifies a BatchEmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse; /** * Creates a plain object from a BatchEmbedTextResponse message. Also converts values to other types if specified. * @param message BatchEmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.BatchEmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Embedding. */ interface IEmbedding { /** Embedding value */ value?: (number[]|null); } /** Represents an Embedding. */ class Embedding implements IEmbedding { /** * Constructs a new Embedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.IEmbedding); /** Embedding value. */ public value: number[]; /** * Creates a new Embedding instance using the specified properties. * @param [properties] Properties to set * @returns Embedding instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.IEmbedding): google.ai.generativelanguage.v1alpha.Embedding; /** * Encodes the specified Embedding message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Embedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Embedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.Embedding; /** * Decodes an Embedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.Embedding; /** * Verifies an Embedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Embedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Embedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.Embedding; /** * Creates a plain object from an Embedding message. Also converts values to other types if specified. * @param message Embedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.Embedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Embedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Embedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensRequest. */ interface ICountTextTokensRequest { /** CountTextTokensRequest model */ model?: (string|null); /** CountTextTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1alpha.ITextPrompt|null); } /** Represents a CountTextTokensRequest. */ class CountTextTokensRequest implements ICountTextTokensRequest { /** * Constructs a new CountTextTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest); /** CountTextTokensRequest model. */ public model: string; /** CountTextTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1alpha.ITextPrompt|null); /** * Creates a new CountTextTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest): google.ai.generativelanguage.v1alpha.CountTextTokensRequest; /** * Encodes the specified CountTextTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountTextTokensRequest; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountTextTokensRequest; /** * Verifies a CountTextTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountTextTokensRequest; /** * Creates a plain object from a CountTextTokensRequest message. Also converts values to other types if specified. * @param message CountTextTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountTextTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensResponse. */ interface ICountTextTokensResponse { /** CountTextTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountTextTokensResponse. */ class CountTextTokensResponse implements ICountTextTokensResponse { /** * Constructs a new CountTextTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1alpha.ICountTextTokensResponse); /** CountTextTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountTextTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1alpha.ICountTextTokensResponse): google.ai.generativelanguage.v1alpha.CountTextTokensResponse; /** * Encodes the specified CountTextTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1alpha.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1alpha.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1alpha.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1alpha.CountTextTokensResponse; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1alpha.CountTextTokensResponse; /** * Verifies a CountTextTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1alpha.CountTextTokensResponse; /** * Creates a plain object from a CountTextTokensResponse message. Also converts values to other types if specified. * @param message CountTextTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1alpha.CountTextTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace v1beta. */ namespace v1beta { /** Represents a CacheService */ class CacheService extends $protobuf.rpc.Service { /** * Constructs a new CacheService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new CacheService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): CacheService; /** * Calls ListCachedContents. * @param request ListCachedContentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListCachedContentsResponse */ public listCachedContents(request: google.ai.generativelanguage.v1beta.IListCachedContentsRequest, callback: google.ai.generativelanguage.v1beta.CacheService.ListCachedContentsCallback): void; /** * Calls ListCachedContents. * @param request ListCachedContentsRequest message or plain object * @returns Promise */ public listCachedContents(request: google.ai.generativelanguage.v1beta.IListCachedContentsRequest): Promise; /** * Calls CreateCachedContent. * @param request CreateCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public createCachedContent(request: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest, callback: google.ai.generativelanguage.v1beta.CacheService.CreateCachedContentCallback): void; /** * Calls CreateCachedContent. * @param request CreateCachedContentRequest message or plain object * @returns Promise */ public createCachedContent(request: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest): Promise; /** * Calls GetCachedContent. * @param request GetCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public getCachedContent(request: google.ai.generativelanguage.v1beta.IGetCachedContentRequest, callback: google.ai.generativelanguage.v1beta.CacheService.GetCachedContentCallback): void; /** * Calls GetCachedContent. * @param request GetCachedContentRequest message or plain object * @returns Promise */ public getCachedContent(request: google.ai.generativelanguage.v1beta.IGetCachedContentRequest): Promise; /** * Calls UpdateCachedContent. * @param request UpdateCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and CachedContent */ public updateCachedContent(request: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest, callback: google.ai.generativelanguage.v1beta.CacheService.UpdateCachedContentCallback): void; /** * Calls UpdateCachedContent. * @param request UpdateCachedContentRequest message or plain object * @returns Promise */ public updateCachedContent(request: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest): Promise; /** * Calls DeleteCachedContent. * @param request DeleteCachedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteCachedContent(request: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest, callback: google.ai.generativelanguage.v1beta.CacheService.DeleteCachedContentCallback): void; /** * Calls DeleteCachedContent. * @param request DeleteCachedContentRequest message or plain object * @returns Promise */ public deleteCachedContent(request: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest): Promise; } namespace CacheService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.CacheService|listCachedContents}. * @param error Error, if any * @param [response] ListCachedContentsResponse */ type ListCachedContentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListCachedContentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.CacheService|createCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type CreateCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.CacheService|getCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type GetCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.CacheService|updateCachedContent}. * @param error Error, if any * @param [response] CachedContent */ type UpdateCachedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CachedContent) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.CacheService|deleteCachedContent}. * @param error Error, if any * @param [response] Empty */ type DeleteCachedContentCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a ListCachedContentsRequest. */ interface IListCachedContentsRequest { /** ListCachedContentsRequest pageSize */ pageSize?: (number|null); /** ListCachedContentsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListCachedContentsRequest. */ class ListCachedContentsRequest implements IListCachedContentsRequest { /** * Constructs a new ListCachedContentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListCachedContentsRequest); /** ListCachedContentsRequest pageSize. */ public pageSize: number; /** ListCachedContentsRequest pageToken. */ public pageToken: string; /** * Creates a new ListCachedContentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListCachedContentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListCachedContentsRequest): google.ai.generativelanguage.v1beta.ListCachedContentsRequest; /** * Encodes the specified ListCachedContentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCachedContentsRequest.verify|verify} messages. * @param message ListCachedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListCachedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCachedContentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCachedContentsRequest.verify|verify} messages. * @param message ListCachedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListCachedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCachedContentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCachedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListCachedContentsRequest; /** * Decodes a ListCachedContentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCachedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListCachedContentsRequest; /** * Verifies a ListCachedContentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCachedContentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCachedContentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListCachedContentsRequest; /** * Creates a plain object from a ListCachedContentsRequest message. Also converts values to other types if specified. * @param message ListCachedContentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListCachedContentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCachedContentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCachedContentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCachedContentsResponse. */ interface IListCachedContentsResponse { /** ListCachedContentsResponse cachedContents */ cachedContents?: (google.ai.generativelanguage.v1beta.ICachedContent[]|null); /** ListCachedContentsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListCachedContentsResponse. */ class ListCachedContentsResponse implements IListCachedContentsResponse { /** * Constructs a new ListCachedContentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListCachedContentsResponse); /** ListCachedContentsResponse cachedContents. */ public cachedContents: google.ai.generativelanguage.v1beta.ICachedContent[]; /** ListCachedContentsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListCachedContentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListCachedContentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListCachedContentsResponse): google.ai.generativelanguage.v1beta.ListCachedContentsResponse; /** * Encodes the specified ListCachedContentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCachedContentsResponse.verify|verify} messages. * @param message ListCachedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListCachedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCachedContentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCachedContentsResponse.verify|verify} messages. * @param message ListCachedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListCachedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCachedContentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCachedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListCachedContentsResponse; /** * Decodes a ListCachedContentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCachedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListCachedContentsResponse; /** * Verifies a ListCachedContentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCachedContentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCachedContentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListCachedContentsResponse; /** * Creates a plain object from a ListCachedContentsResponse message. Also converts values to other types if specified. * @param message ListCachedContentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListCachedContentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCachedContentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCachedContentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateCachedContentRequest. */ interface ICreateCachedContentRequest { /** CreateCachedContentRequest cachedContent */ cachedContent?: (google.ai.generativelanguage.v1beta.ICachedContent|null); } /** Represents a CreateCachedContentRequest. */ class CreateCachedContentRequest implements ICreateCachedContentRequest { /** * Constructs a new CreateCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest); /** CreateCachedContentRequest cachedContent. */ public cachedContent?: (google.ai.generativelanguage.v1beta.ICachedContent|null); /** * Creates a new CreateCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest): google.ai.generativelanguage.v1beta.CreateCachedContentRequest; /** * Encodes the specified CreateCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateCachedContentRequest.verify|verify} messages. * @param message CreateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateCachedContentRequest.verify|verify} messages. * @param message CreateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateCachedContentRequest; /** * Decodes a CreateCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateCachedContentRequest; /** * Verifies a CreateCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateCachedContentRequest; /** * Creates a plain object from a CreateCachedContentRequest message. Also converts values to other types if specified. * @param message CreateCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetCachedContentRequest. */ interface IGetCachedContentRequest { /** GetCachedContentRequest name */ name?: (string|null); } /** Represents a GetCachedContentRequest. */ class GetCachedContentRequest implements IGetCachedContentRequest { /** * Constructs a new GetCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetCachedContentRequest); /** GetCachedContentRequest name. */ public name: string; /** * Creates a new GetCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetCachedContentRequest): google.ai.generativelanguage.v1beta.GetCachedContentRequest; /** * Encodes the specified GetCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetCachedContentRequest.verify|verify} messages. * @param message GetCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetCachedContentRequest.verify|verify} messages. * @param message GetCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetCachedContentRequest; /** * Decodes a GetCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetCachedContentRequest; /** * Verifies a GetCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetCachedContentRequest; /** * Creates a plain object from a GetCachedContentRequest message. Also converts values to other types if specified. * @param message GetCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateCachedContentRequest. */ interface IUpdateCachedContentRequest { /** UpdateCachedContentRequest cachedContent */ cachedContent?: (google.ai.generativelanguage.v1beta.ICachedContent|null); /** UpdateCachedContentRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateCachedContentRequest. */ class UpdateCachedContentRequest implements IUpdateCachedContentRequest { /** * Constructs a new UpdateCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest); /** UpdateCachedContentRequest cachedContent. */ public cachedContent?: (google.ai.generativelanguage.v1beta.ICachedContent|null); /** UpdateCachedContentRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest): google.ai.generativelanguage.v1beta.UpdateCachedContentRequest; /** * Encodes the specified UpdateCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateCachedContentRequest.verify|verify} messages. * @param message UpdateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateCachedContentRequest.verify|verify} messages. * @param message UpdateCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdateCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdateCachedContentRequest; /** * Decodes an UpdateCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdateCachedContentRequest; /** * Verifies an UpdateCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdateCachedContentRequest; /** * Creates a plain object from an UpdateCachedContentRequest message. Also converts values to other types if specified. * @param message UpdateCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdateCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteCachedContentRequest. */ interface IDeleteCachedContentRequest { /** DeleteCachedContentRequest name */ name?: (string|null); } /** Represents a DeleteCachedContentRequest. */ class DeleteCachedContentRequest implements IDeleteCachedContentRequest { /** * Constructs a new DeleteCachedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest); /** DeleteCachedContentRequest name. */ public name: string; /** * Creates a new DeleteCachedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteCachedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest): google.ai.generativelanguage.v1beta.DeleteCachedContentRequest; /** * Encodes the specified DeleteCachedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteCachedContentRequest.verify|verify} messages. * @param message DeleteCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteCachedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteCachedContentRequest.verify|verify} messages. * @param message DeleteCachedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteCachedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteCachedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteCachedContentRequest; /** * Decodes a DeleteCachedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteCachedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteCachedContentRequest; /** * Verifies a DeleteCachedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteCachedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteCachedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteCachedContentRequest; /** * Creates a plain object from a DeleteCachedContentRequest message. Also converts values to other types if specified. * @param message DeleteCachedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteCachedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteCachedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteCachedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CachedContent. */ interface ICachedContent { /** CachedContent expireTime */ expireTime?: (google.protobuf.ITimestamp|null); /** CachedContent ttl */ ttl?: (google.protobuf.IDuration|null); /** CachedContent name */ name?: (string|null); /** CachedContent displayName */ displayName?: (string|null); /** CachedContent model */ model?: (string|null); /** CachedContent systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** CachedContent contents */ contents?: (google.ai.generativelanguage.v1beta.IContent[]|null); /** CachedContent tools */ tools?: (google.ai.generativelanguage.v1beta.ITool[]|null); /** CachedContent toolConfig */ toolConfig?: (google.ai.generativelanguage.v1beta.IToolConfig|null); /** CachedContent createTime */ createTime?: (google.protobuf.ITimestamp|null); /** CachedContent updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** CachedContent usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata|null); } /** Represents a CachedContent. */ class CachedContent implements ICachedContent { /** * Constructs a new CachedContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICachedContent); /** CachedContent expireTime. */ public expireTime?: (google.protobuf.ITimestamp|null); /** CachedContent ttl. */ public ttl?: (google.protobuf.IDuration|null); /** CachedContent name. */ public name?: (string|null); /** CachedContent displayName. */ public displayName?: (string|null); /** CachedContent model. */ public model?: (string|null); /** CachedContent systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** CachedContent contents. */ public contents: google.ai.generativelanguage.v1beta.IContent[]; /** CachedContent tools. */ public tools: google.ai.generativelanguage.v1beta.ITool[]; /** CachedContent toolConfig. */ public toolConfig?: (google.ai.generativelanguage.v1beta.IToolConfig|null); /** CachedContent createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** CachedContent updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** CachedContent usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata|null); /** CachedContent expiration. */ public expiration?: ("expireTime"|"ttl"); /** * Creates a new CachedContent instance using the specified properties. * @param [properties] Properties to set * @returns CachedContent instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICachedContent): google.ai.generativelanguage.v1beta.CachedContent; /** * Encodes the specified CachedContent message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CachedContent.verify|verify} messages. * @param message CachedContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICachedContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CachedContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CachedContent.verify|verify} messages. * @param message CachedContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICachedContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CachedContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CachedContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CachedContent; /** * Decodes a CachedContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CachedContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CachedContent; /** * Verifies a CachedContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CachedContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CachedContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CachedContent; /** * Creates a plain object from a CachedContent message. Also converts values to other types if specified. * @param message CachedContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CachedContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CachedContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CachedContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace CachedContent { /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata); /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata): google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.CachedContent.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CachedContent.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Type enum. */ enum Type { TYPE_UNSPECIFIED = 0, STRING = 1, NUMBER = 2, INTEGER = 3, BOOLEAN = 4, ARRAY = 5, OBJECT = 6, NULL = 7 } /** Modality enum. */ enum Modality { MODALITY_UNSPECIFIED = 0, TEXT = 1, IMAGE = 2, VIDEO = 3, AUDIO = 4, DOCUMENT = 5 } /** Properties of a Content. */ interface IContent { /** Content parts */ parts?: (google.ai.generativelanguage.v1beta.IPart[]|null); /** Content role */ role?: (string|null); } /** Represents a Content. */ class Content implements IContent { /** * Constructs a new Content. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IContent); /** Content parts. */ public parts: google.ai.generativelanguage.v1beta.IPart[]; /** Content role. */ public role: string; /** * Creates a new Content instance using the specified properties. * @param [properties] Properties to set * @returns Content instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IContent): google.ai.generativelanguage.v1beta.Content; /** * Encodes the specified Content message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Content message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Content.verify|verify} messages. * @param message Content message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Content message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Content; /** * Decodes a Content message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Content * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Content; /** * Verifies a Content message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Content message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Content */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Content; /** * Creates a plain object from a Content message. Also converts values to other types if specified. * @param message Content * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Content, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Content to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Content * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Part. */ interface IPart { /** Part text */ text?: (string|null); /** Part inlineData */ inlineData?: (google.ai.generativelanguage.v1beta.IBlob|null); /** Part functionCall */ functionCall?: (google.ai.generativelanguage.v1beta.IFunctionCall|null); /** Part functionResponse */ functionResponse?: (google.ai.generativelanguage.v1beta.IFunctionResponse|null); /** Part fileData */ fileData?: (google.ai.generativelanguage.v1beta.IFileData|null); /** Part executableCode */ executableCode?: (google.ai.generativelanguage.v1beta.IExecutableCode|null); /** Part codeExecutionResult */ codeExecutionResult?: (google.ai.generativelanguage.v1beta.ICodeExecutionResult|null); /** Part videoMetadata */ videoMetadata?: (google.ai.generativelanguage.v1beta.IVideoMetadata|null); /** Part thought */ thought?: (boolean|null); /** Part thoughtSignature */ thoughtSignature?: (Uint8Array|Buffer|string|null); /** Part partMetadata */ partMetadata?: (google.protobuf.IStruct|null); } /** Represents a Part. */ class Part implements IPart { /** * Constructs a new Part. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPart); /** Part text. */ public text?: (string|null); /** Part inlineData. */ public inlineData?: (google.ai.generativelanguage.v1beta.IBlob|null); /** Part functionCall. */ public functionCall?: (google.ai.generativelanguage.v1beta.IFunctionCall|null); /** Part functionResponse. */ public functionResponse?: (google.ai.generativelanguage.v1beta.IFunctionResponse|null); /** Part fileData. */ public fileData?: (google.ai.generativelanguage.v1beta.IFileData|null); /** Part executableCode. */ public executableCode?: (google.ai.generativelanguage.v1beta.IExecutableCode|null); /** Part codeExecutionResult. */ public codeExecutionResult?: (google.ai.generativelanguage.v1beta.ICodeExecutionResult|null); /** Part videoMetadata. */ public videoMetadata?: (google.ai.generativelanguage.v1beta.IVideoMetadata|null); /** Part thought. */ public thought: boolean; /** Part thoughtSignature. */ public thoughtSignature: (Uint8Array|Buffer|string); /** Part partMetadata. */ public partMetadata?: (google.protobuf.IStruct|null); /** Part data. */ public data?: ("text"|"inlineData"|"functionCall"|"functionResponse"|"fileData"|"executableCode"|"codeExecutionResult"); /** Part metadata. */ public metadata?: "videoMetadata"; /** * Creates a new Part instance using the specified properties. * @param [properties] Properties to set * @returns Part instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPart): google.ai.generativelanguage.v1beta.Part; /** * Encodes the specified Part message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Part message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Part.verify|verify} messages. * @param message Part message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Part message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Part; /** * Decodes a Part message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Part * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Part; /** * Verifies a Part message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Part message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Part */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Part; /** * Creates a plain object from a Part message. Also converts values to other types if specified. * @param message Part * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Part, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Part to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Part * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionResponsePart. */ interface IFunctionResponsePart { /** FunctionResponsePart inlineData */ inlineData?: (google.ai.generativelanguage.v1beta.IFunctionResponseBlob|null); } /** Represents a FunctionResponsePart. */ class FunctionResponsePart implements IFunctionResponsePart { /** * Constructs a new FunctionResponsePart. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionResponsePart); /** FunctionResponsePart inlineData. */ public inlineData?: (google.ai.generativelanguage.v1beta.IFunctionResponseBlob|null); /** FunctionResponsePart data. */ public data?: "inlineData"; /** * Creates a new FunctionResponsePart instance using the specified properties. * @param [properties] Properties to set * @returns FunctionResponsePart instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionResponsePart): google.ai.generativelanguage.v1beta.FunctionResponsePart; /** * Encodes the specified FunctionResponsePart message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponsePart.verify|verify} messages. * @param message FunctionResponsePart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionResponsePart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionResponsePart message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponsePart.verify|verify} messages. * @param message FunctionResponsePart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionResponsePart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionResponsePart message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionResponsePart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionResponsePart; /** * Decodes a FunctionResponsePart message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionResponsePart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionResponsePart; /** * Verifies a FunctionResponsePart message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionResponsePart message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionResponsePart */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionResponsePart; /** * Creates a plain object from a FunctionResponsePart message. Also converts values to other types if specified. * @param message FunctionResponsePart * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionResponsePart, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionResponsePart to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionResponsePart * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Blob. */ interface IBlob { /** Blob mimeType */ mimeType?: (string|null); /** Blob data */ data?: (Uint8Array|Buffer|string|null); } /** Represents a Blob. */ class Blob implements IBlob { /** * Constructs a new Blob. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBlob); /** Blob mimeType. */ public mimeType: string; /** Blob data. */ public data: (Uint8Array|Buffer|string); /** * Creates a new Blob instance using the specified properties. * @param [properties] Properties to set * @returns Blob instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBlob): google.ai.generativelanguage.v1beta.Blob; /** * Encodes the specified Blob message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Blob message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Blob.verify|verify} messages. * @param message Blob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Blob message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Blob; /** * Decodes a Blob message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Blob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Blob; /** * Verifies a Blob message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Blob message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Blob */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Blob; /** * Creates a plain object from a Blob message. Also converts values to other types if specified. * @param message Blob * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Blob, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Blob to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Blob * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionResponseBlob. */ interface IFunctionResponseBlob { /** FunctionResponseBlob mimeType */ mimeType?: (string|null); /** FunctionResponseBlob data */ data?: (Uint8Array|Buffer|string|null); } /** Represents a FunctionResponseBlob. */ class FunctionResponseBlob implements IFunctionResponseBlob { /** * Constructs a new FunctionResponseBlob. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionResponseBlob); /** FunctionResponseBlob mimeType. */ public mimeType: string; /** FunctionResponseBlob data. */ public data: (Uint8Array|Buffer|string); /** * Creates a new FunctionResponseBlob instance using the specified properties. * @param [properties] Properties to set * @returns FunctionResponseBlob instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionResponseBlob): google.ai.generativelanguage.v1beta.FunctionResponseBlob; /** * Encodes the specified FunctionResponseBlob message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponseBlob.verify|verify} messages. * @param message FunctionResponseBlob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionResponseBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionResponseBlob message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponseBlob.verify|verify} messages. * @param message FunctionResponseBlob message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionResponseBlob, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionResponseBlob message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionResponseBlob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionResponseBlob; /** * Decodes a FunctionResponseBlob message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionResponseBlob * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionResponseBlob; /** * Verifies a FunctionResponseBlob message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionResponseBlob message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionResponseBlob */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionResponseBlob; /** * Creates a plain object from a FunctionResponseBlob message. Also converts values to other types if specified. * @param message FunctionResponseBlob * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionResponseBlob, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionResponseBlob to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionResponseBlob * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FileData. */ interface IFileData { /** FileData mimeType */ mimeType?: (string|null); /** FileData fileUri */ fileUri?: (string|null); } /** Represents a FileData. */ class FileData implements IFileData { /** * Constructs a new FileData. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFileData); /** FileData mimeType. */ public mimeType: string; /** FileData fileUri. */ public fileUri: string; /** * Creates a new FileData instance using the specified properties. * @param [properties] Properties to set * @returns FileData instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFileData): google.ai.generativelanguage.v1beta.FileData; /** * Encodes the specified FileData message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileData.verify|verify} messages. * @param message FileData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFileData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileData message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileData.verify|verify} messages. * @param message FileData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFileData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileData message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FileData; /** * Decodes a FileData message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FileData; /** * Verifies a FileData message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileData message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileData */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FileData; /** * Creates a plain object from a FileData message. Also converts values to other types if specified. * @param message FileData * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FileData, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileData to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileData * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a VideoMetadata. */ interface IVideoMetadata { /** VideoMetadata startOffset */ startOffset?: (google.protobuf.IDuration|null); /** VideoMetadata endOffset */ endOffset?: (google.protobuf.IDuration|null); /** VideoMetadata fps */ fps?: (number|null); } /** Represents a VideoMetadata. */ class VideoMetadata implements IVideoMetadata { /** * Constructs a new VideoMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IVideoMetadata); /** VideoMetadata startOffset. */ public startOffset?: (google.protobuf.IDuration|null); /** VideoMetadata endOffset. */ public endOffset?: (google.protobuf.IDuration|null); /** VideoMetadata fps. */ public fps: number; /** * Creates a new VideoMetadata instance using the specified properties. * @param [properties] Properties to set * @returns VideoMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IVideoMetadata): google.ai.generativelanguage.v1beta.VideoMetadata; /** * Encodes the specified VideoMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VideoMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.VideoMetadata.verify|verify} messages. * @param message VideoMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IVideoMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VideoMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.VideoMetadata; /** * Decodes a VideoMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VideoMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.VideoMetadata; /** * Verifies a VideoMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VideoMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VideoMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.VideoMetadata; /** * Creates a plain object from a VideoMetadata message. Also converts values to other types if specified. * @param message VideoMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.VideoMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VideoMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VideoMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an ExecutableCode. */ interface IExecutableCode { /** ExecutableCode language */ language?: (google.ai.generativelanguage.v1beta.ExecutableCode.Language|keyof typeof google.ai.generativelanguage.v1beta.ExecutableCode.Language|null); /** ExecutableCode code */ code?: (string|null); } /** Represents an ExecutableCode. */ class ExecutableCode implements IExecutableCode { /** * Constructs a new ExecutableCode. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IExecutableCode); /** ExecutableCode language. */ public language: (google.ai.generativelanguage.v1beta.ExecutableCode.Language|keyof typeof google.ai.generativelanguage.v1beta.ExecutableCode.Language); /** ExecutableCode code. */ public code: string; /** * Creates a new ExecutableCode instance using the specified properties. * @param [properties] Properties to set * @returns ExecutableCode instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IExecutableCode): google.ai.generativelanguage.v1beta.ExecutableCode; /** * Encodes the specified ExecutableCode message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ExecutableCode.verify|verify} messages. * @param message ExecutableCode message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IExecutableCode, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ExecutableCode message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ExecutableCode.verify|verify} messages. * @param message ExecutableCode message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IExecutableCode, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ExecutableCode message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ExecutableCode * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ExecutableCode; /** * Decodes an ExecutableCode message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ExecutableCode * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ExecutableCode; /** * Verifies an ExecutableCode message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ExecutableCode message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ExecutableCode */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ExecutableCode; /** * Creates a plain object from an ExecutableCode message. Also converts values to other types if specified. * @param message ExecutableCode * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ExecutableCode, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ExecutableCode to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ExecutableCode * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ExecutableCode { /** Language enum. */ enum Language { LANGUAGE_UNSPECIFIED = 0, PYTHON = 1 } } /** Properties of a CodeExecutionResult. */ interface ICodeExecutionResult { /** CodeExecutionResult outcome */ outcome?: (google.ai.generativelanguage.v1beta.CodeExecutionResult.Outcome|keyof typeof google.ai.generativelanguage.v1beta.CodeExecutionResult.Outcome|null); /** CodeExecutionResult output */ output?: (string|null); } /** Represents a CodeExecutionResult. */ class CodeExecutionResult implements ICodeExecutionResult { /** * Constructs a new CodeExecutionResult. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICodeExecutionResult); /** CodeExecutionResult outcome. */ public outcome: (google.ai.generativelanguage.v1beta.CodeExecutionResult.Outcome|keyof typeof google.ai.generativelanguage.v1beta.CodeExecutionResult.Outcome); /** CodeExecutionResult output. */ public output: string; /** * Creates a new CodeExecutionResult instance using the specified properties. * @param [properties] Properties to set * @returns CodeExecutionResult instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICodeExecutionResult): google.ai.generativelanguage.v1beta.CodeExecutionResult; /** * Encodes the specified CodeExecutionResult message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CodeExecutionResult.verify|verify} messages. * @param message CodeExecutionResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICodeExecutionResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CodeExecutionResult message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CodeExecutionResult.verify|verify} messages. * @param message CodeExecutionResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICodeExecutionResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CodeExecutionResult message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CodeExecutionResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CodeExecutionResult; /** * Decodes a CodeExecutionResult message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CodeExecutionResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CodeExecutionResult; /** * Verifies a CodeExecutionResult message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CodeExecutionResult message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CodeExecutionResult */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CodeExecutionResult; /** * Creates a plain object from a CodeExecutionResult message. Also converts values to other types if specified. * @param message CodeExecutionResult * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CodeExecutionResult, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CodeExecutionResult to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CodeExecutionResult * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace CodeExecutionResult { /** Outcome enum. */ enum Outcome { OUTCOME_UNSPECIFIED = 0, OUTCOME_OK = 1, OUTCOME_FAILED = 2, OUTCOME_DEADLINE_EXCEEDED = 3 } } /** Properties of a Tool. */ interface ITool { /** Tool functionDeclarations */ functionDeclarations?: (google.ai.generativelanguage.v1beta.IFunctionDeclaration[]|null); /** Tool googleSearchRetrieval */ googleSearchRetrieval?: (google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval|null); /** Tool codeExecution */ codeExecution?: (google.ai.generativelanguage.v1beta.ICodeExecution|null); /** Tool googleSearch */ googleSearch?: (google.ai.generativelanguage.v1beta.Tool.IGoogleSearch|null); /** Tool computerUse */ computerUse?: (google.ai.generativelanguage.v1beta.Tool.IComputerUse|null); /** Tool urlContext */ urlContext?: (google.ai.generativelanguage.v1beta.IUrlContext|null); /** Tool fileSearch */ fileSearch?: (google.ai.generativelanguage.v1beta.IFileSearch|null); /** Tool googleMaps */ googleMaps?: (google.ai.generativelanguage.v1beta.IGoogleMaps|null); } /** Represents a Tool. */ class Tool implements ITool { /** * Constructs a new Tool. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITool); /** Tool functionDeclarations. */ public functionDeclarations: google.ai.generativelanguage.v1beta.IFunctionDeclaration[]; /** Tool googleSearchRetrieval. */ public googleSearchRetrieval?: (google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval|null); /** Tool codeExecution. */ public codeExecution?: (google.ai.generativelanguage.v1beta.ICodeExecution|null); /** Tool googleSearch. */ public googleSearch?: (google.ai.generativelanguage.v1beta.Tool.IGoogleSearch|null); /** Tool computerUse. */ public computerUse?: (google.ai.generativelanguage.v1beta.Tool.IComputerUse|null); /** Tool urlContext. */ public urlContext?: (google.ai.generativelanguage.v1beta.IUrlContext|null); /** Tool fileSearch. */ public fileSearch?: (google.ai.generativelanguage.v1beta.IFileSearch|null); /** Tool googleMaps. */ public googleMaps?: (google.ai.generativelanguage.v1beta.IGoogleMaps|null); /** * Creates a new Tool instance using the specified properties. * @param [properties] Properties to set * @returns Tool instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITool): google.ai.generativelanguage.v1beta.Tool; /** * Encodes the specified Tool message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.verify|verify} messages. * @param message Tool message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITool, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Tool message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.verify|verify} messages. * @param message Tool message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITool, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Tool message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Tool * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Tool; /** * Decodes a Tool message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Tool * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Tool; /** * Verifies a Tool message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Tool message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Tool */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Tool; /** * Creates a plain object from a Tool message. Also converts values to other types if specified. * @param message Tool * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Tool, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Tool to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Tool * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Tool { /** Properties of a GoogleSearch. */ interface IGoogleSearch { /** GoogleSearch timeRangeFilter */ timeRangeFilter?: (google.type.IInterval|null); } /** Represents a GoogleSearch. */ class GoogleSearch implements IGoogleSearch { /** * Constructs a new GoogleSearch. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.Tool.IGoogleSearch); /** GoogleSearch timeRangeFilter. */ public timeRangeFilter?: (google.type.IInterval|null); /** * Creates a new GoogleSearch instance using the specified properties. * @param [properties] Properties to set * @returns GoogleSearch instance */ public static create(properties?: google.ai.generativelanguage.v1beta.Tool.IGoogleSearch): google.ai.generativelanguage.v1beta.Tool.GoogleSearch; /** * Encodes the specified GoogleSearch message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.GoogleSearch.verify|verify} messages. * @param message GoogleSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.Tool.IGoogleSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoogleSearch message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.GoogleSearch.verify|verify} messages. * @param message GoogleSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.Tool.IGoogleSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoogleSearch message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoogleSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Tool.GoogleSearch; /** * Decodes a GoogleSearch message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoogleSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Tool.GoogleSearch; /** * Verifies a GoogleSearch message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoogleSearch message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoogleSearch */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Tool.GoogleSearch; /** * Creates a plain object from a GoogleSearch message. Also converts values to other types if specified. * @param message GoogleSearch * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Tool.GoogleSearch, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoogleSearch to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoogleSearch * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ComputerUse. */ interface IComputerUse { /** ComputerUse environment */ environment?: (google.ai.generativelanguage.v1beta.Tool.ComputerUse.Environment|keyof typeof google.ai.generativelanguage.v1beta.Tool.ComputerUse.Environment|null); /** ComputerUse excludedPredefinedFunctions */ excludedPredefinedFunctions?: (string[]|null); } /** Represents a ComputerUse. */ class ComputerUse implements IComputerUse { /** * Constructs a new ComputerUse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.Tool.IComputerUse); /** ComputerUse environment. */ public environment: (google.ai.generativelanguage.v1beta.Tool.ComputerUse.Environment|keyof typeof google.ai.generativelanguage.v1beta.Tool.ComputerUse.Environment); /** ComputerUse excludedPredefinedFunctions. */ public excludedPredefinedFunctions: string[]; /** * Creates a new ComputerUse instance using the specified properties. * @param [properties] Properties to set * @returns ComputerUse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.Tool.IComputerUse): google.ai.generativelanguage.v1beta.Tool.ComputerUse; /** * Encodes the specified ComputerUse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.ComputerUse.verify|verify} messages. * @param message ComputerUse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.Tool.IComputerUse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ComputerUse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Tool.ComputerUse.verify|verify} messages. * @param message ComputerUse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.Tool.IComputerUse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ComputerUse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ComputerUse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Tool.ComputerUse; /** * Decodes a ComputerUse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ComputerUse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Tool.ComputerUse; /** * Verifies a ComputerUse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ComputerUse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ComputerUse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Tool.ComputerUse; /** * Creates a plain object from a ComputerUse message. Also converts values to other types if specified. * @param message ComputerUse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Tool.ComputerUse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ComputerUse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ComputerUse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ComputerUse { /** Environment enum. */ enum Environment { ENVIRONMENT_UNSPECIFIED = 0, ENVIRONMENT_BROWSER = 1 } } } /** Properties of a GoogleMaps. */ interface IGoogleMaps { /** GoogleMaps enableWidget */ enableWidget?: (boolean|null); } /** Represents a GoogleMaps. */ class GoogleMaps implements IGoogleMaps { /** * Constructs a new GoogleMaps. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGoogleMaps); /** GoogleMaps enableWidget. */ public enableWidget: boolean; /** * Creates a new GoogleMaps instance using the specified properties. * @param [properties] Properties to set * @returns GoogleMaps instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGoogleMaps): google.ai.generativelanguage.v1beta.GoogleMaps; /** * Encodes the specified GoogleMaps message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoogleMaps.verify|verify} messages. * @param message GoogleMaps message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGoogleMaps, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoogleMaps message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoogleMaps.verify|verify} messages. * @param message GoogleMaps message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGoogleMaps, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoogleMaps message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoogleMaps * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GoogleMaps; /** * Decodes a GoogleMaps message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoogleMaps * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GoogleMaps; /** * Verifies a GoogleMaps message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoogleMaps message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoogleMaps */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GoogleMaps; /** * Creates a plain object from a GoogleMaps message. Also converts values to other types if specified. * @param message GoogleMaps * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GoogleMaps, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoogleMaps to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoogleMaps * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UrlContext. */ interface IUrlContext { } /** Represents an UrlContext. */ class UrlContext implements IUrlContext { /** * Constructs a new UrlContext. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUrlContext); /** * Creates a new UrlContext instance using the specified properties. * @param [properties] Properties to set * @returns UrlContext instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUrlContext): google.ai.generativelanguage.v1beta.UrlContext; /** * Encodes the specified UrlContext message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlContext.verify|verify} messages. * @param message UrlContext message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUrlContext, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UrlContext message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlContext.verify|verify} messages. * @param message UrlContext message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUrlContext, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UrlContext message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UrlContext * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UrlContext; /** * Decodes an UrlContext message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UrlContext * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UrlContext; /** * Verifies an UrlContext message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UrlContext message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UrlContext */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UrlContext; /** * Creates a plain object from an UrlContext message. Also converts values to other types if specified. * @param message UrlContext * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UrlContext, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UrlContext to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UrlContext * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FileSearch. */ interface IFileSearch { /** FileSearch retrievalResources */ retrievalResources?: (google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource[]|null); /** FileSearch retrievalConfig */ retrievalConfig?: (google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig|null); } /** Represents a FileSearch. */ class FileSearch implements IFileSearch { /** * Constructs a new FileSearch. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFileSearch); /** FileSearch retrievalResources. */ public retrievalResources: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource[]; /** FileSearch retrievalConfig. */ public retrievalConfig?: (google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig|null); /** * Creates a new FileSearch instance using the specified properties. * @param [properties] Properties to set * @returns FileSearch instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFileSearch): google.ai.generativelanguage.v1beta.FileSearch; /** * Encodes the specified FileSearch message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.verify|verify} messages. * @param message FileSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFileSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileSearch message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.verify|verify} messages. * @param message FileSearch message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFileSearch, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileSearch message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FileSearch; /** * Decodes a FileSearch message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileSearch * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FileSearch; /** * Verifies a FileSearch message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileSearch message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileSearch */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FileSearch; /** * Creates a plain object from a FileSearch message. Also converts values to other types if specified. * @param message FileSearch * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FileSearch, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileSearch to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileSearch * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FileSearch { /** Properties of a RetrievalResource. */ interface IRetrievalResource { /** RetrievalResource ragStoreName */ ragStoreName?: (string|null); } /** Represents a RetrievalResource. */ class RetrievalResource implements IRetrievalResource { /** * Constructs a new RetrievalResource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource); /** RetrievalResource ragStoreName. */ public ragStoreName: string; /** * Creates a new RetrievalResource instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalResource instance */ public static create(properties?: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource): google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource; /** * Encodes the specified RetrievalResource message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource.verify|verify} messages. * @param message RetrievalResource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalResource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource.verify|verify} messages. * @param message RetrievalResource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalResource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalResource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalResource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource; /** * Decodes a RetrievalResource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalResource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource; /** * Verifies a RetrievalResource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalResource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalResource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource; /** * Creates a plain object from a RetrievalResource message. Also converts values to other types if specified. * @param message RetrievalResource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FileSearch.RetrievalResource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalResource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalResource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RetrievalConfig. */ interface IRetrievalConfig { /** RetrievalConfig topK */ topK?: (number|null); /** RetrievalConfig metadataFilter */ metadataFilter?: (string|null); } /** Represents a RetrievalConfig. */ class RetrievalConfig implements IRetrievalConfig { /** * Constructs a new RetrievalConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig); /** RetrievalConfig topK. */ public topK?: (number|null); /** RetrievalConfig metadataFilter. */ public metadataFilter: string; /** * Creates a new RetrievalConfig instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig): google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig; /** * Encodes the specified RetrievalConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig.verify|verify} messages. * @param message RetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig.verify|verify} messages. * @param message RetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.FileSearch.IRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig; /** * Decodes a RetrievalConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig; /** * Verifies a RetrievalConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig; /** * Creates a plain object from a RetrievalConfig message. Also converts values to other types if specified. * @param message RetrievalConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FileSearch.RetrievalConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a GoogleSearchRetrieval. */ interface IGoogleSearchRetrieval { /** GoogleSearchRetrieval dynamicRetrievalConfig */ dynamicRetrievalConfig?: (google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig|null); } /** Represents a GoogleSearchRetrieval. */ class GoogleSearchRetrieval implements IGoogleSearchRetrieval { /** * Constructs a new GoogleSearchRetrieval. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval); /** GoogleSearchRetrieval dynamicRetrievalConfig. */ public dynamicRetrievalConfig?: (google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig|null); /** * Creates a new GoogleSearchRetrieval instance using the specified properties. * @param [properties] Properties to set * @returns GoogleSearchRetrieval instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval): google.ai.generativelanguage.v1beta.GoogleSearchRetrieval; /** * Encodes the specified GoogleSearchRetrieval message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoogleSearchRetrieval.verify|verify} messages. * @param message GoogleSearchRetrieval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoogleSearchRetrieval message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoogleSearchRetrieval.verify|verify} messages. * @param message GoogleSearchRetrieval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGoogleSearchRetrieval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoogleSearchRetrieval message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoogleSearchRetrieval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GoogleSearchRetrieval; /** * Decodes a GoogleSearchRetrieval message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoogleSearchRetrieval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GoogleSearchRetrieval; /** * Verifies a GoogleSearchRetrieval message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoogleSearchRetrieval message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoogleSearchRetrieval */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GoogleSearchRetrieval; /** * Creates a plain object from a GoogleSearchRetrieval message. Also converts values to other types if specified. * @param message GoogleSearchRetrieval * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GoogleSearchRetrieval, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoogleSearchRetrieval to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoogleSearchRetrieval * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DynamicRetrievalConfig. */ interface IDynamicRetrievalConfig { /** DynamicRetrievalConfig mode */ mode?: (google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.Mode|keyof typeof google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.Mode|null); /** DynamicRetrievalConfig dynamicThreshold */ dynamicThreshold?: (number|null); } /** Represents a DynamicRetrievalConfig. */ class DynamicRetrievalConfig implements IDynamicRetrievalConfig { /** * Constructs a new DynamicRetrievalConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig); /** DynamicRetrievalConfig mode. */ public mode: (google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.Mode|keyof typeof google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.Mode); /** DynamicRetrievalConfig dynamicThreshold. */ public dynamicThreshold?: (number|null); /** * Creates a new DynamicRetrievalConfig instance using the specified properties. * @param [properties] Properties to set * @returns DynamicRetrievalConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig): google.ai.generativelanguage.v1beta.DynamicRetrievalConfig; /** * Encodes the specified DynamicRetrievalConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.verify|verify} messages. * @param message DynamicRetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DynamicRetrievalConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DynamicRetrievalConfig.verify|verify} messages. * @param message DynamicRetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDynamicRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DynamicRetrievalConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DynamicRetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DynamicRetrievalConfig; /** * Decodes a DynamicRetrievalConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DynamicRetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DynamicRetrievalConfig; /** * Verifies a DynamicRetrievalConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DynamicRetrievalConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DynamicRetrievalConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DynamicRetrievalConfig; /** * Creates a plain object from a DynamicRetrievalConfig message. Also converts values to other types if specified. * @param message DynamicRetrievalConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DynamicRetrievalConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DynamicRetrievalConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DynamicRetrievalConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace DynamicRetrievalConfig { /** Mode enum. */ enum Mode { MODE_UNSPECIFIED = 0, MODE_DYNAMIC = 1 } } /** Properties of a CodeExecution. */ interface ICodeExecution { } /** Represents a CodeExecution. */ class CodeExecution implements ICodeExecution { /** * Constructs a new CodeExecution. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICodeExecution); /** * Creates a new CodeExecution instance using the specified properties. * @param [properties] Properties to set * @returns CodeExecution instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICodeExecution): google.ai.generativelanguage.v1beta.CodeExecution; /** * Encodes the specified CodeExecution message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CodeExecution.verify|verify} messages. * @param message CodeExecution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CodeExecution message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CodeExecution.verify|verify} messages. * @param message CodeExecution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICodeExecution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CodeExecution message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CodeExecution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CodeExecution; /** * Decodes a CodeExecution message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CodeExecution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CodeExecution; /** * Verifies a CodeExecution message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CodeExecution message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CodeExecution */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CodeExecution; /** * Creates a plain object from a CodeExecution message. Also converts values to other types if specified. * @param message CodeExecution * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CodeExecution, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CodeExecution to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CodeExecution * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ToolConfig. */ interface IToolConfig { /** ToolConfig functionCallingConfig */ functionCallingConfig?: (google.ai.generativelanguage.v1beta.IFunctionCallingConfig|null); /** ToolConfig retrievalConfig */ retrievalConfig?: (google.ai.generativelanguage.v1beta.IRetrievalConfig|null); } /** Represents a ToolConfig. */ class ToolConfig implements IToolConfig { /** * Constructs a new ToolConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IToolConfig); /** ToolConfig functionCallingConfig. */ public functionCallingConfig?: (google.ai.generativelanguage.v1beta.IFunctionCallingConfig|null); /** ToolConfig retrievalConfig. */ public retrievalConfig?: (google.ai.generativelanguage.v1beta.IRetrievalConfig|null); /** * Creates a new ToolConfig instance using the specified properties. * @param [properties] Properties to set * @returns ToolConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IToolConfig): google.ai.generativelanguage.v1beta.ToolConfig; /** * Encodes the specified ToolConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ToolConfig.verify|verify} messages. * @param message ToolConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IToolConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ToolConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ToolConfig.verify|verify} messages. * @param message ToolConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IToolConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ToolConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ToolConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ToolConfig; /** * Decodes a ToolConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ToolConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ToolConfig; /** * Verifies a ToolConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ToolConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ToolConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ToolConfig; /** * Creates a plain object from a ToolConfig message. Also converts values to other types if specified. * @param message ToolConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ToolConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ToolConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ToolConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RetrievalConfig. */ interface IRetrievalConfig { /** RetrievalConfig latLng */ latLng?: (google.type.ILatLng|null); /** RetrievalConfig languageCode */ languageCode?: (string|null); } /** Represents a RetrievalConfig. */ class RetrievalConfig implements IRetrievalConfig { /** * Constructs a new RetrievalConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IRetrievalConfig); /** RetrievalConfig latLng. */ public latLng?: (google.type.ILatLng|null); /** RetrievalConfig languageCode. */ public languageCode: string; /** * Creates a new RetrievalConfig instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IRetrievalConfig): google.ai.generativelanguage.v1beta.RetrievalConfig; /** * Encodes the specified RetrievalConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.RetrievalConfig.verify|verify} messages. * @param message RetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.RetrievalConfig.verify|verify} messages. * @param message RetrievalConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IRetrievalConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.RetrievalConfig; /** * Decodes a RetrievalConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.RetrievalConfig; /** * Verifies a RetrievalConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.RetrievalConfig; /** * Creates a plain object from a RetrievalConfig message. Also converts values to other types if specified. * @param message RetrievalConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.RetrievalConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionCallingConfig. */ interface IFunctionCallingConfig { /** FunctionCallingConfig mode */ mode?: (google.ai.generativelanguage.v1beta.FunctionCallingConfig.Mode|keyof typeof google.ai.generativelanguage.v1beta.FunctionCallingConfig.Mode|null); /** FunctionCallingConfig allowedFunctionNames */ allowedFunctionNames?: (string[]|null); } /** Represents a FunctionCallingConfig. */ class FunctionCallingConfig implements IFunctionCallingConfig { /** * Constructs a new FunctionCallingConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionCallingConfig); /** FunctionCallingConfig mode. */ public mode: (google.ai.generativelanguage.v1beta.FunctionCallingConfig.Mode|keyof typeof google.ai.generativelanguage.v1beta.FunctionCallingConfig.Mode); /** FunctionCallingConfig allowedFunctionNames. */ public allowedFunctionNames: string[]; /** * Creates a new FunctionCallingConfig instance using the specified properties. * @param [properties] Properties to set * @returns FunctionCallingConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionCallingConfig): google.ai.generativelanguage.v1beta.FunctionCallingConfig; /** * Encodes the specified FunctionCallingConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionCallingConfig.verify|verify} messages. * @param message FunctionCallingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionCallingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionCallingConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionCallingConfig.verify|verify} messages. * @param message FunctionCallingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionCallingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionCallingConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionCallingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionCallingConfig; /** * Decodes a FunctionCallingConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionCallingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionCallingConfig; /** * Verifies a FunctionCallingConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionCallingConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionCallingConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionCallingConfig; /** * Creates a plain object from a FunctionCallingConfig message. Also converts values to other types if specified. * @param message FunctionCallingConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionCallingConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionCallingConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionCallingConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FunctionCallingConfig { /** Mode enum. */ enum Mode { MODE_UNSPECIFIED = 0, AUTO = 1, ANY = 2, NONE = 3, VALIDATED = 4 } } /** Properties of a FunctionDeclaration. */ interface IFunctionDeclaration { /** FunctionDeclaration name */ name?: (string|null); /** FunctionDeclaration description */ description?: (string|null); /** FunctionDeclaration parameters */ parameters?: (google.ai.generativelanguage.v1beta.ISchema|null); /** FunctionDeclaration parametersJsonSchema */ parametersJsonSchema?: (google.protobuf.IValue|null); /** FunctionDeclaration response */ response?: (google.ai.generativelanguage.v1beta.ISchema|null); /** FunctionDeclaration responseJsonSchema */ responseJsonSchema?: (google.protobuf.IValue|null); /** FunctionDeclaration behavior */ behavior?: (google.ai.generativelanguage.v1beta.FunctionDeclaration.Behavior|keyof typeof google.ai.generativelanguage.v1beta.FunctionDeclaration.Behavior|null); } /** Represents a FunctionDeclaration. */ class FunctionDeclaration implements IFunctionDeclaration { /** * Constructs a new FunctionDeclaration. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionDeclaration); /** FunctionDeclaration name. */ public name: string; /** FunctionDeclaration description. */ public description: string; /** FunctionDeclaration parameters. */ public parameters?: (google.ai.generativelanguage.v1beta.ISchema|null); /** FunctionDeclaration parametersJsonSchema. */ public parametersJsonSchema?: (google.protobuf.IValue|null); /** FunctionDeclaration response. */ public response?: (google.ai.generativelanguage.v1beta.ISchema|null); /** FunctionDeclaration responseJsonSchema. */ public responseJsonSchema?: (google.protobuf.IValue|null); /** FunctionDeclaration behavior. */ public behavior: (google.ai.generativelanguage.v1beta.FunctionDeclaration.Behavior|keyof typeof google.ai.generativelanguage.v1beta.FunctionDeclaration.Behavior); /** * Creates a new FunctionDeclaration instance using the specified properties. * @param [properties] Properties to set * @returns FunctionDeclaration instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionDeclaration): google.ai.generativelanguage.v1beta.FunctionDeclaration; /** * Encodes the specified FunctionDeclaration message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionDeclaration.verify|verify} messages. * @param message FunctionDeclaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionDeclaration message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionDeclaration.verify|verify} messages. * @param message FunctionDeclaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionDeclaration message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionDeclaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionDeclaration; /** * Decodes a FunctionDeclaration message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionDeclaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionDeclaration; /** * Verifies a FunctionDeclaration message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionDeclaration message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionDeclaration */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionDeclaration; /** * Creates a plain object from a FunctionDeclaration message. Also converts values to other types if specified. * @param message FunctionDeclaration * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionDeclaration, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionDeclaration to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionDeclaration * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FunctionDeclaration { /** Behavior enum. */ enum Behavior { UNSPECIFIED = 0, BLOCKING = 1, NON_BLOCKING = 2 } } /** Properties of a FunctionCall. */ interface IFunctionCall { /** FunctionCall id */ id?: (string|null); /** FunctionCall name */ name?: (string|null); /** FunctionCall args */ args?: (google.protobuf.IStruct|null); } /** Represents a FunctionCall. */ class FunctionCall implements IFunctionCall { /** * Constructs a new FunctionCall. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionCall); /** FunctionCall id. */ public id: string; /** FunctionCall name. */ public name: string; /** FunctionCall args. */ public args?: (google.protobuf.IStruct|null); /** * Creates a new FunctionCall instance using the specified properties. * @param [properties] Properties to set * @returns FunctionCall instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionCall): google.ai.generativelanguage.v1beta.FunctionCall; /** * Encodes the specified FunctionCall message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionCall.verify|verify} messages. * @param message FunctionCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionCall message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionCall.verify|verify} messages. * @param message FunctionCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionCall message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionCall; /** * Decodes a FunctionCall message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionCall; /** * Verifies a FunctionCall message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionCall message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionCall */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionCall; /** * Creates a plain object from a FunctionCall message. Also converts values to other types if specified. * @param message FunctionCall * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionCall, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionCall to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionCall * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FunctionResponse. */ interface IFunctionResponse { /** FunctionResponse id */ id?: (string|null); /** FunctionResponse name */ name?: (string|null); /** FunctionResponse response */ response?: (google.protobuf.IStruct|null); /** FunctionResponse parts */ parts?: (google.ai.generativelanguage.v1beta.IFunctionResponsePart[]|null); /** FunctionResponse willContinue */ willContinue?: (boolean|null); /** FunctionResponse scheduling */ scheduling?: (google.ai.generativelanguage.v1beta.FunctionResponse.Scheduling|keyof typeof google.ai.generativelanguage.v1beta.FunctionResponse.Scheduling|null); } /** Represents a FunctionResponse. */ class FunctionResponse implements IFunctionResponse { /** * Constructs a new FunctionResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFunctionResponse); /** FunctionResponse id. */ public id: string; /** FunctionResponse name. */ public name: string; /** FunctionResponse response. */ public response?: (google.protobuf.IStruct|null); /** FunctionResponse parts. */ public parts: google.ai.generativelanguage.v1beta.IFunctionResponsePart[]; /** FunctionResponse willContinue. */ public willContinue: boolean; /** FunctionResponse scheduling. */ public scheduling?: (google.ai.generativelanguage.v1beta.FunctionResponse.Scheduling|keyof typeof google.ai.generativelanguage.v1beta.FunctionResponse.Scheduling|null); /** * Creates a new FunctionResponse instance using the specified properties. * @param [properties] Properties to set * @returns FunctionResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFunctionResponse): google.ai.generativelanguage.v1beta.FunctionResponse; /** * Encodes the specified FunctionResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponse.verify|verify} messages. * @param message FunctionResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFunctionResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FunctionResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.FunctionResponse.verify|verify} messages. * @param message FunctionResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFunctionResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FunctionResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FunctionResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.FunctionResponse; /** * Decodes a FunctionResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FunctionResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.FunctionResponse; /** * Verifies a FunctionResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FunctionResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FunctionResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.FunctionResponse; /** * Creates a plain object from a FunctionResponse message. Also converts values to other types if specified. * @param message FunctionResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.FunctionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FunctionResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FunctionResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FunctionResponse { /** Scheduling enum. */ enum Scheduling { SCHEDULING_UNSPECIFIED = 0, SILENT = 1, WHEN_IDLE = 2, INTERRUPT = 3 } } /** Properties of a Schema. */ interface ISchema { /** Schema type */ type?: (google.ai.generativelanguage.v1beta.Type|keyof typeof google.ai.generativelanguage.v1beta.Type|null); /** Schema format */ format?: (string|null); /** Schema title */ title?: (string|null); /** Schema description */ description?: (string|null); /** Schema nullable */ nullable?: (boolean|null); /** Schema enum */ "enum"?: (string[]|null); /** Schema items */ items?: (google.ai.generativelanguage.v1beta.ISchema|null); /** Schema maxItems */ maxItems?: (number|Long|string|null); /** Schema minItems */ minItems?: (number|Long|string|null); /** Schema properties */ properties?: ({ [k: string]: google.ai.generativelanguage.v1beta.ISchema }|null); /** Schema required */ required?: (string[]|null); /** Schema minProperties */ minProperties?: (number|Long|string|null); /** Schema maxProperties */ maxProperties?: (number|Long|string|null); /** Schema minimum */ minimum?: (number|null); /** Schema maximum */ maximum?: (number|null); /** Schema minLength */ minLength?: (number|Long|string|null); /** Schema maxLength */ maxLength?: (number|Long|string|null); /** Schema pattern */ pattern?: (string|null); /** Schema example */ example?: (google.protobuf.IValue|null); /** Schema anyOf */ anyOf?: (google.ai.generativelanguage.v1beta.ISchema[]|null); /** Schema propertyOrdering */ propertyOrdering?: (string[]|null); /** Schema default */ "default"?: (google.protobuf.IValue|null); } /** Represents a Schema. */ class Schema implements ISchema { /** * Constructs a new Schema. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISchema); /** Schema type. */ public type: (google.ai.generativelanguage.v1beta.Type|keyof typeof google.ai.generativelanguage.v1beta.Type); /** Schema format. */ public format: string; /** Schema title. */ public title: string; /** Schema description. */ public description: string; /** Schema nullable. */ public nullable: boolean; /** Schema enum. */ public enum: string[]; /** Schema items. */ public items?: (google.ai.generativelanguage.v1beta.ISchema|null); /** Schema maxItems. */ public maxItems: (number|Long|string); /** Schema minItems. */ public minItems: (number|Long|string); /** Schema properties. */ public properties: { [k: string]: google.ai.generativelanguage.v1beta.ISchema }; /** Schema required. */ public required: string[]; /** Schema minProperties. */ public minProperties: (number|Long|string); /** Schema maxProperties. */ public maxProperties: (number|Long|string); /** Schema minimum. */ public minimum?: (number|null); /** Schema maximum. */ public maximum?: (number|null); /** Schema minLength. */ public minLength: (number|Long|string); /** Schema maxLength. */ public maxLength: (number|Long|string); /** Schema pattern. */ public pattern: string; /** Schema example. */ public example?: (google.protobuf.IValue|null); /** Schema anyOf. */ public anyOf: google.ai.generativelanguage.v1beta.ISchema[]; /** Schema propertyOrdering. */ public propertyOrdering: string[]; /** Schema default. */ public default?: (google.protobuf.IValue|null); /** * Creates a new Schema instance using the specified properties. * @param [properties] Properties to set * @returns Schema instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISchema): google.ai.generativelanguage.v1beta.Schema; /** * Encodes the specified Schema message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Schema.verify|verify} messages. * @param message Schema message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISchema, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Schema message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Schema.verify|verify} messages. * @param message Schema message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISchema, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Schema message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Schema * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Schema; /** * Decodes a Schema message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Schema * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Schema; /** * Verifies a Schema message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Schema message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Schema */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Schema; /** * Creates a plain object from a Schema message. Also converts values to other types if specified. * @param message Schema * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Schema, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Schema to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Schema * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingPassage. */ interface IGroundingPassage { /** GroundingPassage id */ id?: (string|null); /** GroundingPassage content */ content?: (google.ai.generativelanguage.v1beta.IContent|null); } /** Represents a GroundingPassage. */ class GroundingPassage implements IGroundingPassage { /** * Constructs a new GroundingPassage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingPassage); /** GroundingPassage id. */ public id: string; /** GroundingPassage content. */ public content?: (google.ai.generativelanguage.v1beta.IContent|null); /** * Creates a new GroundingPassage instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassage instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingPassage): google.ai.generativelanguage.v1beta.GroundingPassage; /** * Encodes the specified GroundingPassage message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingPassage.verify|verify} messages. * @param message GroundingPassage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingPassage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingPassage.verify|verify} messages. * @param message GroundingPassage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingPassage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingPassage; /** * Decodes a GroundingPassage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingPassage; /** * Verifies a GroundingPassage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingPassage; /** * Creates a plain object from a GroundingPassage message. Also converts values to other types if specified. * @param message GroundingPassage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingPassage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingPassages. */ interface IGroundingPassages { /** GroundingPassages passages */ passages?: (google.ai.generativelanguage.v1beta.IGroundingPassage[]|null); } /** Represents a GroundingPassages. */ class GroundingPassages implements IGroundingPassages { /** * Constructs a new GroundingPassages. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingPassages); /** GroundingPassages passages. */ public passages: google.ai.generativelanguage.v1beta.IGroundingPassage[]; /** * Creates a new GroundingPassages instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassages instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingPassages): google.ai.generativelanguage.v1beta.GroundingPassages; /** * Encodes the specified GroundingPassages message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingPassages.verify|verify} messages. * @param message GroundingPassages message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingPassages, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassages message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingPassages.verify|verify} messages. * @param message GroundingPassages message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingPassages, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassages message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassages * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingPassages; /** * Decodes a GroundingPassages message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassages * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingPassages; /** * Verifies a GroundingPassages message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassages message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassages */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingPassages; /** * Creates a plain object from a GroundingPassages message. Also converts values to other types if specified. * @param message GroundingPassages * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingPassages, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassages to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassages * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ModalityTokenCount. */ interface IModalityTokenCount { /** ModalityTokenCount modality */ modality?: (google.ai.generativelanguage.v1beta.Modality|keyof typeof google.ai.generativelanguage.v1beta.Modality|null); /** ModalityTokenCount tokenCount */ tokenCount?: (number|null); } /** Represents a ModalityTokenCount. */ class ModalityTokenCount implements IModalityTokenCount { /** * Constructs a new ModalityTokenCount. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IModalityTokenCount); /** ModalityTokenCount modality. */ public modality: (google.ai.generativelanguage.v1beta.Modality|keyof typeof google.ai.generativelanguage.v1beta.Modality); /** ModalityTokenCount tokenCount. */ public tokenCount: number; /** * Creates a new ModalityTokenCount instance using the specified properties. * @param [properties] Properties to set * @returns ModalityTokenCount instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IModalityTokenCount): google.ai.generativelanguage.v1beta.ModalityTokenCount; /** * Encodes the specified ModalityTokenCount message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ModalityTokenCount.verify|verify} messages. * @param message ModalityTokenCount message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IModalityTokenCount, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ModalityTokenCount message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ModalityTokenCount.verify|verify} messages. * @param message ModalityTokenCount message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IModalityTokenCount, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ModalityTokenCount message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ModalityTokenCount * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ModalityTokenCount; /** * Decodes a ModalityTokenCount message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ModalityTokenCount * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ModalityTokenCount; /** * Verifies a ModalityTokenCount message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ModalityTokenCount message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ModalityTokenCount */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ModalityTokenCount; /** * Creates a plain object from a ModalityTokenCount message. Also converts values to other types if specified. * @param message ModalityTokenCount * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ModalityTokenCount, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ModalityTokenCount to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ModalityTokenCount * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationMetadata. */ interface ICitationMetadata { /** CitationMetadata citationSources */ citationSources?: (google.ai.generativelanguage.v1beta.ICitationSource[]|null); } /** Represents a CitationMetadata. */ class CitationMetadata implements ICitationMetadata { /** * Constructs a new CitationMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICitationMetadata); /** CitationMetadata citationSources. */ public citationSources: google.ai.generativelanguage.v1beta.ICitationSource[]; /** * Creates a new CitationMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CitationMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICitationMetadata): google.ai.generativelanguage.v1beta.CitationMetadata; /** * Encodes the specified CitationMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CitationMetadata; /** * Decodes a CitationMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CitationMetadata; /** * Verifies a CitationMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CitationMetadata; /** * Creates a plain object from a CitationMetadata message. Also converts values to other types if specified. * @param message CitationMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CitationMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationSource. */ interface ICitationSource { /** CitationSource startIndex */ startIndex?: (number|null); /** CitationSource endIndex */ endIndex?: (number|null); /** CitationSource uri */ uri?: (string|null); /** CitationSource license */ license?: (string|null); } /** Represents a CitationSource. */ class CitationSource implements ICitationSource { /** * Constructs a new CitationSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICitationSource); /** CitationSource startIndex. */ public startIndex?: (number|null); /** CitationSource endIndex. */ public endIndex?: (number|null); /** CitationSource uri. */ public uri?: (string|null); /** CitationSource license. */ public license?: (string|null); /** * Creates a new CitationSource instance using the specified properties. * @param [properties] Properties to set * @returns CitationSource instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICitationSource): google.ai.generativelanguage.v1beta.CitationSource; /** * Encodes the specified CitationSource message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CitationSource; /** * Decodes a CitationSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CitationSource; /** * Verifies a CitationSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CitationSource; /** * Creates a plain object from a CitationSource message. Also converts values to other types if specified. * @param message CitationSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CitationSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a DiscussService */ class DiscussService extends $protobuf.rpc.Service { /** * Constructs a new DiscussService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new DiscussService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DiscussService; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateMessageResponse */ public generateMessage(request: google.ai.generativelanguage.v1beta.IGenerateMessageRequest, callback: google.ai.generativelanguage.v1beta.DiscussService.GenerateMessageCallback): void; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @returns Promise */ public generateMessage(request: google.ai.generativelanguage.v1beta.IGenerateMessageRequest): Promise; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountMessageTokensResponse */ public countMessageTokens(request: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest, callback: google.ai.generativelanguage.v1beta.DiscussService.CountMessageTokensCallback): void; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @returns Promise */ public countMessageTokens(request: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest): Promise; } namespace DiscussService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.DiscussService|generateMessage}. * @param error Error, if any * @param [response] GenerateMessageResponse */ type GenerateMessageCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.GenerateMessageResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.DiscussService|countMessageTokens}. * @param error Error, if any * @param [response] CountMessageTokensResponse */ type CountMessageTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CountMessageTokensResponse) => void; } /** Properties of a GenerateMessageRequest. */ interface IGenerateMessageRequest { /** GenerateMessageRequest model */ model?: (string|null); /** GenerateMessageRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta.IMessagePrompt|null); /** GenerateMessageRequest temperature */ temperature?: (number|null); /** GenerateMessageRequest candidateCount */ candidateCount?: (number|null); /** GenerateMessageRequest topP */ topP?: (number|null); /** GenerateMessageRequest topK */ topK?: (number|null); } /** Represents a GenerateMessageRequest. */ class GenerateMessageRequest implements IGenerateMessageRequest { /** * Constructs a new GenerateMessageRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateMessageRequest); /** GenerateMessageRequest model. */ public model: string; /** GenerateMessageRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta.IMessagePrompt|null); /** GenerateMessageRequest temperature. */ public temperature?: (number|null); /** GenerateMessageRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateMessageRequest topP. */ public topP?: (number|null); /** GenerateMessageRequest topK. */ public topK?: (number|null); /** * Creates a new GenerateMessageRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateMessageRequest): google.ai.generativelanguage.v1beta.GenerateMessageRequest; /** * Encodes the specified GenerateMessageRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateMessageRequest; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateMessageRequest; /** * Verifies a GenerateMessageRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateMessageRequest; /** * Creates a plain object from a GenerateMessageRequest message. Also converts values to other types if specified. * @param message GenerateMessageRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateMessageRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateMessageResponse. */ interface IGenerateMessageResponse { /** GenerateMessageResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta.IMessage[]|null); /** GenerateMessageResponse messages */ messages?: (google.ai.generativelanguage.v1beta.IMessage[]|null); /** GenerateMessageResponse filters */ filters?: (google.ai.generativelanguage.v1beta.IContentFilter[]|null); } /** Represents a GenerateMessageResponse. */ class GenerateMessageResponse implements IGenerateMessageResponse { /** * Constructs a new GenerateMessageResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateMessageResponse); /** GenerateMessageResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta.IMessage[]; /** GenerateMessageResponse messages. */ public messages: google.ai.generativelanguage.v1beta.IMessage[]; /** GenerateMessageResponse filters. */ public filters: google.ai.generativelanguage.v1beta.IContentFilter[]; /** * Creates a new GenerateMessageResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateMessageResponse): google.ai.generativelanguage.v1beta.GenerateMessageResponse; /** * Encodes the specified GenerateMessageResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateMessageResponse; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateMessageResponse; /** * Verifies a GenerateMessageResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateMessageResponse; /** * Creates a plain object from a GenerateMessageResponse message. Also converts values to other types if specified. * @param message GenerateMessageResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateMessageResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Message. */ interface IMessage { /** Message author */ author?: (string|null); /** Message content */ content?: (string|null); /** Message citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); } /** Represents a Message. */ class Message implements IMessage { /** * Constructs a new Message. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IMessage); /** Message author. */ public author: string; /** Message content. */ public content: string; /** Message citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); /** * Creates a new Message instance using the specified properties. * @param [properties] Properties to set * @returns Message instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IMessage): google.ai.generativelanguage.v1beta.Message; /** * Encodes the specified Message message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Message message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Message message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Message; /** * Decodes a Message message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Message; /** * Verifies a Message message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Message message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Message */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Message; /** * Creates a plain object from a Message message. Also converts values to other types if specified. * @param message Message * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Message, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Message to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Message * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MessagePrompt. */ interface IMessagePrompt { /** MessagePrompt context */ context?: (string|null); /** MessagePrompt examples */ examples?: (google.ai.generativelanguage.v1beta.IExample[]|null); /** MessagePrompt messages */ messages?: (google.ai.generativelanguage.v1beta.IMessage[]|null); } /** Represents a MessagePrompt. */ class MessagePrompt implements IMessagePrompt { /** * Constructs a new MessagePrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IMessagePrompt); /** MessagePrompt context. */ public context: string; /** MessagePrompt examples. */ public examples: google.ai.generativelanguage.v1beta.IExample[]; /** MessagePrompt messages. */ public messages: google.ai.generativelanguage.v1beta.IMessage[]; /** * Creates a new MessagePrompt instance using the specified properties. * @param [properties] Properties to set * @returns MessagePrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IMessagePrompt): google.ai.generativelanguage.v1beta.MessagePrompt; /** * Encodes the specified MessagePrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MessagePrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MessagePrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.MessagePrompt; /** * Decodes a MessagePrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.MessagePrompt; /** * Verifies a MessagePrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MessagePrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MessagePrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.MessagePrompt; /** * Creates a plain object from a MessagePrompt message. Also converts values to other types if specified. * @param message MessagePrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.MessagePrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MessagePrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MessagePrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Example. */ interface IExample { /** Example input */ input?: (google.ai.generativelanguage.v1beta.IMessage|null); /** Example output */ output?: (google.ai.generativelanguage.v1beta.IMessage|null); } /** Represents an Example. */ class Example implements IExample { /** * Constructs a new Example. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IExample); /** Example input. */ public input?: (google.ai.generativelanguage.v1beta.IMessage|null); /** Example output. */ public output?: (google.ai.generativelanguage.v1beta.IMessage|null); /** * Creates a new Example instance using the specified properties. * @param [properties] Properties to set * @returns Example instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IExample): google.ai.generativelanguage.v1beta.Example; /** * Encodes the specified Example message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Example message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Example message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Example; /** * Decodes an Example message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Example; /** * Verifies an Example message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Example message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Example */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Example; /** * Creates a plain object from an Example message. Also converts values to other types if specified. * @param message Example * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Example, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Example to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Example * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensRequest. */ interface ICountMessageTokensRequest { /** CountMessageTokensRequest model */ model?: (string|null); /** CountMessageTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta.IMessagePrompt|null); } /** Represents a CountMessageTokensRequest. */ class CountMessageTokensRequest implements ICountMessageTokensRequest { /** * Constructs a new CountMessageTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest); /** CountMessageTokensRequest model. */ public model: string; /** CountMessageTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta.IMessagePrompt|null); /** * Creates a new CountMessageTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest): google.ai.generativelanguage.v1beta.CountMessageTokensRequest; /** * Encodes the specified CountMessageTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountMessageTokensRequest; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountMessageTokensRequest; /** * Verifies a CountMessageTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountMessageTokensRequest; /** * Creates a plain object from a CountMessageTokensRequest message. Also converts values to other types if specified. * @param message CountMessageTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountMessageTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensResponse. */ interface ICountMessageTokensResponse { /** CountMessageTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountMessageTokensResponse. */ class CountMessageTokensResponse implements ICountMessageTokensResponse { /** * Constructs a new CountMessageTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountMessageTokensResponse); /** CountMessageTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountMessageTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountMessageTokensResponse): google.ai.generativelanguage.v1beta.CountMessageTokensResponse; /** * Encodes the specified CountMessageTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountMessageTokensResponse; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountMessageTokensResponse; /** * Verifies a CountMessageTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountMessageTokensResponse; /** * Creates a plain object from a CountMessageTokensResponse message. Also converts values to other types if specified. * @param message CountMessageTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountMessageTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** HarmCategory enum. */ enum HarmCategory { HARM_CATEGORY_UNSPECIFIED = 0, HARM_CATEGORY_DEROGATORY = 1, HARM_CATEGORY_TOXICITY = 2, HARM_CATEGORY_VIOLENCE = 3, HARM_CATEGORY_SEXUAL = 4, HARM_CATEGORY_MEDICAL = 5, HARM_CATEGORY_DANGEROUS = 6, HARM_CATEGORY_HARASSMENT = 7, HARM_CATEGORY_HATE_SPEECH = 8, HARM_CATEGORY_SEXUALLY_EXPLICIT = 9, HARM_CATEGORY_DANGEROUS_CONTENT = 10, HARM_CATEGORY_CIVIC_INTEGRITY = 11 } /** Properties of a ContentFilter. */ interface IContentFilter { /** ContentFilter reason */ reason?: (google.ai.generativelanguage.v1beta.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta.ContentFilter.BlockedReason|null); /** ContentFilter message */ message?: (string|null); } /** Represents a ContentFilter. */ class ContentFilter implements IContentFilter { /** * Constructs a new ContentFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IContentFilter); /** ContentFilter reason. */ public reason: (google.ai.generativelanguage.v1beta.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta.ContentFilter.BlockedReason); /** ContentFilter message. */ public message?: (string|null); /** * Creates a new ContentFilter instance using the specified properties. * @param [properties] Properties to set * @returns ContentFilter instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IContentFilter): google.ai.generativelanguage.v1beta.ContentFilter; /** * Encodes the specified ContentFilter message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ContentFilter; /** * Decodes a ContentFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ContentFilter; /** * Verifies a ContentFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ContentFilter; /** * Creates a plain object from a ContentFilter message. Also converts values to other types if specified. * @param message ContentFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ContentFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ContentFilter { /** BlockedReason enum. */ enum BlockedReason { BLOCKED_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } /** Properties of a SafetyFeedback. */ interface ISafetyFeedback { /** SafetyFeedback rating */ rating?: (google.ai.generativelanguage.v1beta.ISafetyRating|null); /** SafetyFeedback setting */ setting?: (google.ai.generativelanguage.v1beta.ISafetySetting|null); } /** Represents a SafetyFeedback. */ class SafetyFeedback implements ISafetyFeedback { /** * Constructs a new SafetyFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISafetyFeedback); /** SafetyFeedback rating. */ public rating?: (google.ai.generativelanguage.v1beta.ISafetyRating|null); /** SafetyFeedback setting. */ public setting?: (google.ai.generativelanguage.v1beta.ISafetySetting|null); /** * Creates a new SafetyFeedback instance using the specified properties. * @param [properties] Properties to set * @returns SafetyFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISafetyFeedback): google.ai.generativelanguage.v1beta.SafetyFeedback; /** * Encodes the specified SafetyFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SafetyFeedback; /** * Decodes a SafetyFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SafetyFeedback; /** * Verifies a SafetyFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SafetyFeedback; /** * Creates a plain object from a SafetyFeedback message. Also converts values to other types if specified. * @param message SafetyFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SafetyFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SafetyRating. */ interface ISafetyRating { /** SafetyRating category */ category?: (google.ai.generativelanguage.v1beta.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta.HarmCategory|null); /** SafetyRating probability */ probability?: (google.ai.generativelanguage.v1beta.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta.SafetyRating.HarmProbability|null); /** SafetyRating blocked */ blocked?: (boolean|null); } /** Represents a SafetyRating. */ class SafetyRating implements ISafetyRating { /** * Constructs a new SafetyRating. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISafetyRating); /** SafetyRating category. */ public category: (google.ai.generativelanguage.v1beta.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta.HarmCategory); /** SafetyRating probability. */ public probability: (google.ai.generativelanguage.v1beta.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta.SafetyRating.HarmProbability); /** SafetyRating blocked. */ public blocked: boolean; /** * Creates a new SafetyRating instance using the specified properties. * @param [properties] Properties to set * @returns SafetyRating instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISafetyRating): google.ai.generativelanguage.v1beta.SafetyRating; /** * Encodes the specified SafetyRating message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyRating message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyRating message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SafetyRating; /** * Decodes a SafetyRating message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SafetyRating; /** * Verifies a SafetyRating message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyRating message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyRating */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SafetyRating; /** * Creates a plain object from a SafetyRating message. Also converts values to other types if specified. * @param message SafetyRating * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SafetyRating, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyRating to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyRating * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetyRating { /** HarmProbability enum. */ enum HarmProbability { HARM_PROBABILITY_UNSPECIFIED = 0, NEGLIGIBLE = 1, LOW = 2, MEDIUM = 3, HIGH = 4 } } /** Properties of a SafetySetting. */ interface ISafetySetting { /** SafetySetting category */ category?: (google.ai.generativelanguage.v1beta.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta.HarmCategory|null); /** SafetySetting threshold */ threshold?: (google.ai.generativelanguage.v1beta.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta.SafetySetting.HarmBlockThreshold|null); } /** Represents a SafetySetting. */ class SafetySetting implements ISafetySetting { /** * Constructs a new SafetySetting. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISafetySetting); /** SafetySetting category. */ public category: (google.ai.generativelanguage.v1beta.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta.HarmCategory); /** SafetySetting threshold. */ public threshold: (google.ai.generativelanguage.v1beta.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta.SafetySetting.HarmBlockThreshold); /** * Creates a new SafetySetting instance using the specified properties. * @param [properties] Properties to set * @returns SafetySetting instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISafetySetting): google.ai.generativelanguage.v1beta.SafetySetting; /** * Encodes the specified SafetySetting message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetySetting message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetySetting message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SafetySetting; /** * Decodes a SafetySetting message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SafetySetting; /** * Verifies a SafetySetting message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetySetting message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetySetting */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SafetySetting; /** * Creates a plain object from a SafetySetting message. Also converts values to other types if specified. * @param message SafetySetting * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SafetySetting, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetySetting to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetySetting * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetySetting { /** HarmBlockThreshold enum. */ enum HarmBlockThreshold { HARM_BLOCK_THRESHOLD_UNSPECIFIED = 0, BLOCK_LOW_AND_ABOVE = 1, BLOCK_MEDIUM_AND_ABOVE = 2, BLOCK_ONLY_HIGH = 3, BLOCK_NONE = 4, OFF = 5 } } /** Properties of a File. */ interface IFile { /** File videoMetadata */ videoMetadata?: (google.ai.generativelanguage.v1beta.IVideoFileMetadata|null); /** File name */ name?: (string|null); /** File displayName */ displayName?: (string|null); /** File mimeType */ mimeType?: (string|null); /** File sizeBytes */ sizeBytes?: (number|Long|string|null); /** File createTime */ createTime?: (google.protobuf.ITimestamp|null); /** File updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** File expirationTime */ expirationTime?: (google.protobuf.ITimestamp|null); /** File sha256Hash */ sha256Hash?: (Uint8Array|Buffer|string|null); /** File uri */ uri?: (string|null); /** File downloadUri */ downloadUri?: (string|null); /** File state */ state?: (google.ai.generativelanguage.v1beta.File.State|keyof typeof google.ai.generativelanguage.v1beta.File.State|null); /** File source */ source?: (google.ai.generativelanguage.v1beta.File.Source|keyof typeof google.ai.generativelanguage.v1beta.File.Source|null); /** File error */ error?: (google.rpc.IStatus|null); } /** Represents a File. */ class File implements IFile { /** * Constructs a new File. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IFile); /** File videoMetadata. */ public videoMetadata?: (google.ai.generativelanguage.v1beta.IVideoFileMetadata|null); /** File name. */ public name: string; /** File displayName. */ public displayName: string; /** File mimeType. */ public mimeType: string; /** File sizeBytes. */ public sizeBytes: (number|Long|string); /** File createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** File updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** File expirationTime. */ public expirationTime?: (google.protobuf.ITimestamp|null); /** File sha256Hash. */ public sha256Hash: (Uint8Array|Buffer|string); /** File uri. */ public uri: string; /** File downloadUri. */ public downloadUri: string; /** File state. */ public state: (google.ai.generativelanguage.v1beta.File.State|keyof typeof google.ai.generativelanguage.v1beta.File.State); /** File source. */ public source: (google.ai.generativelanguage.v1beta.File.Source|keyof typeof google.ai.generativelanguage.v1beta.File.Source); /** File error. */ public error?: (google.rpc.IStatus|null); /** File metadata. */ public metadata?: "videoMetadata"; /** * Creates a new File instance using the specified properties. * @param [properties] Properties to set * @returns File instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IFile): google.ai.generativelanguage.v1beta.File; /** * Encodes the specified File message. Does not implicitly {@link google.ai.generativelanguage.v1beta.File.verify|verify} messages. * @param message File message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IFile, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified File message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.File.verify|verify} messages. * @param message File message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IFile, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a File message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns File * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.File; /** * Decodes a File message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns File * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.File; /** * Verifies a File message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a File message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns File */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.File; /** * Creates a plain object from a File message. Also converts values to other types if specified. * @param message File * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.File, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this File to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for File * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace File { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, PROCESSING = 1, ACTIVE = 2, FAILED = 10 } /** Source enum. */ enum Source { SOURCE_UNSPECIFIED = 0, UPLOADED = 1, GENERATED = 2, REGISTERED = 3 } } /** Properties of a VideoFileMetadata. */ interface IVideoFileMetadata { /** VideoFileMetadata videoDuration */ videoDuration?: (google.protobuf.IDuration|null); } /** Represents a VideoFileMetadata. */ class VideoFileMetadata implements IVideoFileMetadata { /** * Constructs a new VideoFileMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IVideoFileMetadata); /** VideoFileMetadata videoDuration. */ public videoDuration?: (google.protobuf.IDuration|null); /** * Creates a new VideoFileMetadata instance using the specified properties. * @param [properties] Properties to set * @returns VideoFileMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IVideoFileMetadata): google.ai.generativelanguage.v1beta.VideoFileMetadata; /** * Encodes the specified VideoFileMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.VideoFileMetadata.verify|verify} messages. * @param message VideoFileMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IVideoFileMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VideoFileMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.VideoFileMetadata.verify|verify} messages. * @param message VideoFileMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IVideoFileMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VideoFileMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VideoFileMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.VideoFileMetadata; /** * Decodes a VideoFileMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VideoFileMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.VideoFileMetadata; /** * Verifies a VideoFileMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VideoFileMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VideoFileMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.VideoFileMetadata; /** * Creates a plain object from a VideoFileMetadata message. Also converts values to other types if specified. * @param message VideoFileMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.VideoFileMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VideoFileMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VideoFileMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a FileService */ class FileService extends $protobuf.rpc.Service { /** * Constructs a new FileService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new FileService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): FileService; /** * Calls CreateFile. * @param request CreateFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and CreateFileResponse */ public createFile(request: google.ai.generativelanguage.v1beta.ICreateFileRequest, callback: google.ai.generativelanguage.v1beta.FileService.CreateFileCallback): void; /** * Calls CreateFile. * @param request CreateFileRequest message or plain object * @returns Promise */ public createFile(request: google.ai.generativelanguage.v1beta.ICreateFileRequest): Promise; /** * Calls ListFiles. * @param request ListFilesRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListFilesResponse */ public listFiles(request: google.ai.generativelanguage.v1beta.IListFilesRequest, callback: google.ai.generativelanguage.v1beta.FileService.ListFilesCallback): void; /** * Calls ListFiles. * @param request ListFilesRequest message or plain object * @returns Promise */ public listFiles(request: google.ai.generativelanguage.v1beta.IListFilesRequest): Promise; /** * Calls GetFile. * @param request GetFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and File */ public getFile(request: google.ai.generativelanguage.v1beta.IGetFileRequest, callback: google.ai.generativelanguage.v1beta.FileService.GetFileCallback): void; /** * Calls GetFile. * @param request GetFileRequest message or plain object * @returns Promise */ public getFile(request: google.ai.generativelanguage.v1beta.IGetFileRequest): Promise; /** * Calls DeleteFile. * @param request DeleteFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteFile(request: google.ai.generativelanguage.v1beta.IDeleteFileRequest, callback: google.ai.generativelanguage.v1beta.FileService.DeleteFileCallback): void; /** * Calls DeleteFile. * @param request DeleteFileRequest message or plain object * @returns Promise */ public deleteFile(request: google.ai.generativelanguage.v1beta.IDeleteFileRequest): Promise; /** * Calls DownloadFile. * @param request DownloadFileRequest message or plain object * @param callback Node-style callback called with the error, if any, and DownloadFileResponse */ public downloadFile(request: google.ai.generativelanguage.v1beta.IDownloadFileRequest, callback: google.ai.generativelanguage.v1beta.FileService.DownloadFileCallback): void; /** * Calls DownloadFile. * @param request DownloadFileRequest message or plain object * @returns Promise */ public downloadFile(request: google.ai.generativelanguage.v1beta.IDownloadFileRequest): Promise; } namespace FileService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.FileService|createFile}. * @param error Error, if any * @param [response] CreateFileResponse */ type CreateFileCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CreateFileResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.FileService|listFiles}. * @param error Error, if any * @param [response] ListFilesResponse */ type ListFilesCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListFilesResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.FileService|getFile}. * @param error Error, if any * @param [response] File */ type GetFileCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.File) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.FileService|deleteFile}. * @param error Error, if any * @param [response] Empty */ type DeleteFileCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.FileService|downloadFile}. * @param error Error, if any * @param [response] DownloadFileResponse */ type DownloadFileCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.DownloadFileResponse) => void; } /** Properties of a CreateFileRequest. */ interface ICreateFileRequest { /** CreateFileRequest file */ file?: (google.ai.generativelanguage.v1beta.IFile|null); } /** Represents a CreateFileRequest. */ class CreateFileRequest implements ICreateFileRequest { /** * Constructs a new CreateFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateFileRequest); /** CreateFileRequest file. */ public file?: (google.ai.generativelanguage.v1beta.IFile|null); /** * Creates a new CreateFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateFileRequest): google.ai.generativelanguage.v1beta.CreateFileRequest; /** * Encodes the specified CreateFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateFileRequest.verify|verify} messages. * @param message CreateFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateFileRequest.verify|verify} messages. * @param message CreateFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateFileRequest; /** * Decodes a CreateFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateFileRequest; /** * Verifies a CreateFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateFileRequest; /** * Creates a plain object from a CreateFileRequest message. Also converts values to other types if specified. * @param message CreateFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateFileResponse. */ interface ICreateFileResponse { /** CreateFileResponse file */ file?: (google.ai.generativelanguage.v1beta.IFile|null); } /** Represents a CreateFileResponse. */ class CreateFileResponse implements ICreateFileResponse { /** * Constructs a new CreateFileResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateFileResponse); /** CreateFileResponse file. */ public file?: (google.ai.generativelanguage.v1beta.IFile|null); /** * Creates a new CreateFileResponse instance using the specified properties. * @param [properties] Properties to set * @returns CreateFileResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateFileResponse): google.ai.generativelanguage.v1beta.CreateFileResponse; /** * Encodes the specified CreateFileResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateFileResponse.verify|verify} messages. * @param message CreateFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateFileResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateFileResponse.verify|verify} messages. * @param message CreateFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateFileResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateFileResponse; /** * Decodes a CreateFileResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateFileResponse; /** * Verifies a CreateFileResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateFileResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateFileResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateFileResponse; /** * Creates a plain object from a CreateFileResponse message. Also converts values to other types if specified. * @param message CreateFileResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateFileResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateFileResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateFileResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListFilesRequest. */ interface IListFilesRequest { /** ListFilesRequest pageSize */ pageSize?: (number|null); /** ListFilesRequest pageToken */ pageToken?: (string|null); } /** Represents a ListFilesRequest. */ class ListFilesRequest implements IListFilesRequest { /** * Constructs a new ListFilesRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListFilesRequest); /** ListFilesRequest pageSize. */ public pageSize: number; /** ListFilesRequest pageToken. */ public pageToken: string; /** * Creates a new ListFilesRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListFilesRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListFilesRequest): google.ai.generativelanguage.v1beta.ListFilesRequest; /** * Encodes the specified ListFilesRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListFilesRequest.verify|verify} messages. * @param message ListFilesRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListFilesRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListFilesRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListFilesRequest.verify|verify} messages. * @param message ListFilesRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListFilesRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListFilesRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListFilesRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListFilesRequest; /** * Decodes a ListFilesRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListFilesRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListFilesRequest; /** * Verifies a ListFilesRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListFilesRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListFilesRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListFilesRequest; /** * Creates a plain object from a ListFilesRequest message. Also converts values to other types if specified. * @param message ListFilesRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListFilesRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListFilesRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListFilesRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListFilesResponse. */ interface IListFilesResponse { /** ListFilesResponse files */ files?: (google.ai.generativelanguage.v1beta.IFile[]|null); /** ListFilesResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListFilesResponse. */ class ListFilesResponse implements IListFilesResponse { /** * Constructs a new ListFilesResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListFilesResponse); /** ListFilesResponse files. */ public files: google.ai.generativelanguage.v1beta.IFile[]; /** ListFilesResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListFilesResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListFilesResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListFilesResponse): google.ai.generativelanguage.v1beta.ListFilesResponse; /** * Encodes the specified ListFilesResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListFilesResponse.verify|verify} messages. * @param message ListFilesResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListFilesResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListFilesResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListFilesResponse.verify|verify} messages. * @param message ListFilesResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListFilesResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListFilesResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListFilesResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListFilesResponse; /** * Decodes a ListFilesResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListFilesResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListFilesResponse; /** * Verifies a ListFilesResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListFilesResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListFilesResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListFilesResponse; /** * Creates a plain object from a ListFilesResponse message. Also converts values to other types if specified. * @param message ListFilesResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListFilesResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListFilesResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListFilesResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetFileRequest. */ interface IGetFileRequest { /** GetFileRequest name */ name?: (string|null); } /** Represents a GetFileRequest. */ class GetFileRequest implements IGetFileRequest { /** * Constructs a new GetFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetFileRequest); /** GetFileRequest name. */ public name: string; /** * Creates a new GetFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetFileRequest): google.ai.generativelanguage.v1beta.GetFileRequest; /** * Encodes the specified GetFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetFileRequest.verify|verify} messages. * @param message GetFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetFileRequest.verify|verify} messages. * @param message GetFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetFileRequest; /** * Decodes a GetFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetFileRequest; /** * Verifies a GetFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetFileRequest; /** * Creates a plain object from a GetFileRequest message. Also converts values to other types if specified. * @param message GetFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteFileRequest. */ interface IDeleteFileRequest { /** DeleteFileRequest name */ name?: (string|null); } /** Represents a DeleteFileRequest. */ class DeleteFileRequest implements IDeleteFileRequest { /** * Constructs a new DeleteFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteFileRequest); /** DeleteFileRequest name. */ public name: string; /** * Creates a new DeleteFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteFileRequest): google.ai.generativelanguage.v1beta.DeleteFileRequest; /** * Encodes the specified DeleteFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteFileRequest.verify|verify} messages. * @param message DeleteFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteFileRequest.verify|verify} messages. * @param message DeleteFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteFileRequest; /** * Decodes a DeleteFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteFileRequest; /** * Verifies a DeleteFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteFileRequest; /** * Creates a plain object from a DeleteFileRequest message. Also converts values to other types if specified. * @param message DeleteFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DownloadFileRequest. */ interface IDownloadFileRequest { /** DownloadFileRequest name */ name?: (string|null); } /** Represents a DownloadFileRequest. */ class DownloadFileRequest implements IDownloadFileRequest { /** * Constructs a new DownloadFileRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDownloadFileRequest); /** DownloadFileRequest name. */ public name: string; /** * Creates a new DownloadFileRequest instance using the specified properties. * @param [properties] Properties to set * @returns DownloadFileRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDownloadFileRequest): google.ai.generativelanguage.v1beta.DownloadFileRequest; /** * Encodes the specified DownloadFileRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DownloadFileRequest.verify|verify} messages. * @param message DownloadFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDownloadFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DownloadFileRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DownloadFileRequest.verify|verify} messages. * @param message DownloadFileRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDownloadFileRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DownloadFileRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DownloadFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DownloadFileRequest; /** * Decodes a DownloadFileRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DownloadFileRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DownloadFileRequest; /** * Verifies a DownloadFileRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DownloadFileRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DownloadFileRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DownloadFileRequest; /** * Creates a plain object from a DownloadFileRequest message. Also converts values to other types if specified. * @param message DownloadFileRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DownloadFileRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DownloadFileRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DownloadFileRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DownloadFileResponse. */ interface IDownloadFileResponse { } /** Represents a DownloadFileResponse. */ class DownloadFileResponse implements IDownloadFileResponse { /** * Constructs a new DownloadFileResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDownloadFileResponse); /** * Creates a new DownloadFileResponse instance using the specified properties. * @param [properties] Properties to set * @returns DownloadFileResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDownloadFileResponse): google.ai.generativelanguage.v1beta.DownloadFileResponse; /** * Encodes the specified DownloadFileResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DownloadFileResponse.verify|verify} messages. * @param message DownloadFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDownloadFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DownloadFileResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DownloadFileResponse.verify|verify} messages. * @param message DownloadFileResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDownloadFileResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DownloadFileResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DownloadFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DownloadFileResponse; /** * Decodes a DownloadFileResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DownloadFileResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DownloadFileResponse; /** * Verifies a DownloadFileResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DownloadFileResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DownloadFileResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DownloadFileResponse; /** * Creates a plain object from a DownloadFileResponse message. Also converts values to other types if specified. * @param message DownloadFileResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DownloadFileResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DownloadFileResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DownloadFileResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a GenerativeService */ class GenerativeService extends $protobuf.rpc.Service { /** * Constructs a new GenerativeService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new GenerativeService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): GenerativeService; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public generateContent(request: google.ai.generativelanguage.v1beta.IGenerateContentRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.GenerateContentCallback): void; /** * Calls GenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public generateContent(request: google.ai.generativelanguage.v1beta.IGenerateContentRequest): Promise; /** * Calls GenerateAnswer. * @param request GenerateAnswerRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateAnswerResponse */ public generateAnswer(request: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.GenerateAnswerCallback): void; /** * Calls GenerateAnswer. * @param request GenerateAnswerRequest message or plain object * @returns Promise */ public generateAnswer(request: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest): Promise; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateContentResponse */ public streamGenerateContent(request: google.ai.generativelanguage.v1beta.IGenerateContentRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.StreamGenerateContentCallback): void; /** * Calls StreamGenerateContent. * @param request GenerateContentRequest message or plain object * @returns Promise */ public streamGenerateContent(request: google.ai.generativelanguage.v1beta.IGenerateContentRequest): Promise; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedContentResponse */ public embedContent(request: google.ai.generativelanguage.v1beta.IEmbedContentRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.EmbedContentCallback): void; /** * Calls EmbedContent. * @param request EmbedContentRequest message or plain object * @returns Promise */ public embedContent(request: google.ai.generativelanguage.v1beta.IEmbedContentRequest): Promise; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedContentsResponse */ public batchEmbedContents(request: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.BatchEmbedContentsCallback): void; /** * Calls BatchEmbedContents. * @param request BatchEmbedContentsRequest message or plain object * @returns Promise */ public batchEmbedContents(request: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest): Promise; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTokensResponse */ public countTokens(request: google.ai.generativelanguage.v1beta.ICountTokensRequest, callback: google.ai.generativelanguage.v1beta.GenerativeService.CountTokensCallback): void; /** * Calls CountTokens. * @param request CountTokensRequest message or plain object * @returns Promise */ public countTokens(request: google.ai.generativelanguage.v1beta.ICountTokensRequest): Promise; /** * Calls BidiGenerateContent. * @param request BidiGenerateContentClientMessage message or plain object * @param callback Node-style callback called with the error, if any, and BidiGenerateContentServerMessage */ public bidiGenerateContent(request: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage, callback: google.ai.generativelanguage.v1beta.GenerativeService.BidiGenerateContentCallback): void; /** * Calls BidiGenerateContent. * @param request BidiGenerateContentClientMessage message or plain object * @returns Promise */ public bidiGenerateContent(request: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage): Promise; } namespace GenerativeService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|generateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type GenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|generateAnswer}. * @param error Error, if any * @param [response] GenerateAnswerResponse */ type GenerateAnswerCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.GenerateAnswerResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|streamGenerateContent}. * @param error Error, if any * @param [response] GenerateContentResponse */ type StreamGenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.GenerateContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|embedContent}. * @param error Error, if any * @param [response] EmbedContentResponse */ type EmbedContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.EmbedContentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|batchEmbedContents}. * @param error Error, if any * @param [response] BatchEmbedContentsResponse */ type BatchEmbedContentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|countTokens}. * @param error Error, if any * @param [response] CountTokensResponse */ type CountTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CountTokensResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.GenerativeService|bidiGenerateContent}. * @param error Error, if any * @param [response] BidiGenerateContentServerMessage */ type BidiGenerateContentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage) => void; } /** TaskType enum. */ enum TaskType { TASK_TYPE_UNSPECIFIED = 0, RETRIEVAL_QUERY = 1, RETRIEVAL_DOCUMENT = 2, SEMANTIC_SIMILARITY = 3, CLASSIFICATION = 4, CLUSTERING = 5, QUESTION_ANSWERING = 6, FACT_VERIFICATION = 7, CODE_RETRIEVAL_QUERY = 8 } /** Properties of a GenerateContentRequest. */ interface IGenerateContentRequest { /** GenerateContentRequest model */ model?: (string|null); /** GenerateContentRequest systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** GenerateContentRequest contents */ contents?: (google.ai.generativelanguage.v1beta.IContent[]|null); /** GenerateContentRequest tools */ tools?: (google.ai.generativelanguage.v1beta.ITool[]|null); /** GenerateContentRequest toolConfig */ toolConfig?: (google.ai.generativelanguage.v1beta.IToolConfig|null); /** GenerateContentRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1beta.ISafetySetting[]|null); /** GenerateContentRequest generationConfig */ generationConfig?: (google.ai.generativelanguage.v1beta.IGenerationConfig|null); /** GenerateContentRequest cachedContent */ cachedContent?: (string|null); } /** Represents a GenerateContentRequest. */ class GenerateContentRequest implements IGenerateContentRequest { /** * Constructs a new GenerateContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateContentRequest); /** GenerateContentRequest model. */ public model: string; /** GenerateContentRequest systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** GenerateContentRequest contents. */ public contents: google.ai.generativelanguage.v1beta.IContent[]; /** GenerateContentRequest tools. */ public tools: google.ai.generativelanguage.v1beta.ITool[]; /** GenerateContentRequest toolConfig. */ public toolConfig?: (google.ai.generativelanguage.v1beta.IToolConfig|null); /** GenerateContentRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1beta.ISafetySetting[]; /** GenerateContentRequest generationConfig. */ public generationConfig?: (google.ai.generativelanguage.v1beta.IGenerationConfig|null); /** GenerateContentRequest cachedContent. */ public cachedContent?: (string|null); /** * Creates a new GenerateContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateContentRequest): google.ai.generativelanguage.v1beta.GenerateContentRequest; /** * Encodes the specified GenerateContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentRequest.verify|verify} messages. * @param message GenerateContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateContentRequest; /** * Decodes a GenerateContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateContentRequest; /** * Verifies a GenerateContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateContentRequest; /** * Creates a plain object from a GenerateContentRequest message. Also converts values to other types if specified. * @param message GenerateContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PrebuiltVoiceConfig. */ interface IPrebuiltVoiceConfig { /** PrebuiltVoiceConfig voiceName */ voiceName?: (string|null); } /** Represents a PrebuiltVoiceConfig. */ class PrebuiltVoiceConfig implements IPrebuiltVoiceConfig { /** * Constructs a new PrebuiltVoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig); /** PrebuiltVoiceConfig voiceName. */ public voiceName?: (string|null); /** * Creates a new PrebuiltVoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns PrebuiltVoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig): google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig; /** * Encodes the specified PrebuiltVoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig.verify|verify} messages. * @param message PrebuiltVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PrebuiltVoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig.verify|verify} messages. * @param message PrebuiltVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PrebuiltVoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PrebuiltVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig; /** * Decodes a PrebuiltVoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PrebuiltVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig; /** * Verifies a PrebuiltVoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PrebuiltVoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PrebuiltVoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig; /** * Creates a plain object from a PrebuiltVoiceConfig message. Also converts values to other types if specified. * @param message PrebuiltVoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PrebuiltVoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PrebuiltVoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PrebuiltVoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a VoiceConfig. */ interface IVoiceConfig { /** VoiceConfig prebuiltVoiceConfig */ prebuiltVoiceConfig?: (google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig|null); } /** Represents a VoiceConfig. */ class VoiceConfig implements IVoiceConfig { /** * Constructs a new VoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IVoiceConfig); /** VoiceConfig prebuiltVoiceConfig. */ public prebuiltVoiceConfig?: (google.ai.generativelanguage.v1beta.IPrebuiltVoiceConfig|null); /** VoiceConfig voiceConfig. */ public voiceConfig?: "prebuiltVoiceConfig"; /** * Creates a new VoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns VoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IVoiceConfig): google.ai.generativelanguage.v1beta.VoiceConfig; /** * Encodes the specified VoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.VoiceConfig.verify|verify} messages. * @param message VoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified VoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.VoiceConfig.verify|verify} messages. * @param message VoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a VoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns VoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.VoiceConfig; /** * Decodes a VoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns VoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.VoiceConfig; /** * Verifies a VoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a VoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns VoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.VoiceConfig; /** * Creates a plain object from a VoiceConfig message. Also converts values to other types if specified. * @param message VoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.VoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this VoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for VoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SpeakerVoiceConfig. */ interface ISpeakerVoiceConfig { /** SpeakerVoiceConfig speaker */ speaker?: (string|null); /** SpeakerVoiceConfig voiceConfig */ voiceConfig?: (google.ai.generativelanguage.v1beta.IVoiceConfig|null); } /** Represents a SpeakerVoiceConfig. */ class SpeakerVoiceConfig implements ISpeakerVoiceConfig { /** * Constructs a new SpeakerVoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig); /** SpeakerVoiceConfig speaker. */ public speaker: string; /** SpeakerVoiceConfig voiceConfig. */ public voiceConfig?: (google.ai.generativelanguage.v1beta.IVoiceConfig|null); /** * Creates a new SpeakerVoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns SpeakerVoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig): google.ai.generativelanguage.v1beta.SpeakerVoiceConfig; /** * Encodes the specified SpeakerVoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SpeakerVoiceConfig.verify|verify} messages. * @param message SpeakerVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SpeakerVoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SpeakerVoiceConfig.verify|verify} messages. * @param message SpeakerVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SpeakerVoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SpeakerVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SpeakerVoiceConfig; /** * Decodes a SpeakerVoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SpeakerVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SpeakerVoiceConfig; /** * Verifies a SpeakerVoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SpeakerVoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SpeakerVoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SpeakerVoiceConfig; /** * Creates a plain object from a SpeakerVoiceConfig message. Also converts values to other types if specified. * @param message SpeakerVoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SpeakerVoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SpeakerVoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SpeakerVoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MultiSpeakerVoiceConfig. */ interface IMultiSpeakerVoiceConfig { /** MultiSpeakerVoiceConfig speakerVoiceConfigs */ speakerVoiceConfigs?: (google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig[]|null); } /** Represents a MultiSpeakerVoiceConfig. */ class MultiSpeakerVoiceConfig implements IMultiSpeakerVoiceConfig { /** * Constructs a new MultiSpeakerVoiceConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig); /** MultiSpeakerVoiceConfig speakerVoiceConfigs. */ public speakerVoiceConfigs: google.ai.generativelanguage.v1beta.ISpeakerVoiceConfig[]; /** * Creates a new MultiSpeakerVoiceConfig instance using the specified properties. * @param [properties] Properties to set * @returns MultiSpeakerVoiceConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig): google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig; /** * Encodes the specified MultiSpeakerVoiceConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig.verify|verify} messages. * @param message MultiSpeakerVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MultiSpeakerVoiceConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig.verify|verify} messages. * @param message MultiSpeakerVoiceConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MultiSpeakerVoiceConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MultiSpeakerVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig; /** * Decodes a MultiSpeakerVoiceConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MultiSpeakerVoiceConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig; /** * Verifies a MultiSpeakerVoiceConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MultiSpeakerVoiceConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MultiSpeakerVoiceConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig; /** * Creates a plain object from a MultiSpeakerVoiceConfig message. Also converts values to other types if specified. * @param message MultiSpeakerVoiceConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.MultiSpeakerVoiceConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MultiSpeakerVoiceConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MultiSpeakerVoiceConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SpeechConfig. */ interface ISpeechConfig { /** SpeechConfig voiceConfig */ voiceConfig?: (google.ai.generativelanguage.v1beta.IVoiceConfig|null); /** SpeechConfig multiSpeakerVoiceConfig */ multiSpeakerVoiceConfig?: (google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig|null); /** SpeechConfig languageCode */ languageCode?: (string|null); } /** Represents a SpeechConfig. */ class SpeechConfig implements ISpeechConfig { /** * Constructs a new SpeechConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISpeechConfig); /** SpeechConfig voiceConfig. */ public voiceConfig?: (google.ai.generativelanguage.v1beta.IVoiceConfig|null); /** SpeechConfig multiSpeakerVoiceConfig. */ public multiSpeakerVoiceConfig?: (google.ai.generativelanguage.v1beta.IMultiSpeakerVoiceConfig|null); /** SpeechConfig languageCode. */ public languageCode: string; /** * Creates a new SpeechConfig instance using the specified properties. * @param [properties] Properties to set * @returns SpeechConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISpeechConfig): google.ai.generativelanguage.v1beta.SpeechConfig; /** * Encodes the specified SpeechConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SpeechConfig.verify|verify} messages. * @param message SpeechConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISpeechConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SpeechConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SpeechConfig.verify|verify} messages. * @param message SpeechConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISpeechConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SpeechConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SpeechConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SpeechConfig; /** * Decodes a SpeechConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SpeechConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SpeechConfig; /** * Verifies a SpeechConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SpeechConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SpeechConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SpeechConfig; /** * Creates a plain object from a SpeechConfig message. Also converts values to other types if specified. * @param message SpeechConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SpeechConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SpeechConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SpeechConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ThinkingConfig. */ interface IThinkingConfig { /** ThinkingConfig includeThoughts */ includeThoughts?: (boolean|null); /** ThinkingConfig thinkingBudget */ thinkingBudget?: (number|null); } /** Represents a ThinkingConfig. */ class ThinkingConfig implements IThinkingConfig { /** * Constructs a new ThinkingConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IThinkingConfig); /** ThinkingConfig includeThoughts. */ public includeThoughts?: (boolean|null); /** ThinkingConfig thinkingBudget. */ public thinkingBudget?: (number|null); /** * Creates a new ThinkingConfig instance using the specified properties. * @param [properties] Properties to set * @returns ThinkingConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IThinkingConfig): google.ai.generativelanguage.v1beta.ThinkingConfig; /** * Encodes the specified ThinkingConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ThinkingConfig.verify|verify} messages. * @param message ThinkingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IThinkingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ThinkingConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ThinkingConfig.verify|verify} messages. * @param message ThinkingConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IThinkingConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ThinkingConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ThinkingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ThinkingConfig; /** * Decodes a ThinkingConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ThinkingConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ThinkingConfig; /** * Verifies a ThinkingConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ThinkingConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ThinkingConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ThinkingConfig; /** * Creates a plain object from a ThinkingConfig message. Also converts values to other types if specified. * @param message ThinkingConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ThinkingConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ThinkingConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ThinkingConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an ImageConfig. */ interface IImageConfig { /** ImageConfig aspectRatio */ aspectRatio?: (string|null); } /** Represents an ImageConfig. */ class ImageConfig implements IImageConfig { /** * Constructs a new ImageConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IImageConfig); /** ImageConfig aspectRatio. */ public aspectRatio?: (string|null); /** * Creates a new ImageConfig instance using the specified properties. * @param [properties] Properties to set * @returns ImageConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IImageConfig): google.ai.generativelanguage.v1beta.ImageConfig; /** * Encodes the specified ImageConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ImageConfig.verify|verify} messages. * @param message ImageConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IImageConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ImageConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ImageConfig.verify|verify} messages. * @param message ImageConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IImageConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ImageConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ImageConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ImageConfig; /** * Decodes an ImageConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ImageConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ImageConfig; /** * Verifies an ImageConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ImageConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ImageConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ImageConfig; /** * Creates a plain object from an ImageConfig message. Also converts values to other types if specified. * @param message ImageConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ImageConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ImageConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ImageConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerationConfig. */ interface IGenerationConfig { /** GenerationConfig candidateCount */ candidateCount?: (number|null); /** GenerationConfig stopSequences */ stopSequences?: (string[]|null); /** GenerationConfig maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerationConfig temperature */ temperature?: (number|null); /** GenerationConfig topP */ topP?: (number|null); /** GenerationConfig topK */ topK?: (number|null); /** GenerationConfig seed */ seed?: (number|null); /** GenerationConfig responseMimeType */ responseMimeType?: (string|null); /** GenerationConfig responseSchema */ responseSchema?: (google.ai.generativelanguage.v1beta.ISchema|null); /** GenerationConfig responseJsonSchema */ responseJsonSchema?: (google.protobuf.IValue|null); /** GenerationConfig responseJsonSchemaOrdered */ responseJsonSchemaOrdered?: (google.protobuf.IValue|null); /** GenerationConfig presencePenalty */ presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty */ frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs */ responseLogprobs?: (boolean|null); /** GenerationConfig logprobs */ logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers */ enableEnhancedCivicAnswers?: (boolean|null); /** GenerationConfig responseModalities */ responseModalities?: (google.ai.generativelanguage.v1beta.GenerationConfig.Modality[]|null); /** GenerationConfig speechConfig */ speechConfig?: (google.ai.generativelanguage.v1beta.ISpeechConfig|null); /** GenerationConfig thinkingConfig */ thinkingConfig?: (google.ai.generativelanguage.v1beta.IThinkingConfig|null); /** GenerationConfig imageConfig */ imageConfig?: (google.ai.generativelanguage.v1beta.IImageConfig|null); /** GenerationConfig mediaResolution */ mediaResolution?: (google.ai.generativelanguage.v1beta.GenerationConfig.MediaResolution|keyof typeof google.ai.generativelanguage.v1beta.GenerationConfig.MediaResolution|null); } /** Represents a GenerationConfig. */ class GenerationConfig implements IGenerationConfig { /** * Constructs a new GenerationConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerationConfig); /** GenerationConfig candidateCount. */ public candidateCount?: (number|null); /** GenerationConfig stopSequences. */ public stopSequences: string[]; /** GenerationConfig maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerationConfig temperature. */ public temperature?: (number|null); /** GenerationConfig topP. */ public topP?: (number|null); /** GenerationConfig topK. */ public topK?: (number|null); /** GenerationConfig seed. */ public seed?: (number|null); /** GenerationConfig responseMimeType. */ public responseMimeType: string; /** GenerationConfig responseSchema. */ public responseSchema?: (google.ai.generativelanguage.v1beta.ISchema|null); /** GenerationConfig responseJsonSchema. */ public responseJsonSchema?: (google.protobuf.IValue|null); /** GenerationConfig responseJsonSchemaOrdered. */ public responseJsonSchemaOrdered?: (google.protobuf.IValue|null); /** GenerationConfig presencePenalty. */ public presencePenalty?: (number|null); /** GenerationConfig frequencyPenalty. */ public frequencyPenalty?: (number|null); /** GenerationConfig responseLogprobs. */ public responseLogprobs?: (boolean|null); /** GenerationConfig logprobs. */ public logprobs?: (number|null); /** GenerationConfig enableEnhancedCivicAnswers. */ public enableEnhancedCivicAnswers?: (boolean|null); /** GenerationConfig responseModalities. */ public responseModalities: google.ai.generativelanguage.v1beta.GenerationConfig.Modality[]; /** GenerationConfig speechConfig. */ public speechConfig?: (google.ai.generativelanguage.v1beta.ISpeechConfig|null); /** GenerationConfig thinkingConfig. */ public thinkingConfig?: (google.ai.generativelanguage.v1beta.IThinkingConfig|null); /** GenerationConfig imageConfig. */ public imageConfig?: (google.ai.generativelanguage.v1beta.IImageConfig|null); /** GenerationConfig mediaResolution. */ public mediaResolution?: (google.ai.generativelanguage.v1beta.GenerationConfig.MediaResolution|keyof typeof google.ai.generativelanguage.v1beta.GenerationConfig.MediaResolution|null); /** * Creates a new GenerationConfig instance using the specified properties. * @param [properties] Properties to set * @returns GenerationConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerationConfig): google.ai.generativelanguage.v1beta.GenerationConfig; /** * Encodes the specified GenerationConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerationConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerationConfig.verify|verify} messages. * @param message GenerationConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerationConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerationConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerationConfig; /** * Decodes a GenerationConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerationConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerationConfig; /** * Verifies a GenerationConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerationConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerationConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerationConfig; /** * Creates a plain object from a GenerationConfig message. Also converts values to other types if specified. * @param message GenerationConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerationConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerationConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerationConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerationConfig { /** Modality enum. */ enum Modality { MODALITY_UNSPECIFIED = 0, TEXT = 1, IMAGE = 2, AUDIO = 3 } /** MediaResolution enum. */ enum MediaResolution { MEDIA_RESOLUTION_UNSPECIFIED = 0, MEDIA_RESOLUTION_LOW = 1, MEDIA_RESOLUTION_MEDIUM = 2, MEDIA_RESOLUTION_HIGH = 3 } } /** Properties of a SemanticRetrieverConfig. */ interface ISemanticRetrieverConfig { /** SemanticRetrieverConfig source */ source?: (string|null); /** SemanticRetrieverConfig query */ query?: (google.ai.generativelanguage.v1beta.IContent|null); /** SemanticRetrieverConfig metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1beta.IMetadataFilter[]|null); /** SemanticRetrieverConfig maxChunksCount */ maxChunksCount?: (number|null); /** SemanticRetrieverConfig minimumRelevanceScore */ minimumRelevanceScore?: (number|null); } /** Represents a SemanticRetrieverConfig. */ class SemanticRetrieverConfig implements ISemanticRetrieverConfig { /** * Constructs a new SemanticRetrieverConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig); /** SemanticRetrieverConfig source. */ public source: string; /** SemanticRetrieverConfig query. */ public query?: (google.ai.generativelanguage.v1beta.IContent|null); /** SemanticRetrieverConfig metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1beta.IMetadataFilter[]; /** SemanticRetrieverConfig maxChunksCount. */ public maxChunksCount?: (number|null); /** SemanticRetrieverConfig minimumRelevanceScore. */ public minimumRelevanceScore?: (number|null); /** * Creates a new SemanticRetrieverConfig instance using the specified properties. * @param [properties] Properties to set * @returns SemanticRetrieverConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig): google.ai.generativelanguage.v1beta.SemanticRetrieverConfig; /** * Encodes the specified SemanticRetrieverConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SemanticRetrieverConfig.verify|verify} messages. * @param message SemanticRetrieverConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SemanticRetrieverConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SemanticRetrieverConfig.verify|verify} messages. * @param message SemanticRetrieverConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SemanticRetrieverConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SemanticRetrieverConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SemanticRetrieverConfig; /** * Decodes a SemanticRetrieverConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SemanticRetrieverConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SemanticRetrieverConfig; /** * Verifies a SemanticRetrieverConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SemanticRetrieverConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SemanticRetrieverConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SemanticRetrieverConfig; /** * Creates a plain object from a SemanticRetrieverConfig message. Also converts values to other types if specified. * @param message SemanticRetrieverConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SemanticRetrieverConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SemanticRetrieverConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SemanticRetrieverConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateContentResponse. */ interface IGenerateContentResponse { /** GenerateContentResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta.ICandidate[]|null); /** GenerateContentResponse promptFeedback */ promptFeedback?: (google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion */ modelVersion?: (string|null); /** GenerateContentResponse responseId */ responseId?: (string|null); } /** Represents a GenerateContentResponse. */ class GenerateContentResponse implements IGenerateContentResponse { /** * Constructs a new GenerateContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateContentResponse); /** GenerateContentResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta.ICandidate[]; /** GenerateContentResponse promptFeedback. */ public promptFeedback?: (google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback|null); /** GenerateContentResponse usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata|null); /** GenerateContentResponse modelVersion. */ public modelVersion: string; /** GenerateContentResponse responseId. */ public responseId: string; /** * Creates a new GenerateContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateContentResponse): google.ai.generativelanguage.v1beta.GenerateContentResponse; /** * Encodes the specified GenerateContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.verify|verify} messages. * @param message GenerateContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateContentResponse; /** * Decodes a GenerateContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateContentResponse; /** * Verifies a GenerateContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateContentResponse; /** * Creates a plain object from a GenerateContentResponse message. Also converts values to other types if specified. * @param message GenerateContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateContentResponse { /** Properties of a PromptFeedback. */ interface IPromptFeedback { /** PromptFeedback blockReason */ blockReason?: (google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.BlockReason|null); /** PromptFeedback safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta.ISafetyRating[]|null); } /** Represents a PromptFeedback. */ class PromptFeedback implements IPromptFeedback { /** * Constructs a new PromptFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback); /** PromptFeedback blockReason. */ public blockReason: (google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.BlockReason); /** PromptFeedback safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta.ISafetyRating[]; /** * Creates a new PromptFeedback instance using the specified properties. * @param [properties] Properties to set * @returns PromptFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback): google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback; /** * Encodes the specified PromptFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PromptFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback.verify|verify} messages. * @param message PromptFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.IPromptFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PromptFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback; /** * Decodes a PromptFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PromptFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback; /** * Verifies a PromptFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PromptFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PromptFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback; /** * Creates a plain object from a PromptFeedback message. Also converts values to other types if specified. * @param message PromptFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.PromptFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PromptFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PromptFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace PromptFeedback { /** BlockReason enum. */ enum BlockReason { BLOCK_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2, BLOCKLIST = 3, PROHIBITED_CONTENT = 4, IMAGE_SAFETY = 5 } } /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata promptTokenCount */ promptTokenCount?: (number|null); /** UsageMetadata cachedContentTokenCount */ cachedContentTokenCount?: (number|null); /** UsageMetadata candidatesTokenCount */ candidatesTokenCount?: (number|null); /** UsageMetadata toolUsePromptTokenCount */ toolUsePromptTokenCount?: (number|null); /** UsageMetadata thoughtsTokenCount */ thoughtsTokenCount?: (number|null); /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); /** UsageMetadata promptTokensDetails */ promptTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata cacheTokensDetails */ cacheTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata candidatesTokensDetails */ candidatesTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata toolUsePromptTokensDetails */ toolUsePromptTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata); /** UsageMetadata promptTokenCount. */ public promptTokenCount: number; /** UsageMetadata cachedContentTokenCount. */ public cachedContentTokenCount: number; /** UsageMetadata candidatesTokenCount. */ public candidatesTokenCount: number; /** UsageMetadata toolUsePromptTokenCount. */ public toolUsePromptTokenCount: number; /** UsageMetadata thoughtsTokenCount. */ public thoughtsTokenCount: number; /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** UsageMetadata promptTokensDetails. */ public promptTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata cacheTokensDetails. */ public cacheTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata candidatesTokensDetails. */ public candidatesTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata toolUsePromptTokensDetails. */ public toolUsePromptTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata): google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateContentResponse.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a Candidate. */ interface ICandidate { /** Candidate index */ index?: (number|null); /** Candidate content */ content?: (google.ai.generativelanguage.v1beta.IContent|null); /** Candidate finishReason */ finishReason?: (google.ai.generativelanguage.v1beta.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1beta.Candidate.FinishReason|null); /** Candidate finishMessage */ finishMessage?: (string|null); /** Candidate safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta.ISafetyRating[]|null); /** Candidate citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); /** Candidate tokenCount */ tokenCount?: (number|null); /** Candidate groundingAttributions */ groundingAttributions?: (google.ai.generativelanguage.v1beta.IGroundingAttribution[]|null); /** Candidate groundingMetadata */ groundingMetadata?: (google.ai.generativelanguage.v1beta.IGroundingMetadata|null); /** Candidate avgLogprobs */ avgLogprobs?: (number|null); /** Candidate logprobsResult */ logprobsResult?: (google.ai.generativelanguage.v1beta.ILogprobsResult|null); /** Candidate urlContextMetadata */ urlContextMetadata?: (google.ai.generativelanguage.v1beta.IUrlContextMetadata|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICandidate); /** Candidate index. */ public index?: (number|null); /** Candidate content. */ public content?: (google.ai.generativelanguage.v1beta.IContent|null); /** Candidate finishReason. */ public finishReason: (google.ai.generativelanguage.v1beta.Candidate.FinishReason|keyof typeof google.ai.generativelanguage.v1beta.Candidate.FinishReason); /** Candidate finishMessage. */ public finishMessage?: (string|null); /** Candidate safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta.ISafetyRating[]; /** Candidate citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); /** Candidate tokenCount. */ public tokenCount: number; /** Candidate groundingAttributions. */ public groundingAttributions: google.ai.generativelanguage.v1beta.IGroundingAttribution[]; /** Candidate groundingMetadata. */ public groundingMetadata?: (google.ai.generativelanguage.v1beta.IGroundingMetadata|null); /** Candidate avgLogprobs. */ public avgLogprobs: number; /** Candidate logprobsResult. */ public logprobsResult?: (google.ai.generativelanguage.v1beta.ILogprobsResult|null); /** Candidate urlContextMetadata. */ public urlContextMetadata?: (google.ai.generativelanguage.v1beta.IUrlContextMetadata|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICandidate): google.ai.generativelanguage.v1beta.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Candidate { /** FinishReason enum. */ enum FinishReason { FINISH_REASON_UNSPECIFIED = 0, STOP = 1, MAX_TOKENS = 2, SAFETY = 3, RECITATION = 4, LANGUAGE = 6, OTHER = 5, BLOCKLIST = 7, PROHIBITED_CONTENT = 8, SPII = 9, MALFORMED_FUNCTION_CALL = 10, IMAGE_SAFETY = 11, IMAGE_PROHIBITED_CONTENT = 14, IMAGE_OTHER = 15, NO_IMAGE = 16, IMAGE_RECITATION = 17, UNEXPECTED_TOOL_CALL = 12, TOO_MANY_TOOL_CALLS = 13 } } /** Properties of an UrlContextMetadata. */ interface IUrlContextMetadata { /** UrlContextMetadata urlMetadata */ urlMetadata?: (google.ai.generativelanguage.v1beta.IUrlMetadata[]|null); } /** Represents an UrlContextMetadata. */ class UrlContextMetadata implements IUrlContextMetadata { /** * Constructs a new UrlContextMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUrlContextMetadata); /** UrlContextMetadata urlMetadata. */ public urlMetadata: google.ai.generativelanguage.v1beta.IUrlMetadata[]; /** * Creates a new UrlContextMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UrlContextMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUrlContextMetadata): google.ai.generativelanguage.v1beta.UrlContextMetadata; /** * Encodes the specified UrlContextMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlContextMetadata.verify|verify} messages. * @param message UrlContextMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUrlContextMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UrlContextMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlContextMetadata.verify|verify} messages. * @param message UrlContextMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUrlContextMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UrlContextMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UrlContextMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UrlContextMetadata; /** * Decodes an UrlContextMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UrlContextMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UrlContextMetadata; /** * Verifies an UrlContextMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UrlContextMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UrlContextMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UrlContextMetadata; /** * Creates a plain object from an UrlContextMetadata message. Also converts values to other types if specified. * @param message UrlContextMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UrlContextMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UrlContextMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UrlContextMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UrlMetadata. */ interface IUrlMetadata { /** UrlMetadata retrievedUrl */ retrievedUrl?: (string|null); /** UrlMetadata urlRetrievalStatus */ urlRetrievalStatus?: (google.ai.generativelanguage.v1beta.UrlMetadata.UrlRetrievalStatus|keyof typeof google.ai.generativelanguage.v1beta.UrlMetadata.UrlRetrievalStatus|null); } /** Represents an UrlMetadata. */ class UrlMetadata implements IUrlMetadata { /** * Constructs a new UrlMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUrlMetadata); /** UrlMetadata retrievedUrl. */ public retrievedUrl: string; /** UrlMetadata urlRetrievalStatus. */ public urlRetrievalStatus: (google.ai.generativelanguage.v1beta.UrlMetadata.UrlRetrievalStatus|keyof typeof google.ai.generativelanguage.v1beta.UrlMetadata.UrlRetrievalStatus); /** * Creates a new UrlMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UrlMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUrlMetadata): google.ai.generativelanguage.v1beta.UrlMetadata; /** * Encodes the specified UrlMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlMetadata.verify|verify} messages. * @param message UrlMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUrlMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UrlMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UrlMetadata.verify|verify} messages. * @param message UrlMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUrlMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UrlMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UrlMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UrlMetadata; /** * Decodes an UrlMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UrlMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UrlMetadata; /** * Verifies an UrlMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UrlMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UrlMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UrlMetadata; /** * Creates a plain object from an UrlMetadata message. Also converts values to other types if specified. * @param message UrlMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UrlMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UrlMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UrlMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace UrlMetadata { /** UrlRetrievalStatus enum. */ enum UrlRetrievalStatus { URL_RETRIEVAL_STATUS_UNSPECIFIED = 0, URL_RETRIEVAL_STATUS_SUCCESS = 1, URL_RETRIEVAL_STATUS_ERROR = 2, URL_RETRIEVAL_STATUS_PAYWALL = 3, URL_RETRIEVAL_STATUS_UNSAFE = 4 } } /** Properties of a LogprobsResult. */ interface ILogprobsResult { /** LogprobsResult logProbabilitySum */ logProbabilitySum?: (number|null); /** LogprobsResult topCandidates */ topCandidates?: (google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates[]|null); /** LogprobsResult chosenCandidates */ chosenCandidates?: (google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate[]|null); } /** Represents a LogprobsResult. */ class LogprobsResult implements ILogprobsResult { /** * Constructs a new LogprobsResult. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ILogprobsResult); /** LogprobsResult logProbabilitySum. */ public logProbabilitySum?: (number|null); /** LogprobsResult topCandidates. */ public topCandidates: google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates[]; /** LogprobsResult chosenCandidates. */ public chosenCandidates: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate[]; /** * Creates a new LogprobsResult instance using the specified properties. * @param [properties] Properties to set * @returns LogprobsResult instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ILogprobsResult): google.ai.generativelanguage.v1beta.LogprobsResult; /** * Encodes the specified LogprobsResult message. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified LogprobsResult message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.verify|verify} messages. * @param message LogprobsResult message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ILogprobsResult, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a LogprobsResult message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.LogprobsResult; /** * Decodes a LogprobsResult message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns LogprobsResult * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.LogprobsResult; /** * Verifies a LogprobsResult message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a LogprobsResult message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns LogprobsResult */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.LogprobsResult; /** * Creates a plain object from a LogprobsResult message. Also converts values to other types if specified. * @param message LogprobsResult * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.LogprobsResult, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this LogprobsResult to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for LogprobsResult * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace LogprobsResult { /** Properties of a Candidate. */ interface ICandidate { /** Candidate token */ token?: (string|null); /** Candidate tokenId */ tokenId?: (number|null); /** Candidate logProbability */ logProbability?: (number|null); } /** Represents a Candidate. */ class Candidate implements ICandidate { /** * Constructs a new Candidate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate); /** Candidate token. */ public token?: (string|null); /** Candidate tokenId. */ public tokenId?: (number|null); /** Candidate logProbability. */ public logProbability?: (number|null); /** * Creates a new Candidate instance using the specified properties. * @param [properties] Properties to set * @returns Candidate instance */ public static create(properties?: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate): google.ai.generativelanguage.v1beta.LogprobsResult.Candidate; /** * Encodes the specified Candidate message. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Candidate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.Candidate.verify|verify} messages. * @param message Candidate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Candidate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.LogprobsResult.Candidate; /** * Decodes a Candidate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Candidate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.LogprobsResult.Candidate; /** * Verifies a Candidate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Candidate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Candidate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.LogprobsResult.Candidate; /** * Creates a plain object from a Candidate message. Also converts values to other types if specified. * @param message Candidate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.LogprobsResult.Candidate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Candidate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Candidate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TopCandidates. */ interface ITopCandidates { /** TopCandidates candidates */ candidates?: (google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate[]|null); } /** Represents a TopCandidates. */ class TopCandidates implements ITopCandidates { /** * Constructs a new TopCandidates. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates); /** TopCandidates candidates. */ public candidates: google.ai.generativelanguage.v1beta.LogprobsResult.ICandidate[]; /** * Creates a new TopCandidates instance using the specified properties. * @param [properties] Properties to set * @returns TopCandidates instance */ public static create(properties?: google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates): google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates; /** * Encodes the specified TopCandidates message. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TopCandidates message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates.verify|verify} messages. * @param message TopCandidates message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.LogprobsResult.ITopCandidates, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TopCandidates message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates; /** * Decodes a TopCandidates message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TopCandidates * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates; /** * Verifies a TopCandidates message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TopCandidates message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TopCandidates */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates; /** * Creates a plain object from a TopCandidates message. Also converts values to other types if specified. * @param message TopCandidates * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.LogprobsResult.TopCandidates, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TopCandidates to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TopCandidates * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an AttributionSourceId. */ interface IAttributionSourceId { /** AttributionSourceId groundingPassage */ groundingPassage?: (google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId|null); /** AttributionSourceId semanticRetrieverChunk */ semanticRetrieverChunk?: (google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk|null); } /** Represents an AttributionSourceId. */ class AttributionSourceId implements IAttributionSourceId { /** * Constructs a new AttributionSourceId. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IAttributionSourceId); /** AttributionSourceId groundingPassage. */ public groundingPassage?: (google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId|null); /** AttributionSourceId semanticRetrieverChunk. */ public semanticRetrieverChunk?: (google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk|null); /** AttributionSourceId source. */ public source?: ("groundingPassage"|"semanticRetrieverChunk"); /** * Creates a new AttributionSourceId instance using the specified properties. * @param [properties] Properties to set * @returns AttributionSourceId instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IAttributionSourceId): google.ai.generativelanguage.v1beta.AttributionSourceId; /** * Encodes the specified AttributionSourceId message. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.verify|verify} messages. * @param message AttributionSourceId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IAttributionSourceId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified AttributionSourceId message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.verify|verify} messages. * @param message AttributionSourceId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IAttributionSourceId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an AttributionSourceId message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns AttributionSourceId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.AttributionSourceId; /** * Decodes an AttributionSourceId message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns AttributionSourceId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.AttributionSourceId; /** * Verifies an AttributionSourceId message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an AttributionSourceId message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns AttributionSourceId */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.AttributionSourceId; /** * Creates a plain object from an AttributionSourceId message. Also converts values to other types if specified. * @param message AttributionSourceId * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.AttributionSourceId, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this AttributionSourceId to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for AttributionSourceId * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace AttributionSourceId { /** Properties of a GroundingPassageId. */ interface IGroundingPassageId { /** GroundingPassageId passageId */ passageId?: (string|null); /** GroundingPassageId partIndex */ partIndex?: (number|null); } /** Represents a GroundingPassageId. */ class GroundingPassageId implements IGroundingPassageId { /** * Constructs a new GroundingPassageId. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId); /** GroundingPassageId passageId. */ public passageId: string; /** GroundingPassageId partIndex. */ public partIndex: number; /** * Creates a new GroundingPassageId instance using the specified properties. * @param [properties] Properties to set * @returns GroundingPassageId instance */ public static create(properties?: google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId): google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId; /** * Encodes the specified GroundingPassageId message. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId.verify|verify} messages. * @param message GroundingPassageId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingPassageId message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId.verify|verify} messages. * @param message GroundingPassageId message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.AttributionSourceId.IGroundingPassageId, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingPassageId message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingPassageId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId; /** * Decodes a GroundingPassageId message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingPassageId * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId; /** * Verifies a GroundingPassageId message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingPassageId message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingPassageId */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId; /** * Creates a plain object from a GroundingPassageId message. Also converts values to other types if specified. * @param message GroundingPassageId * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.AttributionSourceId.GroundingPassageId, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingPassageId to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingPassageId * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SemanticRetrieverChunk. */ interface ISemanticRetrieverChunk { /** SemanticRetrieverChunk source */ source?: (string|null); /** SemanticRetrieverChunk chunk */ chunk?: (string|null); } /** Represents a SemanticRetrieverChunk. */ class SemanticRetrieverChunk implements ISemanticRetrieverChunk { /** * Constructs a new SemanticRetrieverChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk); /** SemanticRetrieverChunk source. */ public source: string; /** SemanticRetrieverChunk chunk. */ public chunk: string; /** * Creates a new SemanticRetrieverChunk instance using the specified properties. * @param [properties] Properties to set * @returns SemanticRetrieverChunk instance */ public static create(properties?: google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk): google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk; /** * Encodes the specified SemanticRetrieverChunk message. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk.verify|verify} messages. * @param message SemanticRetrieverChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SemanticRetrieverChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk.verify|verify} messages. * @param message SemanticRetrieverChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.AttributionSourceId.ISemanticRetrieverChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SemanticRetrieverChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SemanticRetrieverChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk; /** * Decodes a SemanticRetrieverChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SemanticRetrieverChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk; /** * Verifies a SemanticRetrieverChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SemanticRetrieverChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SemanticRetrieverChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk; /** * Creates a plain object from a SemanticRetrieverChunk message. Also converts values to other types if specified. * @param message SemanticRetrieverChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.AttributionSourceId.SemanticRetrieverChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SemanticRetrieverChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SemanticRetrieverChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a GroundingAttribution. */ interface IGroundingAttribution { /** GroundingAttribution sourceId */ sourceId?: (google.ai.generativelanguage.v1beta.IAttributionSourceId|null); /** GroundingAttribution content */ content?: (google.ai.generativelanguage.v1beta.IContent|null); } /** Represents a GroundingAttribution. */ class GroundingAttribution implements IGroundingAttribution { /** * Constructs a new GroundingAttribution. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingAttribution); /** GroundingAttribution sourceId. */ public sourceId?: (google.ai.generativelanguage.v1beta.IAttributionSourceId|null); /** GroundingAttribution content. */ public content?: (google.ai.generativelanguage.v1beta.IContent|null); /** * Creates a new GroundingAttribution instance using the specified properties. * @param [properties] Properties to set * @returns GroundingAttribution instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingAttribution): google.ai.generativelanguage.v1beta.GroundingAttribution; /** * Encodes the specified GroundingAttribution message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingAttribution.verify|verify} messages. * @param message GroundingAttribution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingAttribution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingAttribution message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingAttribution.verify|verify} messages. * @param message GroundingAttribution message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingAttribution, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingAttribution message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingAttribution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingAttribution; /** * Decodes a GroundingAttribution message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingAttribution * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingAttribution; /** * Verifies a GroundingAttribution message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingAttribution message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingAttribution */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingAttribution; /** * Creates a plain object from a GroundingAttribution message. Also converts values to other types if specified. * @param message GroundingAttribution * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingAttribution, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingAttribution to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingAttribution * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RetrievalMetadata. */ interface IRetrievalMetadata { /** RetrievalMetadata googleSearchDynamicRetrievalScore */ googleSearchDynamicRetrievalScore?: (number|null); } /** Represents a RetrievalMetadata. */ class RetrievalMetadata implements IRetrievalMetadata { /** * Constructs a new RetrievalMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IRetrievalMetadata); /** RetrievalMetadata googleSearchDynamicRetrievalScore. */ public googleSearchDynamicRetrievalScore: number; /** * Creates a new RetrievalMetadata instance using the specified properties. * @param [properties] Properties to set * @returns RetrievalMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IRetrievalMetadata): google.ai.generativelanguage.v1beta.RetrievalMetadata; /** * Encodes the specified RetrievalMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievalMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.RetrievalMetadata.verify|verify} messages. * @param message RetrievalMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IRetrievalMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievalMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.RetrievalMetadata; /** * Decodes a RetrievalMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievalMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.RetrievalMetadata; /** * Verifies a RetrievalMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievalMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievalMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.RetrievalMetadata; /** * Creates a plain object from a RetrievalMetadata message. Also converts values to other types if specified. * @param message RetrievalMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.RetrievalMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievalMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievalMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingMetadata. */ interface IGroundingMetadata { /** GroundingMetadata searchEntryPoint */ searchEntryPoint?: (google.ai.generativelanguage.v1beta.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks */ groundingChunks?: (google.ai.generativelanguage.v1beta.IGroundingChunk[]|null); /** GroundingMetadata groundingSupports */ groundingSupports?: (google.ai.generativelanguage.v1beta.IGroundingSupport[]|null); /** GroundingMetadata retrievalMetadata */ retrievalMetadata?: (google.ai.generativelanguage.v1beta.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries */ webSearchQueries?: (string[]|null); /** GroundingMetadata googleMapsWidgetContextToken */ googleMapsWidgetContextToken?: (string|null); } /** Represents a GroundingMetadata. */ class GroundingMetadata implements IGroundingMetadata { /** * Constructs a new GroundingMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingMetadata); /** GroundingMetadata searchEntryPoint. */ public searchEntryPoint?: (google.ai.generativelanguage.v1beta.ISearchEntryPoint|null); /** GroundingMetadata groundingChunks. */ public groundingChunks: google.ai.generativelanguage.v1beta.IGroundingChunk[]; /** GroundingMetadata groundingSupports. */ public groundingSupports: google.ai.generativelanguage.v1beta.IGroundingSupport[]; /** GroundingMetadata retrievalMetadata. */ public retrievalMetadata?: (google.ai.generativelanguage.v1beta.IRetrievalMetadata|null); /** GroundingMetadata webSearchQueries. */ public webSearchQueries: string[]; /** GroundingMetadata googleMapsWidgetContextToken. */ public googleMapsWidgetContextToken?: (string|null); /** * Creates a new GroundingMetadata instance using the specified properties. * @param [properties] Properties to set * @returns GroundingMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingMetadata): google.ai.generativelanguage.v1beta.GroundingMetadata; /** * Encodes the specified GroundingMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingMetadata.verify|verify} messages. * @param message GroundingMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingMetadata; /** * Decodes a GroundingMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingMetadata; /** * Verifies a GroundingMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingMetadata; /** * Creates a plain object from a GroundingMetadata message. Also converts values to other types if specified. * @param message GroundingMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SearchEntryPoint. */ interface ISearchEntryPoint { /** SearchEntryPoint renderedContent */ renderedContent?: (string|null); /** SearchEntryPoint sdkBlob */ sdkBlob?: (Uint8Array|Buffer|string|null); } /** Represents a SearchEntryPoint. */ class SearchEntryPoint implements ISearchEntryPoint { /** * Constructs a new SearchEntryPoint. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISearchEntryPoint); /** SearchEntryPoint renderedContent. */ public renderedContent: string; /** SearchEntryPoint sdkBlob. */ public sdkBlob: (Uint8Array|Buffer|string); /** * Creates a new SearchEntryPoint instance using the specified properties. * @param [properties] Properties to set * @returns SearchEntryPoint instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISearchEntryPoint): google.ai.generativelanguage.v1beta.SearchEntryPoint; /** * Encodes the specified SearchEntryPoint message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SearchEntryPoint message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SearchEntryPoint.verify|verify} messages. * @param message SearchEntryPoint message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISearchEntryPoint, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SearchEntryPoint message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SearchEntryPoint; /** * Decodes a SearchEntryPoint message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SearchEntryPoint * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SearchEntryPoint; /** * Verifies a SearchEntryPoint message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SearchEntryPoint message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SearchEntryPoint */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SearchEntryPoint; /** * Creates a plain object from a SearchEntryPoint message. Also converts values to other types if specified. * @param message SearchEntryPoint * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SearchEntryPoint, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SearchEntryPoint to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SearchEntryPoint * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingChunk. */ interface IGroundingChunk { /** GroundingChunk web */ web?: (google.ai.generativelanguage.v1beta.GroundingChunk.IWeb|null); /** GroundingChunk retrievedContext */ retrievedContext?: (google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext|null); /** GroundingChunk maps */ maps?: (google.ai.generativelanguage.v1beta.GroundingChunk.IMaps|null); } /** Represents a GroundingChunk. */ class GroundingChunk implements IGroundingChunk { /** * Constructs a new GroundingChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingChunk); /** GroundingChunk web. */ public web?: (google.ai.generativelanguage.v1beta.GroundingChunk.IWeb|null); /** GroundingChunk retrievedContext. */ public retrievedContext?: (google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext|null); /** GroundingChunk maps. */ public maps?: (google.ai.generativelanguage.v1beta.GroundingChunk.IMaps|null); /** GroundingChunk chunkType. */ public chunkType?: ("web"|"retrievedContext"|"maps"); /** * Creates a new GroundingChunk instance using the specified properties. * @param [properties] Properties to set * @returns GroundingChunk instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingChunk): google.ai.generativelanguage.v1beta.GroundingChunk; /** * Encodes the specified GroundingChunk message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.verify|verify} messages. * @param message GroundingChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk; /** * Decodes a GroundingChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk; /** * Verifies a GroundingChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk; /** * Creates a plain object from a GroundingChunk message. Also converts values to other types if specified. * @param message GroundingChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GroundingChunk { /** Properties of a Web. */ interface IWeb { /** Web uri */ uri?: (string|null); /** Web title */ title?: (string|null); } /** Represents a Web. */ class Web implements IWeb { /** * Constructs a new Web. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IWeb); /** Web uri. */ public uri?: (string|null); /** Web title. */ public title?: (string|null); /** * Creates a new Web instance using the specified properties. * @param [properties] Properties to set * @returns Web instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IWeb): google.ai.generativelanguage.v1beta.GroundingChunk.Web; /** * Encodes the specified Web message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Web message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Web.verify|verify} messages. * @param message Web message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GroundingChunk.IWeb, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Web message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk.Web; /** * Decodes a Web message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Web * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk.Web; /** * Verifies a Web message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Web message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Web */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk.Web; /** * Creates a plain object from a Web message. Also converts values to other types if specified. * @param message Web * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk.Web, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Web to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Web * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RetrievedContext. */ interface IRetrievedContext { /** RetrievedContext uri */ uri?: (string|null); /** RetrievedContext title */ title?: (string|null); /** RetrievedContext text */ text?: (string|null); } /** Represents a RetrievedContext. */ class RetrievedContext implements IRetrievedContext { /** * Constructs a new RetrievedContext. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext); /** RetrievedContext uri. */ public uri?: (string|null); /** RetrievedContext title. */ public title?: (string|null); /** RetrievedContext text. */ public text?: (string|null); /** * Creates a new RetrievedContext instance using the specified properties. * @param [properties] Properties to set * @returns RetrievedContext instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext): google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext; /** * Encodes the specified RetrievedContext message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext.verify|verify} messages. * @param message RetrievedContext message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RetrievedContext message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext.verify|verify} messages. * @param message RetrievedContext message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GroundingChunk.IRetrievedContext, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RetrievedContext message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RetrievedContext * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext; /** * Decodes a RetrievedContext message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RetrievedContext * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext; /** * Verifies a RetrievedContext message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RetrievedContext message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RetrievedContext */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext; /** * Creates a plain object from a RetrievedContext message. Also converts values to other types if specified. * @param message RetrievedContext * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk.RetrievedContext, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RetrievedContext to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RetrievedContext * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Maps. */ interface IMaps { /** Maps uri */ uri?: (string|null); /** Maps title */ title?: (string|null); /** Maps text */ text?: (string|null); /** Maps placeId */ placeId?: (string|null); /** Maps placeAnswerSources */ placeAnswerSources?: (google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources|null); } /** Represents a Maps. */ class Maps implements IMaps { /** * Constructs a new Maps. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IMaps); /** Maps uri. */ public uri?: (string|null); /** Maps title. */ public title?: (string|null); /** Maps text. */ public text?: (string|null); /** Maps placeId. */ public placeId?: (string|null); /** Maps placeAnswerSources. */ public placeAnswerSources?: (google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources|null); /** * Creates a new Maps instance using the specified properties. * @param [properties] Properties to set * @returns Maps instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.IMaps): google.ai.generativelanguage.v1beta.GroundingChunk.Maps; /** * Encodes the specified Maps message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.verify|verify} messages. * @param message Maps message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GroundingChunk.IMaps, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Maps message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.verify|verify} messages. * @param message Maps message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GroundingChunk.IMaps, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Maps message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Maps * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk.Maps; /** * Decodes a Maps message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Maps * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk.Maps; /** * Verifies a Maps message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Maps message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Maps */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk.Maps; /** * Creates a plain object from a Maps message. Also converts values to other types if specified. * @param message Maps * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Maps to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Maps * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Maps { /** Properties of a PlaceAnswerSources. */ interface IPlaceAnswerSources { /** PlaceAnswerSources reviewSnippets */ reviewSnippets?: (google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet[]|null); } /** Represents a PlaceAnswerSources. */ class PlaceAnswerSources implements IPlaceAnswerSources { /** * Constructs a new PlaceAnswerSources. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources); /** PlaceAnswerSources reviewSnippets. */ public reviewSnippets: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet[]; /** * Creates a new PlaceAnswerSources instance using the specified properties. * @param [properties] Properties to set * @returns PlaceAnswerSources instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources; /** * Encodes the specified PlaceAnswerSources message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.verify|verify} messages. * @param message PlaceAnswerSources message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PlaceAnswerSources message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.verify|verify} messages. * @param message PlaceAnswerSources message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.IPlaceAnswerSources, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PlaceAnswerSources message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PlaceAnswerSources * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources; /** * Decodes a PlaceAnswerSources message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PlaceAnswerSources * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources; /** * Verifies a PlaceAnswerSources message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PlaceAnswerSources message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PlaceAnswerSources */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources; /** * Creates a plain object from a PlaceAnswerSources message. Also converts values to other types if specified. * @param message PlaceAnswerSources * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PlaceAnswerSources to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PlaceAnswerSources * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace PlaceAnswerSources { /** Properties of a ReviewSnippet. */ interface IReviewSnippet { /** ReviewSnippet reviewId */ reviewId?: (string|null); /** ReviewSnippet googleMapsUri */ googleMapsUri?: (string|null); /** ReviewSnippet title */ title?: (string|null); } /** Represents a ReviewSnippet. */ class ReviewSnippet implements IReviewSnippet { /** * Constructs a new ReviewSnippet. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet); /** ReviewSnippet reviewId. */ public reviewId?: (string|null); /** ReviewSnippet googleMapsUri. */ public googleMapsUri?: (string|null); /** ReviewSnippet title. */ public title?: (string|null); /** * Creates a new ReviewSnippet instance using the specified properties. * @param [properties] Properties to set * @returns ReviewSnippet instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet; /** * Encodes the specified ReviewSnippet message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet.verify|verify} messages. * @param message ReviewSnippet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ReviewSnippet message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet.verify|verify} messages. * @param message ReviewSnippet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.IReviewSnippet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ReviewSnippet message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ReviewSnippet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet; /** * Decodes a ReviewSnippet message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ReviewSnippet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet; /** * Verifies a ReviewSnippet message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ReviewSnippet message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ReviewSnippet */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet; /** * Creates a plain object from a ReviewSnippet message. Also converts values to other types if specified. * @param message ReviewSnippet * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingChunk.Maps.PlaceAnswerSources.ReviewSnippet, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ReviewSnippet to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ReviewSnippet * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } } } /** Properties of a Segment. */ interface ISegment { /** Segment partIndex */ partIndex?: (number|null); /** Segment startIndex */ startIndex?: (number|null); /** Segment endIndex */ endIndex?: (number|null); /** Segment text */ text?: (string|null); } /** Represents a Segment. */ class Segment implements ISegment { /** * Constructs a new Segment. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISegment); /** Segment partIndex. */ public partIndex: number; /** Segment startIndex. */ public startIndex: number; /** Segment endIndex. */ public endIndex: number; /** Segment text. */ public text: string; /** * Creates a new Segment instance using the specified properties. * @param [properties] Properties to set * @returns Segment instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISegment): google.ai.generativelanguage.v1beta.Segment; /** * Encodes the specified Segment message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Segment message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Segment.verify|verify} messages. * @param message Segment message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISegment, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Segment message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Segment; /** * Decodes a Segment message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Segment * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Segment; /** * Verifies a Segment message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Segment message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Segment */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Segment; /** * Creates a plain object from a Segment message. Also converts values to other types if specified. * @param message Segment * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Segment, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Segment to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Segment * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GroundingSupport. */ interface IGroundingSupport { /** GroundingSupport segment */ segment?: (google.ai.generativelanguage.v1beta.ISegment|null); /** GroundingSupport groundingChunkIndices */ groundingChunkIndices?: (number[]|null); /** GroundingSupport confidenceScores */ confidenceScores?: (number[]|null); } /** Represents a GroundingSupport. */ class GroundingSupport implements IGroundingSupport { /** * Constructs a new GroundingSupport. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGroundingSupport); /** GroundingSupport segment. */ public segment?: (google.ai.generativelanguage.v1beta.ISegment|null); /** GroundingSupport groundingChunkIndices. */ public groundingChunkIndices: number[]; /** GroundingSupport confidenceScores. */ public confidenceScores: number[]; /** * Creates a new GroundingSupport instance using the specified properties. * @param [properties] Properties to set * @returns GroundingSupport instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGroundingSupport): google.ai.generativelanguage.v1beta.GroundingSupport; /** * Encodes the specified GroundingSupport message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GroundingSupport message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GroundingSupport.verify|verify} messages. * @param message GroundingSupport message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGroundingSupport, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GroundingSupport message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GroundingSupport; /** * Decodes a GroundingSupport message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GroundingSupport * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GroundingSupport; /** * Verifies a GroundingSupport message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GroundingSupport message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GroundingSupport */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GroundingSupport; /** * Creates a plain object from a GroundingSupport message. Also converts values to other types if specified. * @param message GroundingSupport * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GroundingSupport, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GroundingSupport to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GroundingSupport * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateAnswerRequest. */ interface IGenerateAnswerRequest { /** GenerateAnswerRequest inlinePassages */ inlinePassages?: (google.ai.generativelanguage.v1beta.IGroundingPassages|null); /** GenerateAnswerRequest semanticRetriever */ semanticRetriever?: (google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig|null); /** GenerateAnswerRequest model */ model?: (string|null); /** GenerateAnswerRequest contents */ contents?: (google.ai.generativelanguage.v1beta.IContent[]|null); /** GenerateAnswerRequest answerStyle */ answerStyle?: (google.ai.generativelanguage.v1beta.GenerateAnswerRequest.AnswerStyle|keyof typeof google.ai.generativelanguage.v1beta.GenerateAnswerRequest.AnswerStyle|null); /** GenerateAnswerRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1beta.ISafetySetting[]|null); /** GenerateAnswerRequest temperature */ temperature?: (number|null); } /** Represents a GenerateAnswerRequest. */ class GenerateAnswerRequest implements IGenerateAnswerRequest { /** * Constructs a new GenerateAnswerRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest); /** GenerateAnswerRequest inlinePassages. */ public inlinePassages?: (google.ai.generativelanguage.v1beta.IGroundingPassages|null); /** GenerateAnswerRequest semanticRetriever. */ public semanticRetriever?: (google.ai.generativelanguage.v1beta.ISemanticRetrieverConfig|null); /** GenerateAnswerRequest model. */ public model: string; /** GenerateAnswerRequest contents. */ public contents: google.ai.generativelanguage.v1beta.IContent[]; /** GenerateAnswerRequest answerStyle. */ public answerStyle: (google.ai.generativelanguage.v1beta.GenerateAnswerRequest.AnswerStyle|keyof typeof google.ai.generativelanguage.v1beta.GenerateAnswerRequest.AnswerStyle); /** GenerateAnswerRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1beta.ISafetySetting[]; /** GenerateAnswerRequest temperature. */ public temperature?: (number|null); /** GenerateAnswerRequest groundingSource. */ public groundingSource?: ("inlinePassages"|"semanticRetriever"); /** * Creates a new GenerateAnswerRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateAnswerRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest): google.ai.generativelanguage.v1beta.GenerateAnswerRequest; /** * Encodes the specified GenerateAnswerRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerRequest.verify|verify} messages. * @param message GenerateAnswerRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateAnswerRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerRequest.verify|verify} messages. * @param message GenerateAnswerRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateAnswerRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateAnswerRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateAnswerRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateAnswerRequest; /** * Decodes a GenerateAnswerRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateAnswerRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateAnswerRequest; /** * Verifies a GenerateAnswerRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateAnswerRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateAnswerRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateAnswerRequest; /** * Creates a plain object from a GenerateAnswerRequest message. Also converts values to other types if specified. * @param message GenerateAnswerRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateAnswerRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateAnswerRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateAnswerRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateAnswerRequest { /** AnswerStyle enum. */ enum AnswerStyle { ANSWER_STYLE_UNSPECIFIED = 0, ABSTRACTIVE = 1, EXTRACTIVE = 2, VERBOSE = 3 } } /** Properties of a GenerateAnswerResponse. */ interface IGenerateAnswerResponse { /** GenerateAnswerResponse answer */ answer?: (google.ai.generativelanguage.v1beta.ICandidate|null); /** GenerateAnswerResponse answerableProbability */ answerableProbability?: (number|null); /** GenerateAnswerResponse inputFeedback */ inputFeedback?: (google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback|null); } /** Represents a GenerateAnswerResponse. */ class GenerateAnswerResponse implements IGenerateAnswerResponse { /** * Constructs a new GenerateAnswerResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateAnswerResponse); /** GenerateAnswerResponse answer. */ public answer?: (google.ai.generativelanguage.v1beta.ICandidate|null); /** GenerateAnswerResponse answerableProbability. */ public answerableProbability?: (number|null); /** GenerateAnswerResponse inputFeedback. */ public inputFeedback?: (google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback|null); /** * Creates a new GenerateAnswerResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateAnswerResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateAnswerResponse): google.ai.generativelanguage.v1beta.GenerateAnswerResponse; /** * Encodes the specified GenerateAnswerResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerResponse.verify|verify} messages. * @param message GenerateAnswerResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateAnswerResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateAnswerResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerResponse.verify|verify} messages. * @param message GenerateAnswerResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateAnswerResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateAnswerResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateAnswerResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateAnswerResponse; /** * Decodes a GenerateAnswerResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateAnswerResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateAnswerResponse; /** * Verifies a GenerateAnswerResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateAnswerResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateAnswerResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateAnswerResponse; /** * Creates a plain object from a GenerateAnswerResponse message. Also converts values to other types if specified. * @param message GenerateAnswerResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateAnswerResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateAnswerResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateAnswerResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GenerateAnswerResponse { /** Properties of an InputFeedback. */ interface IInputFeedback { /** InputFeedback blockReason */ blockReason?: (google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.BlockReason|null); /** InputFeedback safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta.ISafetyRating[]|null); } /** Represents an InputFeedback. */ class InputFeedback implements IInputFeedback { /** * Constructs a new InputFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback); /** InputFeedback blockReason. */ public blockReason?: (google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.BlockReason|keyof typeof google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.BlockReason|null); /** InputFeedback safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta.ISafetyRating[]; /** * Creates a new InputFeedback instance using the specified properties. * @param [properties] Properties to set * @returns InputFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback): google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback; /** * Encodes the specified InputFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.verify|verify} messages. * @param message InputFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified InputFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback.verify|verify} messages. * @param message InputFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.GenerateAnswerResponse.IInputFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an InputFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns InputFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback; /** * Decodes an InputFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns InputFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback; /** * Verifies an InputFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an InputFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns InputFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback; /** * Creates a plain object from an InputFeedback message. Also converts values to other types if specified. * @param message InputFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateAnswerResponse.InputFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this InputFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for InputFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace InputFeedback { /** BlockReason enum. */ enum BlockReason { BLOCK_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } } /** Properties of an EmbedContentRequest. */ interface IEmbedContentRequest { /** EmbedContentRequest model */ model?: (string|null); /** EmbedContentRequest content */ content?: (google.ai.generativelanguage.v1beta.IContent|null); /** EmbedContentRequest taskType */ taskType?: (google.ai.generativelanguage.v1beta.TaskType|keyof typeof google.ai.generativelanguage.v1beta.TaskType|null); /** EmbedContentRequest title */ title?: (string|null); /** EmbedContentRequest outputDimensionality */ outputDimensionality?: (number|null); } /** Represents an EmbedContentRequest. */ class EmbedContentRequest implements IEmbedContentRequest { /** * Constructs a new EmbedContentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IEmbedContentRequest); /** EmbedContentRequest model. */ public model: string; /** EmbedContentRequest content. */ public content?: (google.ai.generativelanguage.v1beta.IContent|null); /** EmbedContentRequest taskType. */ public taskType?: (google.ai.generativelanguage.v1beta.TaskType|keyof typeof google.ai.generativelanguage.v1beta.TaskType|null); /** EmbedContentRequest title. */ public title?: (string|null); /** EmbedContentRequest outputDimensionality. */ public outputDimensionality?: (number|null); /** * Creates a new EmbedContentRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IEmbedContentRequest): google.ai.generativelanguage.v1beta.EmbedContentRequest; /** * Encodes the specified EmbedContentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedContentRequest.verify|verify} messages. * @param message EmbedContentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IEmbedContentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.EmbedContentRequest; /** * Decodes an EmbedContentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.EmbedContentRequest; /** * Verifies an EmbedContentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.EmbedContentRequest; /** * Creates a plain object from an EmbedContentRequest message. Also converts values to other types if specified. * @param message EmbedContentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.EmbedContentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ContentEmbedding. */ interface IContentEmbedding { /** ContentEmbedding values */ values?: (number[]|null); } /** Represents a ContentEmbedding. */ class ContentEmbedding implements IContentEmbedding { /** * Constructs a new ContentEmbedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IContentEmbedding); /** ContentEmbedding values. */ public values: number[]; /** * Creates a new ContentEmbedding instance using the specified properties. * @param [properties] Properties to set * @returns ContentEmbedding instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IContentEmbedding): google.ai.generativelanguage.v1beta.ContentEmbedding; /** * Encodes the specified ContentEmbedding message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentEmbedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContentEmbedding.verify|verify} messages. * @param message ContentEmbedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IContentEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentEmbedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ContentEmbedding; /** * Decodes a ContentEmbedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentEmbedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ContentEmbedding; /** * Verifies a ContentEmbedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentEmbedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentEmbedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ContentEmbedding; /** * Creates a plain object from a ContentEmbedding message. Also converts values to other types if specified. * @param message ContentEmbedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ContentEmbedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentEmbedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentEmbedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedContentResponse. */ interface IEmbedContentResponse { /** EmbedContentResponse embedding */ embedding?: (google.ai.generativelanguage.v1beta.IContentEmbedding|null); } /** Represents an EmbedContentResponse. */ class EmbedContentResponse implements IEmbedContentResponse { /** * Constructs a new EmbedContentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IEmbedContentResponse); /** EmbedContentResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1beta.IContentEmbedding|null); /** * Creates a new EmbedContentResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedContentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IEmbedContentResponse): google.ai.generativelanguage.v1beta.EmbedContentResponse; /** * Encodes the specified EmbedContentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedContentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedContentResponse.verify|verify} messages. * @param message EmbedContentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IEmbedContentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedContentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.EmbedContentResponse; /** * Decodes an EmbedContentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedContentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.EmbedContentResponse; /** * Verifies an EmbedContentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedContentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedContentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.EmbedContentResponse; /** * Creates a plain object from an EmbedContentResponse message. Also converts values to other types if specified. * @param message EmbedContentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.EmbedContentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedContentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedContentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsRequest. */ interface IBatchEmbedContentsRequest { /** BatchEmbedContentsRequest model */ model?: (string|null); /** BatchEmbedContentsRequest requests */ requests?: (google.ai.generativelanguage.v1beta.IEmbedContentRequest[]|null); } /** Represents a BatchEmbedContentsRequest. */ class BatchEmbedContentsRequest implements IBatchEmbedContentsRequest { /** * Constructs a new BatchEmbedContentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest); /** BatchEmbedContentsRequest model. */ public model: string; /** BatchEmbedContentsRequest requests. */ public requests: google.ai.generativelanguage.v1beta.IEmbedContentRequest[]; /** * Creates a new BatchEmbedContentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest): google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest; /** * Encodes the specified BatchEmbedContentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest.verify|verify} messages. * @param message BatchEmbedContentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchEmbedContentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest; /** * Decodes a BatchEmbedContentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest; /** * Verifies a BatchEmbedContentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest; /** * Creates a plain object from a BatchEmbedContentsRequest message. Also converts values to other types if specified. * @param message BatchEmbedContentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchEmbedContentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedContentsResponse. */ interface IBatchEmbedContentsResponse { /** BatchEmbedContentsResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1beta.IContentEmbedding[]|null); } /** Represents a BatchEmbedContentsResponse. */ class BatchEmbedContentsResponse implements IBatchEmbedContentsResponse { /** * Constructs a new BatchEmbedContentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedContentsResponse); /** BatchEmbedContentsResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1beta.IContentEmbedding[]; /** * Creates a new BatchEmbedContentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedContentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedContentsResponse): google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse; /** * Encodes the specified BatchEmbedContentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedContentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse.verify|verify} messages. * @param message BatchEmbedContentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchEmbedContentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse; /** * Decodes a BatchEmbedContentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedContentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse; /** * Verifies a BatchEmbedContentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedContentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedContentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse; /** * Creates a plain object from a BatchEmbedContentsResponse message. Also converts values to other types if specified. * @param message BatchEmbedContentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchEmbedContentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedContentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedContentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensRequest. */ interface ICountTokensRequest { /** CountTokensRequest model */ model?: (string|null); /** CountTokensRequest contents */ contents?: (google.ai.generativelanguage.v1beta.IContent[]|null); /** CountTokensRequest generateContentRequest */ generateContentRequest?: (google.ai.generativelanguage.v1beta.IGenerateContentRequest|null); } /** Represents a CountTokensRequest. */ class CountTokensRequest implements ICountTokensRequest { /** * Constructs a new CountTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountTokensRequest); /** CountTokensRequest model. */ public model: string; /** CountTokensRequest contents. */ public contents: google.ai.generativelanguage.v1beta.IContent[]; /** CountTokensRequest generateContentRequest. */ public generateContentRequest?: (google.ai.generativelanguage.v1beta.IGenerateContentRequest|null); /** * Creates a new CountTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountTokensRequest): google.ai.generativelanguage.v1beta.CountTokensRequest; /** * Encodes the specified CountTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTokensRequest.verify|verify} messages. * @param message CountTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountTokensRequest; /** * Decodes a CountTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountTokensRequest; /** * Verifies a CountTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountTokensRequest; /** * Creates a plain object from a CountTokensRequest message. Also converts values to other types if specified. * @param message CountTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTokensResponse. */ interface ICountTokensResponse { /** CountTokensResponse totalTokens */ totalTokens?: (number|null); /** CountTokensResponse cachedContentTokenCount */ cachedContentTokenCount?: (number|null); /** CountTokensResponse promptTokensDetails */ promptTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** CountTokensResponse cacheTokensDetails */ cacheTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); } /** Represents a CountTokensResponse. */ class CountTokensResponse implements ICountTokensResponse { /** * Constructs a new CountTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountTokensResponse); /** CountTokensResponse totalTokens. */ public totalTokens: number; /** CountTokensResponse cachedContentTokenCount. */ public cachedContentTokenCount: number; /** CountTokensResponse promptTokensDetails. */ public promptTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** CountTokensResponse cacheTokensDetails. */ public cacheTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** * Creates a new CountTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountTokensResponse): google.ai.generativelanguage.v1beta.CountTokensResponse; /** * Encodes the specified CountTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTokensResponse.verify|verify} messages. * @param message CountTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountTokensResponse; /** * Decodes a CountTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountTokensResponse; /** * Verifies a CountTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountTokensResponse; /** * Creates a plain object from a CountTokensResponse message. Also converts values to other types if specified. * @param message CountTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RealtimeInputConfig. */ interface IRealtimeInputConfig { /** RealtimeInputConfig automaticActivityDetection */ automaticActivityDetection?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection|null); /** RealtimeInputConfig activityHandling */ activityHandling?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.ActivityHandling|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.ActivityHandling|null); /** RealtimeInputConfig turnCoverage */ turnCoverage?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.TurnCoverage|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.TurnCoverage|null); } /** Represents a RealtimeInputConfig. */ class RealtimeInputConfig implements IRealtimeInputConfig { /** * Constructs a new RealtimeInputConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IRealtimeInputConfig); /** RealtimeInputConfig automaticActivityDetection. */ public automaticActivityDetection?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection|null); /** RealtimeInputConfig activityHandling. */ public activityHandling?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.ActivityHandling|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.ActivityHandling|null); /** RealtimeInputConfig turnCoverage. */ public turnCoverage?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.TurnCoverage|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.TurnCoverage|null); /** * Creates a new RealtimeInputConfig instance using the specified properties. * @param [properties] Properties to set * @returns RealtimeInputConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IRealtimeInputConfig): google.ai.generativelanguage.v1beta.RealtimeInputConfig; /** * Encodes the specified RealtimeInputConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.RealtimeInputConfig.verify|verify} messages. * @param message RealtimeInputConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IRealtimeInputConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RealtimeInputConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.RealtimeInputConfig.verify|verify} messages. * @param message RealtimeInputConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IRealtimeInputConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RealtimeInputConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RealtimeInputConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.RealtimeInputConfig; /** * Decodes a RealtimeInputConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RealtimeInputConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.RealtimeInputConfig; /** * Verifies a RealtimeInputConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RealtimeInputConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RealtimeInputConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.RealtimeInputConfig; /** * Creates a plain object from a RealtimeInputConfig message. Also converts values to other types if specified. * @param message RealtimeInputConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.RealtimeInputConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RealtimeInputConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RealtimeInputConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace RealtimeInputConfig { /** Properties of an AutomaticActivityDetection. */ interface IAutomaticActivityDetection { /** AutomaticActivityDetection disabled */ disabled?: (boolean|null); /** AutomaticActivityDetection startOfSpeechSensitivity */ startOfSpeechSensitivity?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.StartSensitivity|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.StartSensitivity|null); /** AutomaticActivityDetection prefixPaddingMs */ prefixPaddingMs?: (number|null); /** AutomaticActivityDetection endOfSpeechSensitivity */ endOfSpeechSensitivity?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.EndSensitivity|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.EndSensitivity|null); /** AutomaticActivityDetection silenceDurationMs */ silenceDurationMs?: (number|null); } /** Represents an AutomaticActivityDetection. */ class AutomaticActivityDetection implements IAutomaticActivityDetection { /** * Constructs a new AutomaticActivityDetection. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection); /** AutomaticActivityDetection disabled. */ public disabled?: (boolean|null); /** AutomaticActivityDetection startOfSpeechSensitivity. */ public startOfSpeechSensitivity?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.StartSensitivity|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.StartSensitivity|null); /** AutomaticActivityDetection prefixPaddingMs. */ public prefixPaddingMs?: (number|null); /** AutomaticActivityDetection endOfSpeechSensitivity. */ public endOfSpeechSensitivity?: (google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.EndSensitivity|keyof typeof google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.EndSensitivity|null); /** AutomaticActivityDetection silenceDurationMs. */ public silenceDurationMs?: (number|null); /** * Creates a new AutomaticActivityDetection instance using the specified properties. * @param [properties] Properties to set * @returns AutomaticActivityDetection instance */ public static create(properties?: google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection): google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection; /** * Encodes the specified AutomaticActivityDetection message. Does not implicitly {@link google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.verify|verify} messages. * @param message AutomaticActivityDetection message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified AutomaticActivityDetection message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection.verify|verify} messages. * @param message AutomaticActivityDetection message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.RealtimeInputConfig.IAutomaticActivityDetection, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an AutomaticActivityDetection message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns AutomaticActivityDetection * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection; /** * Decodes an AutomaticActivityDetection message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns AutomaticActivityDetection * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection; /** * Verifies an AutomaticActivityDetection message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an AutomaticActivityDetection message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns AutomaticActivityDetection */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection; /** * Creates a plain object from an AutomaticActivityDetection message. Also converts values to other types if specified. * @param message AutomaticActivityDetection * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.RealtimeInputConfig.AutomaticActivityDetection, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this AutomaticActivityDetection to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for AutomaticActivityDetection * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace AutomaticActivityDetection { /** StartSensitivity enum. */ enum StartSensitivity { START_SENSITIVITY_UNSPECIFIED = 0, START_SENSITIVITY_HIGH = 1, START_SENSITIVITY_LOW = 2 } /** EndSensitivity enum. */ enum EndSensitivity { END_SENSITIVITY_UNSPECIFIED = 0, END_SENSITIVITY_HIGH = 1, END_SENSITIVITY_LOW = 2 } } /** ActivityHandling enum. */ enum ActivityHandling { ACTIVITY_HANDLING_UNSPECIFIED = 0, START_OF_ACTIVITY_INTERRUPTS = 1, NO_INTERRUPTION = 2 } /** TurnCoverage enum. */ enum TurnCoverage { TURN_COVERAGE_UNSPECIFIED = 0, TURN_INCLUDES_ONLY_ACTIVITY = 1, TURN_INCLUDES_ALL_INPUT = 2 } } /** Properties of a SessionResumptionConfig. */ interface ISessionResumptionConfig { /** SessionResumptionConfig handle */ handle?: (string|null); } /** Represents a SessionResumptionConfig. */ class SessionResumptionConfig implements ISessionResumptionConfig { /** * Constructs a new SessionResumptionConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISessionResumptionConfig); /** SessionResumptionConfig handle. */ public handle?: (string|null); /** * Creates a new SessionResumptionConfig instance using the specified properties. * @param [properties] Properties to set * @returns SessionResumptionConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISessionResumptionConfig): google.ai.generativelanguage.v1beta.SessionResumptionConfig; /** * Encodes the specified SessionResumptionConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SessionResumptionConfig.verify|verify} messages. * @param message SessionResumptionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISessionResumptionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SessionResumptionConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SessionResumptionConfig.verify|verify} messages. * @param message SessionResumptionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISessionResumptionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SessionResumptionConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SessionResumptionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SessionResumptionConfig; /** * Decodes a SessionResumptionConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SessionResumptionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SessionResumptionConfig; /** * Verifies a SessionResumptionConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SessionResumptionConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SessionResumptionConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SessionResumptionConfig; /** * Creates a plain object from a SessionResumptionConfig message. Also converts values to other types if specified. * @param message SessionResumptionConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SessionResumptionConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SessionResumptionConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SessionResumptionConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ContextWindowCompressionConfig. */ interface IContextWindowCompressionConfig { /** ContextWindowCompressionConfig slidingWindow */ slidingWindow?: (google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow|null); /** ContextWindowCompressionConfig triggerTokens */ triggerTokens?: (number|Long|string|null); } /** Represents a ContextWindowCompressionConfig. */ class ContextWindowCompressionConfig implements IContextWindowCompressionConfig { /** * Constructs a new ContextWindowCompressionConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig); /** ContextWindowCompressionConfig slidingWindow. */ public slidingWindow?: (google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow|null); /** ContextWindowCompressionConfig triggerTokens. */ public triggerTokens?: (number|Long|string|null); /** ContextWindowCompressionConfig compressionMechanism. */ public compressionMechanism?: "slidingWindow"; /** * Creates a new ContextWindowCompressionConfig instance using the specified properties. * @param [properties] Properties to set * @returns ContextWindowCompressionConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig; /** * Encodes the specified ContextWindowCompressionConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.verify|verify} messages. * @param message ContextWindowCompressionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContextWindowCompressionConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.verify|verify} messages. * @param message ContextWindowCompressionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContextWindowCompressionConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContextWindowCompressionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig; /** * Decodes a ContextWindowCompressionConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContextWindowCompressionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig; /** * Verifies a ContextWindowCompressionConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContextWindowCompressionConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContextWindowCompressionConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig; /** * Creates a plain object from a ContextWindowCompressionConfig message. Also converts values to other types if specified. * @param message ContextWindowCompressionConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContextWindowCompressionConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContextWindowCompressionConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ContextWindowCompressionConfig { /** Properties of a SlidingWindow. */ interface ISlidingWindow { /** SlidingWindow targetTokens */ targetTokens?: (number|Long|string|null); } /** Represents a SlidingWindow. */ class SlidingWindow implements ISlidingWindow { /** * Constructs a new SlidingWindow. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow); /** SlidingWindow targetTokens. */ public targetTokens?: (number|Long|string|null); /** * Creates a new SlidingWindow instance using the specified properties. * @param [properties] Properties to set * @returns SlidingWindow instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow; /** * Encodes the specified SlidingWindow message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow.verify|verify} messages. * @param message SlidingWindow message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SlidingWindow message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow.verify|verify} messages. * @param message SlidingWindow message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.ISlidingWindow, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SlidingWindow message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SlidingWindow * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow; /** * Decodes a SlidingWindow message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SlidingWindow * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow; /** * Verifies a SlidingWindow message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SlidingWindow message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SlidingWindow */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow; /** * Creates a plain object from a SlidingWindow message. Also converts values to other types if specified. * @param message SlidingWindow * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ContextWindowCompressionConfig.SlidingWindow, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SlidingWindow to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SlidingWindow * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an AudioTranscriptionConfig. */ interface IAudioTranscriptionConfig { } /** Represents an AudioTranscriptionConfig. */ class AudioTranscriptionConfig implements IAudioTranscriptionConfig { /** * Constructs a new AudioTranscriptionConfig. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig); /** * Creates a new AudioTranscriptionConfig instance using the specified properties. * @param [properties] Properties to set * @returns AudioTranscriptionConfig instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig): google.ai.generativelanguage.v1beta.AudioTranscriptionConfig; /** * Encodes the specified AudioTranscriptionConfig message. Does not implicitly {@link google.ai.generativelanguage.v1beta.AudioTranscriptionConfig.verify|verify} messages. * @param message AudioTranscriptionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified AudioTranscriptionConfig message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.AudioTranscriptionConfig.verify|verify} messages. * @param message AudioTranscriptionConfig message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an AudioTranscriptionConfig message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns AudioTranscriptionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.AudioTranscriptionConfig; /** * Decodes an AudioTranscriptionConfig message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns AudioTranscriptionConfig * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.AudioTranscriptionConfig; /** * Verifies an AudioTranscriptionConfig message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an AudioTranscriptionConfig message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns AudioTranscriptionConfig */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.AudioTranscriptionConfig; /** * Creates a plain object from an AudioTranscriptionConfig message. Also converts values to other types if specified. * @param message AudioTranscriptionConfig * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.AudioTranscriptionConfig, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this AudioTranscriptionConfig to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for AudioTranscriptionConfig * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentSetup. */ interface IBidiGenerateContentSetup { /** BidiGenerateContentSetup model */ model?: (string|null); /** BidiGenerateContentSetup generationConfig */ generationConfig?: (google.ai.generativelanguage.v1beta.IGenerationConfig|null); /** BidiGenerateContentSetup systemInstruction */ systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** BidiGenerateContentSetup tools */ tools?: (google.ai.generativelanguage.v1beta.ITool[]|null); /** BidiGenerateContentSetup realtimeInputConfig */ realtimeInputConfig?: (google.ai.generativelanguage.v1beta.IRealtimeInputConfig|null); /** BidiGenerateContentSetup sessionResumption */ sessionResumption?: (google.ai.generativelanguage.v1beta.ISessionResumptionConfig|null); /** BidiGenerateContentSetup contextWindowCompression */ contextWindowCompression?: (google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig|null); /** BidiGenerateContentSetup inputAudioTranscription */ inputAudioTranscription?: (google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig|null); /** BidiGenerateContentSetup outputAudioTranscription */ outputAudioTranscription?: (google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig|null); } /** Represents a BidiGenerateContentSetup. */ class BidiGenerateContentSetup implements IBidiGenerateContentSetup { /** * Constructs a new BidiGenerateContentSetup. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup); /** BidiGenerateContentSetup model. */ public model: string; /** BidiGenerateContentSetup generationConfig. */ public generationConfig?: (google.ai.generativelanguage.v1beta.IGenerationConfig|null); /** BidiGenerateContentSetup systemInstruction. */ public systemInstruction?: (google.ai.generativelanguage.v1beta.IContent|null); /** BidiGenerateContentSetup tools. */ public tools: google.ai.generativelanguage.v1beta.ITool[]; /** BidiGenerateContentSetup realtimeInputConfig. */ public realtimeInputConfig?: (google.ai.generativelanguage.v1beta.IRealtimeInputConfig|null); /** BidiGenerateContentSetup sessionResumption. */ public sessionResumption?: (google.ai.generativelanguage.v1beta.ISessionResumptionConfig|null); /** BidiGenerateContentSetup contextWindowCompression. */ public contextWindowCompression?: (google.ai.generativelanguage.v1beta.IContextWindowCompressionConfig|null); /** BidiGenerateContentSetup inputAudioTranscription. */ public inputAudioTranscription?: (google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig|null); /** BidiGenerateContentSetup outputAudioTranscription. */ public outputAudioTranscription?: (google.ai.generativelanguage.v1beta.IAudioTranscriptionConfig|null); /** * Creates a new BidiGenerateContentSetup instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentSetup instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup): google.ai.generativelanguage.v1beta.BidiGenerateContentSetup; /** * Encodes the specified BidiGenerateContentSetup message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentSetup.verify|verify} messages. * @param message BidiGenerateContentSetup message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentSetup message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentSetup.verify|verify} messages. * @param message BidiGenerateContentSetup message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentSetup message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentSetup * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentSetup; /** * Decodes a BidiGenerateContentSetup message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentSetup * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentSetup; /** * Verifies a BidiGenerateContentSetup message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentSetup message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentSetup */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentSetup; /** * Creates a plain object from a BidiGenerateContentSetup message. Also converts values to other types if specified. * @param message BidiGenerateContentSetup * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentSetup, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentSetup to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentSetup * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentClientContent. */ interface IBidiGenerateContentClientContent { /** BidiGenerateContentClientContent turns */ turns?: (google.ai.generativelanguage.v1beta.IContent[]|null); /** BidiGenerateContentClientContent turnComplete */ turnComplete?: (boolean|null); } /** Represents a BidiGenerateContentClientContent. */ class BidiGenerateContentClientContent implements IBidiGenerateContentClientContent { /** * Constructs a new BidiGenerateContentClientContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent); /** BidiGenerateContentClientContent turns. */ public turns: google.ai.generativelanguage.v1beta.IContent[]; /** BidiGenerateContentClientContent turnComplete. */ public turnComplete: boolean; /** * Creates a new BidiGenerateContentClientContent instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentClientContent instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent): google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent; /** * Encodes the specified BidiGenerateContentClientContent message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent.verify|verify} messages. * @param message BidiGenerateContentClientContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentClientContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent.verify|verify} messages. * @param message BidiGenerateContentClientContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentClientContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentClientContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent; /** * Decodes a BidiGenerateContentClientContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentClientContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent; /** * Verifies a BidiGenerateContentClientContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentClientContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentClientContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent; /** * Creates a plain object from a BidiGenerateContentClientContent message. Also converts values to other types if specified. * @param message BidiGenerateContentClientContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentClientContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentClientContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentClientContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentRealtimeInput. */ interface IBidiGenerateContentRealtimeInput { /** BidiGenerateContentRealtimeInput mediaChunks */ mediaChunks?: (google.ai.generativelanguage.v1beta.IBlob[]|null); /** BidiGenerateContentRealtimeInput audio */ audio?: (google.ai.generativelanguage.v1beta.IBlob|null); /** BidiGenerateContentRealtimeInput audioStreamEnd */ audioStreamEnd?: (boolean|null); /** BidiGenerateContentRealtimeInput video */ video?: (google.ai.generativelanguage.v1beta.IBlob|null); /** BidiGenerateContentRealtimeInput text */ text?: (string|null); /** BidiGenerateContentRealtimeInput activityStart */ activityStart?: (google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart|null); /** BidiGenerateContentRealtimeInput activityEnd */ activityEnd?: (google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd|null); } /** Represents a BidiGenerateContentRealtimeInput. */ class BidiGenerateContentRealtimeInput implements IBidiGenerateContentRealtimeInput { /** * Constructs a new BidiGenerateContentRealtimeInput. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput); /** BidiGenerateContentRealtimeInput mediaChunks. */ public mediaChunks: google.ai.generativelanguage.v1beta.IBlob[]; /** BidiGenerateContentRealtimeInput audio. */ public audio?: (google.ai.generativelanguage.v1beta.IBlob|null); /** BidiGenerateContentRealtimeInput audioStreamEnd. */ public audioStreamEnd?: (boolean|null); /** BidiGenerateContentRealtimeInput video. */ public video?: (google.ai.generativelanguage.v1beta.IBlob|null); /** BidiGenerateContentRealtimeInput text. */ public text?: (string|null); /** BidiGenerateContentRealtimeInput activityStart. */ public activityStart?: (google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart|null); /** BidiGenerateContentRealtimeInput activityEnd. */ public activityEnd?: (google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd|null); /** * Creates a new BidiGenerateContentRealtimeInput instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentRealtimeInput instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput; /** * Encodes the specified BidiGenerateContentRealtimeInput message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.verify|verify} messages. * @param message BidiGenerateContentRealtimeInput message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentRealtimeInput message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.verify|verify} messages. * @param message BidiGenerateContentRealtimeInput message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentRealtimeInput message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentRealtimeInput * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput; /** * Decodes a BidiGenerateContentRealtimeInput message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentRealtimeInput * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput; /** * Verifies a BidiGenerateContentRealtimeInput message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentRealtimeInput message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentRealtimeInput */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput; /** * Creates a plain object from a BidiGenerateContentRealtimeInput message. Also converts values to other types if specified. * @param message BidiGenerateContentRealtimeInput * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentRealtimeInput to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentRealtimeInput * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace BidiGenerateContentRealtimeInput { /** Properties of an ActivityStart. */ interface IActivityStart { } /** Represents an ActivityStart. */ class ActivityStart implements IActivityStart { /** * Constructs a new ActivityStart. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart); /** * Creates a new ActivityStart instance using the specified properties. * @param [properties] Properties to set * @returns ActivityStart instance */ public static create(properties?: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart; /** * Encodes the specified ActivityStart message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart.verify|verify} messages. * @param message ActivityStart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ActivityStart message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart.verify|verify} messages. * @param message ActivityStart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityStart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ActivityStart message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ActivityStart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart; /** * Decodes an ActivityStart message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ActivityStart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart; /** * Verifies an ActivityStart message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ActivityStart message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ActivityStart */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart; /** * Creates a plain object from an ActivityStart message. Also converts values to other types if specified. * @param message ActivityStart * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityStart, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ActivityStart to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ActivityStart * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an ActivityEnd. */ interface IActivityEnd { } /** Represents an ActivityEnd. */ class ActivityEnd implements IActivityEnd { /** * Constructs a new ActivityEnd. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd); /** * Creates a new ActivityEnd instance using the specified properties. * @param [properties] Properties to set * @returns ActivityEnd instance */ public static create(properties?: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd; /** * Encodes the specified ActivityEnd message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd.verify|verify} messages. * @param message ActivityEnd message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ActivityEnd message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd.verify|verify} messages. * @param message ActivityEnd message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.IActivityEnd, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ActivityEnd message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ActivityEnd * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd; /** * Decodes an ActivityEnd message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ActivityEnd * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd; /** * Verifies an ActivityEnd message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ActivityEnd message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ActivityEnd */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd; /** * Creates a plain object from an ActivityEnd message. Also converts values to other types if specified. * @param message ActivityEnd * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentRealtimeInput.ActivityEnd, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ActivityEnd to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ActivityEnd * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a BidiGenerateContentToolResponse. */ interface IBidiGenerateContentToolResponse { /** BidiGenerateContentToolResponse functionResponses */ functionResponses?: (google.ai.generativelanguage.v1beta.IFunctionResponse[]|null); } /** Represents a BidiGenerateContentToolResponse. */ class BidiGenerateContentToolResponse implements IBidiGenerateContentToolResponse { /** * Constructs a new BidiGenerateContentToolResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse); /** BidiGenerateContentToolResponse functionResponses. */ public functionResponses: google.ai.generativelanguage.v1beta.IFunctionResponse[]; /** * Creates a new BidiGenerateContentToolResponse instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse): google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse; /** * Encodes the specified BidiGenerateContentToolResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse.verify|verify} messages. * @param message BidiGenerateContentToolResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse.verify|verify} messages. * @param message BidiGenerateContentToolResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse; /** * Decodes a BidiGenerateContentToolResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse; /** * Verifies a BidiGenerateContentToolResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse; /** * Creates a plain object from a BidiGenerateContentToolResponse message. Also converts values to other types if specified. * @param message BidiGenerateContentToolResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentToolResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentClientMessage. */ interface IBidiGenerateContentClientMessage { /** BidiGenerateContentClientMessage setup */ setup?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup|null); /** BidiGenerateContentClientMessage clientContent */ clientContent?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent|null); /** BidiGenerateContentClientMessage realtimeInput */ realtimeInput?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput|null); /** BidiGenerateContentClientMessage toolResponse */ toolResponse?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse|null); } /** Represents a BidiGenerateContentClientMessage. */ class BidiGenerateContentClientMessage implements IBidiGenerateContentClientMessage { /** * Constructs a new BidiGenerateContentClientMessage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage); /** BidiGenerateContentClientMessage setup. */ public setup?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentSetup|null); /** BidiGenerateContentClientMessage clientContent. */ public clientContent?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentClientContent|null); /** BidiGenerateContentClientMessage realtimeInput. */ public realtimeInput?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentRealtimeInput|null); /** BidiGenerateContentClientMessage toolResponse. */ public toolResponse?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolResponse|null); /** BidiGenerateContentClientMessage messageType. */ public messageType?: ("setup"|"clientContent"|"realtimeInput"|"toolResponse"); /** * Creates a new BidiGenerateContentClientMessage instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentClientMessage instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage): google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage; /** * Encodes the specified BidiGenerateContentClientMessage message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage.verify|verify} messages. * @param message BidiGenerateContentClientMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentClientMessage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage.verify|verify} messages. * @param message BidiGenerateContentClientMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentClientMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentClientMessage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentClientMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage; /** * Decodes a BidiGenerateContentClientMessage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentClientMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage; /** * Verifies a BidiGenerateContentClientMessage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentClientMessage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentClientMessage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage; /** * Creates a plain object from a BidiGenerateContentClientMessage message. Also converts values to other types if specified. * @param message BidiGenerateContentClientMessage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentClientMessage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentClientMessage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentClientMessage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentSetupComplete. */ interface IBidiGenerateContentSetupComplete { } /** Represents a BidiGenerateContentSetupComplete. */ class BidiGenerateContentSetupComplete implements IBidiGenerateContentSetupComplete { /** * Constructs a new BidiGenerateContentSetupComplete. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete); /** * Creates a new BidiGenerateContentSetupComplete instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentSetupComplete instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete): google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete; /** * Encodes the specified BidiGenerateContentSetupComplete message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete.verify|verify} messages. * @param message BidiGenerateContentSetupComplete message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentSetupComplete message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete.verify|verify} messages. * @param message BidiGenerateContentSetupComplete message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentSetupComplete message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentSetupComplete * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete; /** * Decodes a BidiGenerateContentSetupComplete message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentSetupComplete * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete; /** * Verifies a BidiGenerateContentSetupComplete message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentSetupComplete message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentSetupComplete */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete; /** * Creates a plain object from a BidiGenerateContentSetupComplete message. Also converts values to other types if specified. * @param message BidiGenerateContentSetupComplete * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentSetupComplete, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentSetupComplete to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentSetupComplete * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentServerContent. */ interface IBidiGenerateContentServerContent { /** BidiGenerateContentServerContent modelTurn */ modelTurn?: (google.ai.generativelanguage.v1beta.IContent|null); /** BidiGenerateContentServerContent generationComplete */ generationComplete?: (boolean|null); /** BidiGenerateContentServerContent turnComplete */ turnComplete?: (boolean|null); /** BidiGenerateContentServerContent interrupted */ interrupted?: (boolean|null); /** BidiGenerateContentServerContent groundingMetadata */ groundingMetadata?: (google.ai.generativelanguage.v1beta.IGroundingMetadata|null); /** BidiGenerateContentServerContent inputTranscription */ inputTranscription?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription|null); /** BidiGenerateContentServerContent outputTranscription */ outputTranscription?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription|null); /** BidiGenerateContentServerContent urlContextMetadata */ urlContextMetadata?: (google.ai.generativelanguage.v1beta.IUrlContextMetadata|null); /** BidiGenerateContentServerContent waitingForInput */ waitingForInput?: (boolean|null); } /** Represents a BidiGenerateContentServerContent. */ class BidiGenerateContentServerContent implements IBidiGenerateContentServerContent { /** * Constructs a new BidiGenerateContentServerContent. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent); /** BidiGenerateContentServerContent modelTurn. */ public modelTurn?: (google.ai.generativelanguage.v1beta.IContent|null); /** BidiGenerateContentServerContent generationComplete. */ public generationComplete: boolean; /** BidiGenerateContentServerContent turnComplete. */ public turnComplete: boolean; /** BidiGenerateContentServerContent interrupted. */ public interrupted: boolean; /** BidiGenerateContentServerContent groundingMetadata. */ public groundingMetadata?: (google.ai.generativelanguage.v1beta.IGroundingMetadata|null); /** BidiGenerateContentServerContent inputTranscription. */ public inputTranscription?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription|null); /** BidiGenerateContentServerContent outputTranscription. */ public outputTranscription?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription|null); /** BidiGenerateContentServerContent urlContextMetadata. */ public urlContextMetadata?: (google.ai.generativelanguage.v1beta.IUrlContextMetadata|null); /** BidiGenerateContentServerContent waitingForInput. */ public waitingForInput: boolean; /** * Creates a new BidiGenerateContentServerContent instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentServerContent instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent): google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent; /** * Encodes the specified BidiGenerateContentServerContent message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent.verify|verify} messages. * @param message BidiGenerateContentServerContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentServerContent message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent.verify|verify} messages. * @param message BidiGenerateContentServerContent message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentServerContent message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentServerContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent; /** * Decodes a BidiGenerateContentServerContent message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentServerContent * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent; /** * Verifies a BidiGenerateContentServerContent message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentServerContent message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentServerContent */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent; /** * Creates a plain object from a BidiGenerateContentServerContent message. Also converts values to other types if specified. * @param message BidiGenerateContentServerContent * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentServerContent, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentServerContent to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentServerContent * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentToolCall. */ interface IBidiGenerateContentToolCall { /** BidiGenerateContentToolCall functionCalls */ functionCalls?: (google.ai.generativelanguage.v1beta.IFunctionCall[]|null); } /** Represents a BidiGenerateContentToolCall. */ class BidiGenerateContentToolCall implements IBidiGenerateContentToolCall { /** * Constructs a new BidiGenerateContentToolCall. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall); /** BidiGenerateContentToolCall functionCalls. */ public functionCalls: google.ai.generativelanguage.v1beta.IFunctionCall[]; /** * Creates a new BidiGenerateContentToolCall instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolCall instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall; /** * Encodes the specified BidiGenerateContentToolCall message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall.verify|verify} messages. * @param message BidiGenerateContentToolCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolCall message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall.verify|verify} messages. * @param message BidiGenerateContentToolCall message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolCall message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall; /** * Decodes a BidiGenerateContentToolCall message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolCall * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall; /** * Verifies a BidiGenerateContentToolCall message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolCall message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolCall */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall; /** * Creates a plain object from a BidiGenerateContentToolCall message. Also converts values to other types if specified. * @param message BidiGenerateContentToolCall * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentToolCall, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolCall to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolCall * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentToolCallCancellation. */ interface IBidiGenerateContentToolCallCancellation { /** BidiGenerateContentToolCallCancellation ids */ ids?: (string[]|null); } /** Represents a BidiGenerateContentToolCallCancellation. */ class BidiGenerateContentToolCallCancellation implements IBidiGenerateContentToolCallCancellation { /** * Constructs a new BidiGenerateContentToolCallCancellation. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation); /** BidiGenerateContentToolCallCancellation ids. */ public ids: string[]; /** * Creates a new BidiGenerateContentToolCallCancellation instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentToolCallCancellation instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation; /** * Encodes the specified BidiGenerateContentToolCallCancellation message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation.verify|verify} messages. * @param message BidiGenerateContentToolCallCancellation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentToolCallCancellation message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation.verify|verify} messages. * @param message BidiGenerateContentToolCallCancellation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentToolCallCancellation message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentToolCallCancellation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation; /** * Decodes a BidiGenerateContentToolCallCancellation message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentToolCallCancellation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation; /** * Verifies a BidiGenerateContentToolCallCancellation message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentToolCallCancellation message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentToolCallCancellation */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation; /** * Creates a plain object from a BidiGenerateContentToolCallCancellation message. Also converts values to other types if specified. * @param message BidiGenerateContentToolCallCancellation * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentToolCallCancellation, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentToolCallCancellation to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentToolCallCancellation * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GoAway. */ interface IGoAway { /** GoAway timeLeft */ timeLeft?: (google.protobuf.IDuration|null); } /** Represents a GoAway. */ class GoAway implements IGoAway { /** * Constructs a new GoAway. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGoAway); /** GoAway timeLeft. */ public timeLeft?: (google.protobuf.IDuration|null); /** * Creates a new GoAway instance using the specified properties. * @param [properties] Properties to set * @returns GoAway instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGoAway): google.ai.generativelanguage.v1beta.GoAway; /** * Encodes the specified GoAway message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoAway.verify|verify} messages. * @param message GoAway message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGoAway, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoAway message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GoAway.verify|verify} messages. * @param message GoAway message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGoAway, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoAway message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoAway * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GoAway; /** * Decodes a GoAway message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoAway * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GoAway; /** * Verifies a GoAway message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoAway message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoAway */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GoAway; /** * Creates a plain object from a GoAway message. Also converts values to other types if specified. * @param message GoAway * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GoAway, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoAway to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoAway * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SessionResumptionUpdate. */ interface ISessionResumptionUpdate { /** SessionResumptionUpdate newHandle */ newHandle?: (string|null); /** SessionResumptionUpdate resumable */ resumable?: (boolean|null); } /** Represents a SessionResumptionUpdate. */ class SessionResumptionUpdate implements ISessionResumptionUpdate { /** * Constructs a new SessionResumptionUpdate. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ISessionResumptionUpdate); /** SessionResumptionUpdate newHandle. */ public newHandle: string; /** SessionResumptionUpdate resumable. */ public resumable: boolean; /** * Creates a new SessionResumptionUpdate instance using the specified properties. * @param [properties] Properties to set * @returns SessionResumptionUpdate instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ISessionResumptionUpdate): google.ai.generativelanguage.v1beta.SessionResumptionUpdate; /** * Encodes the specified SessionResumptionUpdate message. Does not implicitly {@link google.ai.generativelanguage.v1beta.SessionResumptionUpdate.verify|verify} messages. * @param message SessionResumptionUpdate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ISessionResumptionUpdate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SessionResumptionUpdate message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.SessionResumptionUpdate.verify|verify} messages. * @param message SessionResumptionUpdate message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ISessionResumptionUpdate, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SessionResumptionUpdate message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SessionResumptionUpdate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.SessionResumptionUpdate; /** * Decodes a SessionResumptionUpdate message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SessionResumptionUpdate * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.SessionResumptionUpdate; /** * Verifies a SessionResumptionUpdate message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SessionResumptionUpdate message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SessionResumptionUpdate */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.SessionResumptionUpdate; /** * Creates a plain object from a SessionResumptionUpdate message. Also converts values to other types if specified. * @param message SessionResumptionUpdate * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.SessionResumptionUpdate, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SessionResumptionUpdate to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SessionResumptionUpdate * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentTranscription. */ interface IBidiGenerateContentTranscription { /** BidiGenerateContentTranscription text */ text?: (string|null); } /** Represents a BidiGenerateContentTranscription. */ class BidiGenerateContentTranscription implements IBidiGenerateContentTranscription { /** * Constructs a new BidiGenerateContentTranscription. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription); /** BidiGenerateContentTranscription text. */ public text: string; /** * Creates a new BidiGenerateContentTranscription instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentTranscription instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription): google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription; /** * Encodes the specified BidiGenerateContentTranscription message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription.verify|verify} messages. * @param message BidiGenerateContentTranscription message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentTranscription message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription.verify|verify} messages. * @param message BidiGenerateContentTranscription message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentTranscription, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentTranscription message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentTranscription * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription; /** * Decodes a BidiGenerateContentTranscription message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentTranscription * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription; /** * Verifies a BidiGenerateContentTranscription message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentTranscription message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentTranscription */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription; /** * Creates a plain object from a BidiGenerateContentTranscription message. Also converts values to other types if specified. * @param message BidiGenerateContentTranscription * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentTranscription, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentTranscription to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentTranscription * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BidiGenerateContentServerMessage. */ interface IBidiGenerateContentServerMessage { /** BidiGenerateContentServerMessage setupComplete */ setupComplete?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete|null); /** BidiGenerateContentServerMessage serverContent */ serverContent?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent|null); /** BidiGenerateContentServerMessage toolCall */ toolCall?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall|null); /** BidiGenerateContentServerMessage toolCallCancellation */ toolCallCancellation?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation|null); /** BidiGenerateContentServerMessage goAway */ goAway?: (google.ai.generativelanguage.v1beta.IGoAway|null); /** BidiGenerateContentServerMessage sessionResumptionUpdate */ sessionResumptionUpdate?: (google.ai.generativelanguage.v1beta.ISessionResumptionUpdate|null); /** BidiGenerateContentServerMessage usageMetadata */ usageMetadata?: (google.ai.generativelanguage.v1beta.IUsageMetadata|null); } /** Represents a BidiGenerateContentServerMessage. */ class BidiGenerateContentServerMessage implements IBidiGenerateContentServerMessage { /** * Constructs a new BidiGenerateContentServerMessage. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerMessage); /** BidiGenerateContentServerMessage setupComplete. */ public setupComplete?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentSetupComplete|null); /** BidiGenerateContentServerMessage serverContent. */ public serverContent?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentServerContent|null); /** BidiGenerateContentServerMessage toolCall. */ public toolCall?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCall|null); /** BidiGenerateContentServerMessage toolCallCancellation. */ public toolCallCancellation?: (google.ai.generativelanguage.v1beta.IBidiGenerateContentToolCallCancellation|null); /** BidiGenerateContentServerMessage goAway. */ public goAway?: (google.ai.generativelanguage.v1beta.IGoAway|null); /** BidiGenerateContentServerMessage sessionResumptionUpdate. */ public sessionResumptionUpdate?: (google.ai.generativelanguage.v1beta.ISessionResumptionUpdate|null); /** BidiGenerateContentServerMessage usageMetadata. */ public usageMetadata?: (google.ai.generativelanguage.v1beta.IUsageMetadata|null); /** BidiGenerateContentServerMessage messageType. */ public messageType?: ("setupComplete"|"serverContent"|"toolCall"|"toolCallCancellation"|"goAway"|"sessionResumptionUpdate"); /** * Creates a new BidiGenerateContentServerMessage instance using the specified properties. * @param [properties] Properties to set * @returns BidiGenerateContentServerMessage instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerMessage): google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage; /** * Encodes the specified BidiGenerateContentServerMessage message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage.verify|verify} messages. * @param message BidiGenerateContentServerMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BidiGenerateContentServerMessage message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage.verify|verify} messages. * @param message BidiGenerateContentServerMessage message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBidiGenerateContentServerMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BidiGenerateContentServerMessage message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BidiGenerateContentServerMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage; /** * Decodes a BidiGenerateContentServerMessage message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BidiGenerateContentServerMessage * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage; /** * Verifies a BidiGenerateContentServerMessage message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BidiGenerateContentServerMessage message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BidiGenerateContentServerMessage */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage; /** * Creates a plain object from a BidiGenerateContentServerMessage message. Also converts values to other types if specified. * @param message BidiGenerateContentServerMessage * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BidiGenerateContentServerMessage, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BidiGenerateContentServerMessage to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BidiGenerateContentServerMessage * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a UsageMetadata. */ interface IUsageMetadata { /** UsageMetadata promptTokenCount */ promptTokenCount?: (number|null); /** UsageMetadata cachedContentTokenCount */ cachedContentTokenCount?: (number|null); /** UsageMetadata responseTokenCount */ responseTokenCount?: (number|null); /** UsageMetadata toolUsePromptTokenCount */ toolUsePromptTokenCount?: (number|null); /** UsageMetadata thoughtsTokenCount */ thoughtsTokenCount?: (number|null); /** UsageMetadata totalTokenCount */ totalTokenCount?: (number|null); /** UsageMetadata promptTokensDetails */ promptTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata cacheTokensDetails */ cacheTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata responseTokensDetails */ responseTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); /** UsageMetadata toolUsePromptTokensDetails */ toolUsePromptTokensDetails?: (google.ai.generativelanguage.v1beta.IModalityTokenCount[]|null); } /** Represents a UsageMetadata. */ class UsageMetadata implements IUsageMetadata { /** * Constructs a new UsageMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUsageMetadata); /** UsageMetadata promptTokenCount. */ public promptTokenCount: number; /** UsageMetadata cachedContentTokenCount. */ public cachedContentTokenCount: number; /** UsageMetadata responseTokenCount. */ public responseTokenCount: number; /** UsageMetadata toolUsePromptTokenCount. */ public toolUsePromptTokenCount: number; /** UsageMetadata thoughtsTokenCount. */ public thoughtsTokenCount: number; /** UsageMetadata totalTokenCount. */ public totalTokenCount: number; /** UsageMetadata promptTokensDetails. */ public promptTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata cacheTokensDetails. */ public cacheTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata responseTokensDetails. */ public responseTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** UsageMetadata toolUsePromptTokensDetails. */ public toolUsePromptTokensDetails: google.ai.generativelanguage.v1beta.IModalityTokenCount[]; /** * Creates a new UsageMetadata instance using the specified properties. * @param [properties] Properties to set * @returns UsageMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUsageMetadata): google.ai.generativelanguage.v1beta.UsageMetadata; /** * Encodes the specified UsageMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UsageMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UsageMetadata.verify|verify} messages. * @param message UsageMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUsageMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a UsageMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UsageMetadata; /** * Decodes a UsageMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UsageMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UsageMetadata; /** * Verifies a UsageMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a UsageMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UsageMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UsageMetadata; /** * Creates a plain object from a UsageMetadata message. Also converts values to other types if specified. * @param message UsageMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UsageMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UsageMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UsageMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Corpus. */ interface ICorpus { /** Corpus name */ name?: (string|null); /** Corpus displayName */ displayName?: (string|null); /** Corpus createTime */ createTime?: (google.protobuf.ITimestamp|null); /** Corpus updateTime */ updateTime?: (google.protobuf.ITimestamp|null); } /** Represents a Corpus. */ class Corpus implements ICorpus { /** * Constructs a new Corpus. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICorpus); /** Corpus name. */ public name: string; /** Corpus displayName. */ public displayName: string; /** Corpus createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** Corpus updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** * Creates a new Corpus instance using the specified properties. * @param [properties] Properties to set * @returns Corpus instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICorpus): google.ai.generativelanguage.v1beta.Corpus; /** * Encodes the specified Corpus message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Corpus.verify|verify} messages. * @param message Corpus message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICorpus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Corpus message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Corpus.verify|verify} messages. * @param message Corpus message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICorpus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Corpus message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Corpus * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Corpus; /** * Decodes a Corpus message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Corpus * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Corpus; /** * Verifies a Corpus message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Corpus message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Corpus */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Corpus; /** * Creates a plain object from a Corpus message. Also converts values to other types if specified. * @param message Corpus * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Corpus, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Corpus to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Corpus * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Document. */ interface IDocument { /** Document name */ name?: (string|null); /** Document displayName */ displayName?: (string|null); /** Document customMetadata */ customMetadata?: (google.ai.generativelanguage.v1beta.ICustomMetadata[]|null); /** Document updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** Document createTime */ createTime?: (google.protobuf.ITimestamp|null); } /** Represents a Document. */ class Document implements IDocument { /** * Constructs a new Document. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDocument); /** Document name. */ public name: string; /** Document displayName. */ public displayName: string; /** Document customMetadata. */ public customMetadata: google.ai.generativelanguage.v1beta.ICustomMetadata[]; /** Document updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** Document createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** * Creates a new Document instance using the specified properties. * @param [properties] Properties to set * @returns Document instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDocument): google.ai.generativelanguage.v1beta.Document; /** * Encodes the specified Document message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Document.verify|verify} messages. * @param message Document message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDocument, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Document message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Document.verify|verify} messages. * @param message Document message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDocument, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Document message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Document * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Document; /** * Decodes a Document message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Document * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Document; /** * Verifies a Document message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Document message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Document */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Document; /** * Creates a plain object from a Document message. Also converts values to other types if specified. * @param message Document * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Document, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Document to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Document * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a StringList. */ interface IStringList { /** StringList values */ values?: (string[]|null); } /** Represents a StringList. */ class StringList implements IStringList { /** * Constructs a new StringList. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IStringList); /** StringList values. */ public values: string[]; /** * Creates a new StringList instance using the specified properties. * @param [properties] Properties to set * @returns StringList instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IStringList): google.ai.generativelanguage.v1beta.StringList; /** * Encodes the specified StringList message. Does not implicitly {@link google.ai.generativelanguage.v1beta.StringList.verify|verify} messages. * @param message StringList message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IStringList, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified StringList message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.StringList.verify|verify} messages. * @param message StringList message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IStringList, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a StringList message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns StringList * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.StringList; /** * Decodes a StringList message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns StringList * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.StringList; /** * Verifies a StringList message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a StringList message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns StringList */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.StringList; /** * Creates a plain object from a StringList message. Also converts values to other types if specified. * @param message StringList * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.StringList, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this StringList to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for StringList * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CustomMetadata. */ interface ICustomMetadata { /** CustomMetadata stringValue */ stringValue?: (string|null); /** CustomMetadata stringListValue */ stringListValue?: (google.ai.generativelanguage.v1beta.IStringList|null); /** CustomMetadata numericValue */ numericValue?: (number|null); /** CustomMetadata key */ key?: (string|null); } /** Represents a CustomMetadata. */ class CustomMetadata implements ICustomMetadata { /** * Constructs a new CustomMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICustomMetadata); /** CustomMetadata stringValue. */ public stringValue?: (string|null); /** CustomMetadata stringListValue. */ public stringListValue?: (google.ai.generativelanguage.v1beta.IStringList|null); /** CustomMetadata numericValue. */ public numericValue?: (number|null); /** CustomMetadata key. */ public key: string; /** CustomMetadata value. */ public value?: ("stringValue"|"stringListValue"|"numericValue"); /** * Creates a new CustomMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CustomMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICustomMetadata): google.ai.generativelanguage.v1beta.CustomMetadata; /** * Encodes the specified CustomMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CustomMetadata.verify|verify} messages. * @param message CustomMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICustomMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CustomMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CustomMetadata.verify|verify} messages. * @param message CustomMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICustomMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CustomMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CustomMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CustomMetadata; /** * Decodes a CustomMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CustomMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CustomMetadata; /** * Verifies a CustomMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CustomMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CustomMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CustomMetadata; /** * Creates a plain object from a CustomMetadata message. Also converts values to other types if specified. * @param message CustomMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CustomMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CustomMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CustomMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MetadataFilter. */ interface IMetadataFilter { /** MetadataFilter key */ key?: (string|null); /** MetadataFilter conditions */ conditions?: (google.ai.generativelanguage.v1beta.ICondition[]|null); } /** Represents a MetadataFilter. */ class MetadataFilter implements IMetadataFilter { /** * Constructs a new MetadataFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IMetadataFilter); /** MetadataFilter key. */ public key: string; /** MetadataFilter conditions. */ public conditions: google.ai.generativelanguage.v1beta.ICondition[]; /** * Creates a new MetadataFilter instance using the specified properties. * @param [properties] Properties to set * @returns MetadataFilter instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IMetadataFilter): google.ai.generativelanguage.v1beta.MetadataFilter; /** * Encodes the specified MetadataFilter message. Does not implicitly {@link google.ai.generativelanguage.v1beta.MetadataFilter.verify|verify} messages. * @param message MetadataFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IMetadataFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MetadataFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.MetadataFilter.verify|verify} messages. * @param message MetadataFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IMetadataFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MetadataFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MetadataFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.MetadataFilter; /** * Decodes a MetadataFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MetadataFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.MetadataFilter; /** * Verifies a MetadataFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MetadataFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MetadataFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.MetadataFilter; /** * Creates a plain object from a MetadataFilter message. Also converts values to other types if specified. * @param message MetadataFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.MetadataFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MetadataFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MetadataFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Condition. */ interface ICondition { /** Condition stringValue */ stringValue?: (string|null); /** Condition numericValue */ numericValue?: (number|null); /** Condition operation */ operation?: (google.ai.generativelanguage.v1beta.Condition.Operator|keyof typeof google.ai.generativelanguage.v1beta.Condition.Operator|null); } /** Represents a Condition. */ class Condition implements ICondition { /** * Constructs a new Condition. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICondition); /** Condition stringValue. */ public stringValue?: (string|null); /** Condition numericValue. */ public numericValue?: (number|null); /** Condition operation. */ public operation: (google.ai.generativelanguage.v1beta.Condition.Operator|keyof typeof google.ai.generativelanguage.v1beta.Condition.Operator); /** Condition value. */ public value?: ("stringValue"|"numericValue"); /** * Creates a new Condition instance using the specified properties. * @param [properties] Properties to set * @returns Condition instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICondition): google.ai.generativelanguage.v1beta.Condition; /** * Encodes the specified Condition message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Condition.verify|verify} messages. * @param message Condition message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICondition, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Condition message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Condition.verify|verify} messages. * @param message Condition message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICondition, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Condition message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Condition * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Condition; /** * Decodes a Condition message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Condition * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Condition; /** * Verifies a Condition message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Condition message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Condition */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Condition; /** * Creates a plain object from a Condition message. Also converts values to other types if specified. * @param message Condition * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Condition, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Condition to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Condition * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Condition { /** Operator enum. */ enum Operator { OPERATOR_UNSPECIFIED = 0, LESS = 1, LESS_EQUAL = 2, EQUAL = 3, GREATER_EQUAL = 4, GREATER = 5, NOT_EQUAL = 6, INCLUDES = 7, EXCLUDES = 8 } } /** Properties of a Chunk. */ interface IChunk { /** Chunk name */ name?: (string|null); /** Chunk data */ data?: (google.ai.generativelanguage.v1beta.IChunkData|null); /** Chunk customMetadata */ customMetadata?: (google.ai.generativelanguage.v1beta.ICustomMetadata[]|null); /** Chunk createTime */ createTime?: (google.protobuf.ITimestamp|null); /** Chunk updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** Chunk state */ state?: (google.ai.generativelanguage.v1beta.Chunk.State|keyof typeof google.ai.generativelanguage.v1beta.Chunk.State|null); } /** Represents a Chunk. */ class Chunk implements IChunk { /** * Constructs a new Chunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IChunk); /** Chunk name. */ public name: string; /** Chunk data. */ public data?: (google.ai.generativelanguage.v1beta.IChunkData|null); /** Chunk customMetadata. */ public customMetadata: google.ai.generativelanguage.v1beta.ICustomMetadata[]; /** Chunk createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** Chunk updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** Chunk state. */ public state: (google.ai.generativelanguage.v1beta.Chunk.State|keyof typeof google.ai.generativelanguage.v1beta.Chunk.State); /** * Creates a new Chunk instance using the specified properties. * @param [properties] Properties to set * @returns Chunk instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IChunk): google.ai.generativelanguage.v1beta.Chunk; /** * Encodes the specified Chunk message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Chunk.verify|verify} messages. * @param message Chunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Chunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Chunk.verify|verify} messages. * @param message Chunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Chunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Chunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Chunk; /** * Decodes a Chunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Chunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Chunk; /** * Verifies a Chunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Chunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Chunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Chunk; /** * Creates a plain object from a Chunk message. Also converts values to other types if specified. * @param message Chunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Chunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Chunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Chunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Chunk { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, STATE_PENDING_PROCESSING = 1, STATE_ACTIVE = 2, STATE_FAILED = 10 } } /** Properties of a ChunkData. */ interface IChunkData { /** ChunkData stringValue */ stringValue?: (string|null); } /** Represents a ChunkData. */ class ChunkData implements IChunkData { /** * Constructs a new ChunkData. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IChunkData); /** ChunkData stringValue. */ public stringValue?: (string|null); /** ChunkData data. */ public data?: "stringValue"; /** * Creates a new ChunkData instance using the specified properties. * @param [properties] Properties to set * @returns ChunkData instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IChunkData): google.ai.generativelanguage.v1beta.ChunkData; /** * Encodes the specified ChunkData message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ChunkData.verify|verify} messages. * @param message ChunkData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IChunkData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ChunkData message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ChunkData.verify|verify} messages. * @param message ChunkData message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IChunkData, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ChunkData message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ChunkData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ChunkData; /** * Decodes a ChunkData message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ChunkData * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ChunkData; /** * Verifies a ChunkData message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ChunkData message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ChunkData */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ChunkData; /** * Creates a plain object from a ChunkData message. Also converts values to other types if specified. * @param message ChunkData * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ChunkData, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ChunkData to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ChunkData * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Model. */ interface IModel { /** Model name */ name?: (string|null); /** Model baseModelId */ baseModelId?: (string|null); /** Model version */ version?: (string|null); /** Model displayName */ displayName?: (string|null); /** Model description */ description?: (string|null); /** Model inputTokenLimit */ inputTokenLimit?: (number|null); /** Model outputTokenLimit */ outputTokenLimit?: (number|null); /** Model supportedGenerationMethods */ supportedGenerationMethods?: (string[]|null); /** Model temperature */ temperature?: (number|null); /** Model maxTemperature */ maxTemperature?: (number|null); /** Model topP */ topP?: (number|null); /** Model topK */ topK?: (number|null); /** Model thinking */ thinking?: (boolean|null); } /** Represents a Model. */ class Model implements IModel { /** * Constructs a new Model. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IModel); /** Model name. */ public name: string; /** Model baseModelId. */ public baseModelId: string; /** Model version. */ public version: string; /** Model displayName. */ public displayName: string; /** Model description. */ public description: string; /** Model inputTokenLimit. */ public inputTokenLimit: number; /** Model outputTokenLimit. */ public outputTokenLimit: number; /** Model supportedGenerationMethods. */ public supportedGenerationMethods: string[]; /** Model temperature. */ public temperature?: (number|null); /** Model maxTemperature. */ public maxTemperature?: (number|null); /** Model topP. */ public topP?: (number|null); /** Model topK. */ public topK?: (number|null); /** Model thinking. */ public thinking: boolean; /** * Creates a new Model instance using the specified properties. * @param [properties] Properties to set * @returns Model instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IModel): google.ai.generativelanguage.v1beta.Model; /** * Encodes the specified Model message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Model message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Model message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Model; /** * Decodes a Model message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Model; /** * Verifies a Model message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Model message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Model */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Model; /** * Creates a plain object from a Model message. Also converts values to other types if specified. * @param message Model * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Model, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Model to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Model * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a ModelService */ class ModelService extends $protobuf.rpc.Service { /** * Constructs a new ModelService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new ModelService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ModelService; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Model */ public getModel(request: google.ai.generativelanguage.v1beta.IGetModelRequest, callback: google.ai.generativelanguage.v1beta.ModelService.GetModelCallback): void; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @returns Promise */ public getModel(request: google.ai.generativelanguage.v1beta.IGetModelRequest): Promise; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListModelsResponse */ public listModels(request: google.ai.generativelanguage.v1beta.IListModelsRequest, callback: google.ai.generativelanguage.v1beta.ModelService.ListModelsCallback): void; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @returns Promise */ public listModels(request: google.ai.generativelanguage.v1beta.IListModelsRequest): Promise; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public getTunedModel(request: google.ai.generativelanguage.v1beta.IGetTunedModelRequest, callback: google.ai.generativelanguage.v1beta.ModelService.GetTunedModelCallback): void; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @returns Promise */ public getTunedModel(request: google.ai.generativelanguage.v1beta.IGetTunedModelRequest): Promise; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListTunedModelsResponse */ public listTunedModels(request: google.ai.generativelanguage.v1beta.IListTunedModelsRequest, callback: google.ai.generativelanguage.v1beta.ModelService.ListTunedModelsCallback): void; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @returns Promise */ public listTunedModels(request: google.ai.generativelanguage.v1beta.IListTunedModelsRequest): Promise; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public createTunedModel(request: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest, callback: google.ai.generativelanguage.v1beta.ModelService.CreateTunedModelCallback): void; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @returns Promise */ public createTunedModel(request: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest): Promise; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public updateTunedModel(request: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest, callback: google.ai.generativelanguage.v1beta.ModelService.UpdateTunedModelCallback): void; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @returns Promise */ public updateTunedModel(request: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest): Promise; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteTunedModel(request: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest, callback: google.ai.generativelanguage.v1beta.ModelService.DeleteTunedModelCallback): void; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @returns Promise */ public deleteTunedModel(request: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest): Promise; } namespace ModelService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|getModel}. * @param error Error, if any * @param [response] Model */ type GetModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Model) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|listModels}. * @param error Error, if any * @param [response] ListModelsResponse */ type ListModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|getTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type GetTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|listTunedModels}. * @param error Error, if any * @param [response] ListTunedModelsResponse */ type ListTunedModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListTunedModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|createTunedModel}. * @param error Error, if any * @param [response] Operation */ type CreateTunedModelCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|updateTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type UpdateTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.ModelService|deleteTunedModel}. * @param error Error, if any * @param [response] Empty */ type DeleteTunedModelCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a GetModelRequest. */ interface IGetModelRequest { /** GetModelRequest name */ name?: (string|null); } /** Represents a GetModelRequest. */ class GetModelRequest implements IGetModelRequest { /** * Constructs a new GetModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetModelRequest); /** GetModelRequest name. */ public name: string; /** * Creates a new GetModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetModelRequest): google.ai.generativelanguage.v1beta.GetModelRequest; /** * Encodes the specified GetModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetModelRequest; /** * Decodes a GetModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetModelRequest; /** * Verifies a GetModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetModelRequest; /** * Creates a plain object from a GetModelRequest message. Also converts values to other types if specified. * @param message GetModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsRequest. */ interface IListModelsRequest { /** ListModelsRequest pageSize */ pageSize?: (number|null); /** ListModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListModelsRequest. */ class ListModelsRequest implements IListModelsRequest { /** * Constructs a new ListModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListModelsRequest); /** ListModelsRequest pageSize. */ public pageSize: number; /** ListModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListModelsRequest): google.ai.generativelanguage.v1beta.ListModelsRequest; /** * Encodes the specified ListModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListModelsRequest; /** * Decodes a ListModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListModelsRequest; /** * Verifies a ListModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListModelsRequest; /** * Creates a plain object from a ListModelsRequest message. Also converts values to other types if specified. * @param message ListModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsResponse. */ interface IListModelsResponse { /** ListModelsResponse models */ models?: (google.ai.generativelanguage.v1beta.IModel[]|null); /** ListModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListModelsResponse. */ class ListModelsResponse implements IListModelsResponse { /** * Constructs a new ListModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListModelsResponse); /** ListModelsResponse models. */ public models: google.ai.generativelanguage.v1beta.IModel[]; /** ListModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListModelsResponse): google.ai.generativelanguage.v1beta.ListModelsResponse; /** * Encodes the specified ListModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListModelsResponse; /** * Decodes a ListModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListModelsResponse; /** * Verifies a ListModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListModelsResponse; /** * Creates a plain object from a ListModelsResponse message. Also converts values to other types if specified. * @param message ListModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetTunedModelRequest. */ interface IGetTunedModelRequest { /** GetTunedModelRequest name */ name?: (string|null); } /** Represents a GetTunedModelRequest. */ class GetTunedModelRequest implements IGetTunedModelRequest { /** * Constructs a new GetTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetTunedModelRequest); /** GetTunedModelRequest name. */ public name: string; /** * Creates a new GetTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetTunedModelRequest): google.ai.generativelanguage.v1beta.GetTunedModelRequest; /** * Encodes the specified GetTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetTunedModelRequest; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetTunedModelRequest; /** * Verifies a GetTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetTunedModelRequest; /** * Creates a plain object from a GetTunedModelRequest message. Also converts values to other types if specified. * @param message GetTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsRequest. */ interface IListTunedModelsRequest { /** ListTunedModelsRequest pageSize */ pageSize?: (number|null); /** ListTunedModelsRequest pageToken */ pageToken?: (string|null); /** ListTunedModelsRequest filter */ filter?: (string|null); } /** Represents a ListTunedModelsRequest. */ class ListTunedModelsRequest implements IListTunedModelsRequest { /** * Constructs a new ListTunedModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListTunedModelsRequest); /** ListTunedModelsRequest pageSize. */ public pageSize: number; /** ListTunedModelsRequest pageToken. */ public pageToken: string; /** ListTunedModelsRequest filter. */ public filter: string; /** * Creates a new ListTunedModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListTunedModelsRequest): google.ai.generativelanguage.v1beta.ListTunedModelsRequest; /** * Encodes the specified ListTunedModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListTunedModelsRequest; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListTunedModelsRequest; /** * Verifies a ListTunedModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListTunedModelsRequest; /** * Creates a plain object from a ListTunedModelsRequest message. Also converts values to other types if specified. * @param message ListTunedModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListTunedModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsResponse. */ interface IListTunedModelsResponse { /** ListTunedModelsResponse tunedModels */ tunedModels?: (google.ai.generativelanguage.v1beta.ITunedModel[]|null); /** ListTunedModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListTunedModelsResponse. */ class ListTunedModelsResponse implements IListTunedModelsResponse { /** * Constructs a new ListTunedModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListTunedModelsResponse); /** ListTunedModelsResponse tunedModels. */ public tunedModels: google.ai.generativelanguage.v1beta.ITunedModel[]; /** ListTunedModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListTunedModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListTunedModelsResponse): google.ai.generativelanguage.v1beta.ListTunedModelsResponse; /** * Encodes the specified ListTunedModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListTunedModelsResponse; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListTunedModelsResponse; /** * Verifies a ListTunedModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListTunedModelsResponse; /** * Creates a plain object from a ListTunedModelsResponse message. Also converts values to other types if specified. * @param message ListTunedModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListTunedModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelRequest. */ interface ICreateTunedModelRequest { /** CreateTunedModelRequest tunedModelId */ tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1beta.ITunedModel|null); } /** Represents a CreateTunedModelRequest. */ class CreateTunedModelRequest implements ICreateTunedModelRequest { /** * Constructs a new CreateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest); /** CreateTunedModelRequest tunedModelId. */ public tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1beta.ITunedModel|null); /** * Creates a new CreateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest): google.ai.generativelanguage.v1beta.CreateTunedModelRequest; /** * Encodes the specified CreateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateTunedModelRequest; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateTunedModelRequest; /** * Verifies a CreateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateTunedModelRequest; /** * Creates a plain object from a CreateTunedModelRequest message. Also converts values to other types if specified. * @param message CreateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelMetadata. */ interface ICreateTunedModelMetadata { /** CreateTunedModelMetadata tunedModel */ tunedModel?: (string|null); /** CreateTunedModelMetadata totalSteps */ totalSteps?: (number|null); /** CreateTunedModelMetadata completedSteps */ completedSteps?: (number|null); /** CreateTunedModelMetadata completedPercent */ completedPercent?: (number|null); /** CreateTunedModelMetadata snapshots */ snapshots?: (google.ai.generativelanguage.v1beta.ITuningSnapshot[]|null); } /** Represents a CreateTunedModelMetadata. */ class CreateTunedModelMetadata implements ICreateTunedModelMetadata { /** * Constructs a new CreateTunedModelMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateTunedModelMetadata); /** CreateTunedModelMetadata tunedModel. */ public tunedModel: string; /** CreateTunedModelMetadata totalSteps. */ public totalSteps: number; /** CreateTunedModelMetadata completedSteps. */ public completedSteps: number; /** CreateTunedModelMetadata completedPercent. */ public completedPercent: number; /** CreateTunedModelMetadata snapshots. */ public snapshots: google.ai.generativelanguage.v1beta.ITuningSnapshot[]; /** * Creates a new CreateTunedModelMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateTunedModelMetadata): google.ai.generativelanguage.v1beta.CreateTunedModelMetadata; /** * Encodes the specified CreateTunedModelMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateTunedModelMetadata; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateTunedModelMetadata; /** * Verifies a CreateTunedModelMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateTunedModelMetadata; /** * Creates a plain object from a CreateTunedModelMetadata message. Also converts values to other types if specified. * @param message CreateTunedModelMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateTunedModelMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateTunedModelRequest. */ interface IUpdateTunedModelRequest { /** UpdateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1beta.ITunedModel|null); /** UpdateTunedModelRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateTunedModelRequest. */ class UpdateTunedModelRequest implements IUpdateTunedModelRequest { /** * Constructs a new UpdateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest); /** UpdateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1beta.ITunedModel|null); /** UpdateTunedModelRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest): google.ai.generativelanguage.v1beta.UpdateTunedModelRequest; /** * Encodes the specified UpdateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdateTunedModelRequest; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdateTunedModelRequest; /** * Verifies an UpdateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdateTunedModelRequest; /** * Creates a plain object from an UpdateTunedModelRequest message. Also converts values to other types if specified. * @param message UpdateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteTunedModelRequest. */ interface IDeleteTunedModelRequest { /** DeleteTunedModelRequest name */ name?: (string|null); } /** Represents a DeleteTunedModelRequest. */ class DeleteTunedModelRequest implements IDeleteTunedModelRequest { /** * Constructs a new DeleteTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest); /** DeleteTunedModelRequest name. */ public name: string; /** * Creates a new DeleteTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest): google.ai.generativelanguage.v1beta.DeleteTunedModelRequest; /** * Encodes the specified DeleteTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteTunedModelRequest; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteTunedModelRequest; /** * Verifies a DeleteTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteTunedModelRequest; /** * Creates a plain object from a DeleteTunedModelRequest message. Also converts values to other types if specified. * @param message DeleteTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TunedModel. */ interface ITunedModel { /** TunedModel tunedModelSource */ tunedModelSource?: (google.ai.generativelanguage.v1beta.ITunedModelSource|null); /** TunedModel baseModel */ baseModel?: (string|null); /** TunedModel name */ name?: (string|null); /** TunedModel displayName */ displayName?: (string|null); /** TunedModel description */ description?: (string|null); /** TunedModel temperature */ temperature?: (number|null); /** TunedModel topP */ topP?: (number|null); /** TunedModel topK */ topK?: (number|null); /** TunedModel state */ state?: (google.ai.generativelanguage.v1beta.TunedModel.State|keyof typeof google.ai.generativelanguage.v1beta.TunedModel.State|null); /** TunedModel createTime */ createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask */ tuningTask?: (google.ai.generativelanguage.v1beta.ITuningTask|null); /** TunedModel readerProjectNumbers */ readerProjectNumbers?: ((number|Long|string)[]|null); } /** Represents a TunedModel. */ class TunedModel implements ITunedModel { /** * Constructs a new TunedModel. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITunedModel); /** TunedModel tunedModelSource. */ public tunedModelSource?: (google.ai.generativelanguage.v1beta.ITunedModelSource|null); /** TunedModel baseModel. */ public baseModel?: (string|null); /** TunedModel name. */ public name: string; /** TunedModel displayName. */ public displayName: string; /** TunedModel description. */ public description: string; /** TunedModel temperature. */ public temperature?: (number|null); /** TunedModel topP. */ public topP?: (number|null); /** TunedModel topK. */ public topK?: (number|null); /** TunedModel state. */ public state: (google.ai.generativelanguage.v1beta.TunedModel.State|keyof typeof google.ai.generativelanguage.v1beta.TunedModel.State); /** TunedModel createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask. */ public tuningTask?: (google.ai.generativelanguage.v1beta.ITuningTask|null); /** TunedModel readerProjectNumbers. */ public readerProjectNumbers: (number|Long|string)[]; /** TunedModel sourceModel. */ public sourceModel?: ("tunedModelSource"|"baseModel"); /** * Creates a new TunedModel instance using the specified properties. * @param [properties] Properties to set * @returns TunedModel instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITunedModel): google.ai.generativelanguage.v1beta.TunedModel; /** * Encodes the specified TunedModel message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModel message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModel message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TunedModel; /** * Decodes a TunedModel message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TunedModel; /** * Verifies a TunedModel message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModel message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModel */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TunedModel; /** * Creates a plain object from a TunedModel message. Also converts values to other types if specified. * @param message TunedModel * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TunedModel, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModel to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModel * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace TunedModel { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, CREATING = 1, ACTIVE = 2, FAILED = 3 } } /** Properties of a TunedModelSource. */ interface ITunedModelSource { /** TunedModelSource tunedModel */ tunedModel?: (string|null); /** TunedModelSource baseModel */ baseModel?: (string|null); } /** Represents a TunedModelSource. */ class TunedModelSource implements ITunedModelSource { /** * Constructs a new TunedModelSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITunedModelSource); /** TunedModelSource tunedModel. */ public tunedModel: string; /** TunedModelSource baseModel. */ public baseModel: string; /** * Creates a new TunedModelSource instance using the specified properties. * @param [properties] Properties to set * @returns TunedModelSource instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITunedModelSource): google.ai.generativelanguage.v1beta.TunedModelSource; /** * Encodes the specified TunedModelSource message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModelSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModelSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TunedModelSource; /** * Decodes a TunedModelSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TunedModelSource; /** * Verifies a TunedModelSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModelSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModelSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TunedModelSource; /** * Creates a plain object from a TunedModelSource message. Also converts values to other types if specified. * @param message TunedModelSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TunedModelSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModelSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModelSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningTask. */ interface ITuningTask { /** TuningTask startTime */ startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime */ completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots */ snapshots?: (google.ai.generativelanguage.v1beta.ITuningSnapshot[]|null); /** TuningTask trainingData */ trainingData?: (google.ai.generativelanguage.v1beta.IDataset|null); /** TuningTask hyperparameters */ hyperparameters?: (google.ai.generativelanguage.v1beta.IHyperparameters|null); } /** Represents a TuningTask. */ class TuningTask implements ITuningTask { /** * Constructs a new TuningTask. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITuningTask); /** TuningTask startTime. */ public startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime. */ public completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots. */ public snapshots: google.ai.generativelanguage.v1beta.ITuningSnapshot[]; /** TuningTask trainingData. */ public trainingData?: (google.ai.generativelanguage.v1beta.IDataset|null); /** TuningTask hyperparameters. */ public hyperparameters?: (google.ai.generativelanguage.v1beta.IHyperparameters|null); /** * Creates a new TuningTask instance using the specified properties. * @param [properties] Properties to set * @returns TuningTask instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITuningTask): google.ai.generativelanguage.v1beta.TuningTask; /** * Encodes the specified TuningTask message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningTask message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningTask message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TuningTask; /** * Decodes a TuningTask message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TuningTask; /** * Verifies a TuningTask message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningTask message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningTask */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TuningTask; /** * Creates a plain object from a TuningTask message. Also converts values to other types if specified. * @param message TuningTask * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TuningTask, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningTask to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningTask * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Hyperparameters. */ interface IHyperparameters { /** Hyperparameters learningRate */ learningRate?: (number|null); /** Hyperparameters learningRateMultiplier */ learningRateMultiplier?: (number|null); /** Hyperparameters epochCount */ epochCount?: (number|null); /** Hyperparameters batchSize */ batchSize?: (number|null); } /** Represents a Hyperparameters. */ class Hyperparameters implements IHyperparameters { /** * Constructs a new Hyperparameters. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IHyperparameters); /** Hyperparameters learningRate. */ public learningRate?: (number|null); /** Hyperparameters learningRateMultiplier. */ public learningRateMultiplier?: (number|null); /** Hyperparameters epochCount. */ public epochCount?: (number|null); /** Hyperparameters batchSize. */ public batchSize?: (number|null); /** Hyperparameters learningRateOption. */ public learningRateOption?: ("learningRate"|"learningRateMultiplier"); /** * Creates a new Hyperparameters instance using the specified properties. * @param [properties] Properties to set * @returns Hyperparameters instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IHyperparameters): google.ai.generativelanguage.v1beta.Hyperparameters; /** * Encodes the specified Hyperparameters message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Hyperparameters message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Hyperparameters message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Hyperparameters; /** * Decodes a Hyperparameters message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Hyperparameters; /** * Verifies a Hyperparameters message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Hyperparameters message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Hyperparameters */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Hyperparameters; /** * Creates a plain object from a Hyperparameters message. Also converts values to other types if specified. * @param message Hyperparameters * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Hyperparameters, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Hyperparameters to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Hyperparameters * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Dataset. */ interface IDataset { /** Dataset examples */ examples?: (google.ai.generativelanguage.v1beta.ITuningExamples|null); } /** Represents a Dataset. */ class Dataset implements IDataset { /** * Constructs a new Dataset. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDataset); /** Dataset examples. */ public examples?: (google.ai.generativelanguage.v1beta.ITuningExamples|null); /** Dataset dataset. */ public dataset?: "examples"; /** * Creates a new Dataset instance using the specified properties. * @param [properties] Properties to set * @returns Dataset instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDataset): google.ai.generativelanguage.v1beta.Dataset; /** * Encodes the specified Dataset message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Dataset message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Dataset message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Dataset; /** * Decodes a Dataset message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Dataset; /** * Verifies a Dataset message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Dataset message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Dataset */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Dataset; /** * Creates a plain object from a Dataset message. Also converts values to other types if specified. * @param message Dataset * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Dataset, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Dataset to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Dataset * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExamples. */ interface ITuningExamples { /** TuningExamples examples */ examples?: (google.ai.generativelanguage.v1beta.ITuningExample[]|null); } /** Represents a TuningExamples. */ class TuningExamples implements ITuningExamples { /** * Constructs a new TuningExamples. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITuningExamples); /** TuningExamples examples. */ public examples: google.ai.generativelanguage.v1beta.ITuningExample[]; /** * Creates a new TuningExamples instance using the specified properties. * @param [properties] Properties to set * @returns TuningExamples instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITuningExamples): google.ai.generativelanguage.v1beta.TuningExamples; /** * Encodes the specified TuningExamples message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExamples message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExamples message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TuningExamples; /** * Decodes a TuningExamples message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TuningExamples; /** * Verifies a TuningExamples message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExamples message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExamples */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TuningExamples; /** * Creates a plain object from a TuningExamples message. Also converts values to other types if specified. * @param message TuningExamples * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TuningExamples, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExamples to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExamples * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExample. */ interface ITuningExample { /** TuningExample textInput */ textInput?: (string|null); /** TuningExample output */ output?: (string|null); } /** Represents a TuningExample. */ class TuningExample implements ITuningExample { /** * Constructs a new TuningExample. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITuningExample); /** TuningExample textInput. */ public textInput?: (string|null); /** TuningExample output. */ public output: string; /** TuningExample modelInput. */ public modelInput?: "textInput"; /** * Creates a new TuningExample instance using the specified properties. * @param [properties] Properties to set * @returns TuningExample instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITuningExample): google.ai.generativelanguage.v1beta.TuningExample; /** * Encodes the specified TuningExample message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExample message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExample message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TuningExample; /** * Decodes a TuningExample message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TuningExample; /** * Verifies a TuningExample message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExample message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExample */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TuningExample; /** * Creates a plain object from a TuningExample message. Also converts values to other types if specified. * @param message TuningExample * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TuningExample, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExample to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExample * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningSnapshot. */ interface ITuningSnapshot { /** TuningSnapshot step */ step?: (number|null); /** TuningSnapshot epoch */ epoch?: (number|null); /** TuningSnapshot meanLoss */ meanLoss?: (number|null); /** TuningSnapshot computeTime */ computeTime?: (google.protobuf.ITimestamp|null); } /** Represents a TuningSnapshot. */ class TuningSnapshot implements ITuningSnapshot { /** * Constructs a new TuningSnapshot. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITuningSnapshot); /** TuningSnapshot step. */ public step: number; /** TuningSnapshot epoch. */ public epoch: number; /** TuningSnapshot meanLoss. */ public meanLoss: number; /** TuningSnapshot computeTime. */ public computeTime?: (google.protobuf.ITimestamp|null); /** * Creates a new TuningSnapshot instance using the specified properties. * @param [properties] Properties to set * @returns TuningSnapshot instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITuningSnapshot): google.ai.generativelanguage.v1beta.TuningSnapshot; /** * Encodes the specified TuningSnapshot message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningSnapshot message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningSnapshot message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TuningSnapshot; /** * Decodes a TuningSnapshot message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TuningSnapshot; /** * Verifies a TuningSnapshot message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningSnapshot message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningSnapshot */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TuningSnapshot; /** * Creates a plain object from a TuningSnapshot message. Also converts values to other types if specified. * @param message TuningSnapshot * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TuningSnapshot, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningSnapshot to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningSnapshot * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Permission. */ interface IPermission { /** Permission name */ name?: (string|null); /** Permission granteeType */ granteeType?: (google.ai.generativelanguage.v1beta.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1beta.Permission.GranteeType|null); /** Permission emailAddress */ emailAddress?: (string|null); /** Permission role */ role?: (google.ai.generativelanguage.v1beta.Permission.Role|keyof typeof google.ai.generativelanguage.v1beta.Permission.Role|null); } /** Represents a Permission. */ class Permission implements IPermission { /** * Constructs a new Permission. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPermission); /** Permission name. */ public name: string; /** Permission granteeType. */ public granteeType?: (google.ai.generativelanguage.v1beta.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1beta.Permission.GranteeType|null); /** Permission emailAddress. */ public emailAddress?: (string|null); /** Permission role. */ public role?: (google.ai.generativelanguage.v1beta.Permission.Role|keyof typeof google.ai.generativelanguage.v1beta.Permission.Role|null); /** * Creates a new Permission instance using the specified properties. * @param [properties] Properties to set * @returns Permission instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPermission): google.ai.generativelanguage.v1beta.Permission; /** * Encodes the specified Permission message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Permission message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Permission message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Permission; /** * Decodes a Permission message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Permission; /** * Verifies a Permission message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Permission message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Permission */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Permission; /** * Creates a plain object from a Permission message. Also converts values to other types if specified. * @param message Permission * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Permission, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Permission to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Permission * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Permission { /** GranteeType enum. */ enum GranteeType { GRANTEE_TYPE_UNSPECIFIED = 0, USER = 1, GROUP = 2, EVERYONE = 3 } /** Role enum. */ enum Role { ROLE_UNSPECIFIED = 0, OWNER = 1, WRITER = 2, READER = 3 } } /** Represents a PermissionService */ class PermissionService extends $protobuf.rpc.Service { /** * Constructs a new PermissionService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new PermissionService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): PermissionService; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public createPermission(request: google.ai.generativelanguage.v1beta.ICreatePermissionRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.CreatePermissionCallback): void; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @returns Promise */ public createPermission(request: google.ai.generativelanguage.v1beta.ICreatePermissionRequest): Promise; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public getPermission(request: google.ai.generativelanguage.v1beta.IGetPermissionRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.GetPermissionCallback): void; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @returns Promise */ public getPermission(request: google.ai.generativelanguage.v1beta.IGetPermissionRequest): Promise; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListPermissionsResponse */ public listPermissions(request: google.ai.generativelanguage.v1beta.IListPermissionsRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.ListPermissionsCallback): void; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @returns Promise */ public listPermissions(request: google.ai.generativelanguage.v1beta.IListPermissionsRequest): Promise; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public updatePermission(request: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.UpdatePermissionCallback): void; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @returns Promise */ public updatePermission(request: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest): Promise; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deletePermission(request: google.ai.generativelanguage.v1beta.IDeletePermissionRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.DeletePermissionCallback): void; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @returns Promise */ public deletePermission(request: google.ai.generativelanguage.v1beta.IDeletePermissionRequest): Promise; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @param callback Node-style callback called with the error, if any, and TransferOwnershipResponse */ public transferOwnership(request: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest, callback: google.ai.generativelanguage.v1beta.PermissionService.TransferOwnershipCallback): void; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @returns Promise */ public transferOwnership(request: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest): Promise; } namespace PermissionService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|createPermission}. * @param error Error, if any * @param [response] Permission */ type CreatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|getPermission}. * @param error Error, if any * @param [response] Permission */ type GetPermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|listPermissions}. * @param error Error, if any * @param [response] ListPermissionsResponse */ type ListPermissionsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListPermissionsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|updatePermission}. * @param error Error, if any * @param [response] Permission */ type UpdatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|deletePermission}. * @param error Error, if any * @param [response] Empty */ type DeletePermissionCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PermissionService|transferOwnership}. * @param error Error, if any * @param [response] TransferOwnershipResponse */ type TransferOwnershipCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.TransferOwnershipResponse) => void; } /** Properties of a CreatePermissionRequest. */ interface ICreatePermissionRequest { /** CreatePermissionRequest parent */ parent?: (string|null); /** CreatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1beta.IPermission|null); } /** Represents a CreatePermissionRequest. */ class CreatePermissionRequest implements ICreatePermissionRequest { /** * Constructs a new CreatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreatePermissionRequest); /** CreatePermissionRequest parent. */ public parent: string; /** CreatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1beta.IPermission|null); /** * Creates a new CreatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreatePermissionRequest): google.ai.generativelanguage.v1beta.CreatePermissionRequest; /** * Encodes the specified CreatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreatePermissionRequest; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreatePermissionRequest; /** * Verifies a CreatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreatePermissionRequest; /** * Creates a plain object from a CreatePermissionRequest message. Also converts values to other types if specified. * @param message CreatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetPermissionRequest. */ interface IGetPermissionRequest { /** GetPermissionRequest name */ name?: (string|null); } /** Represents a GetPermissionRequest. */ class GetPermissionRequest implements IGetPermissionRequest { /** * Constructs a new GetPermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetPermissionRequest); /** GetPermissionRequest name. */ public name: string; /** * Creates a new GetPermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetPermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetPermissionRequest): google.ai.generativelanguage.v1beta.GetPermissionRequest; /** * Encodes the specified GetPermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetPermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetPermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetPermissionRequest; /** * Decodes a GetPermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetPermissionRequest; /** * Verifies a GetPermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetPermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetPermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetPermissionRequest; /** * Creates a plain object from a GetPermissionRequest message. Also converts values to other types if specified. * @param message GetPermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetPermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetPermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetPermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsRequest. */ interface IListPermissionsRequest { /** ListPermissionsRequest parent */ parent?: (string|null); /** ListPermissionsRequest pageSize */ pageSize?: (number|null); /** ListPermissionsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListPermissionsRequest. */ class ListPermissionsRequest implements IListPermissionsRequest { /** * Constructs a new ListPermissionsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListPermissionsRequest); /** ListPermissionsRequest parent. */ public parent: string; /** ListPermissionsRequest pageSize. */ public pageSize: number; /** ListPermissionsRequest pageToken. */ public pageToken: string; /** * Creates a new ListPermissionsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListPermissionsRequest): google.ai.generativelanguage.v1beta.ListPermissionsRequest; /** * Encodes the specified ListPermissionsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListPermissionsRequest; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListPermissionsRequest; /** * Verifies a ListPermissionsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListPermissionsRequest; /** * Creates a plain object from a ListPermissionsRequest message. Also converts values to other types if specified. * @param message ListPermissionsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListPermissionsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsResponse. */ interface IListPermissionsResponse { /** ListPermissionsResponse permissions */ permissions?: (google.ai.generativelanguage.v1beta.IPermission[]|null); /** ListPermissionsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListPermissionsResponse. */ class ListPermissionsResponse implements IListPermissionsResponse { /** * Constructs a new ListPermissionsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListPermissionsResponse); /** ListPermissionsResponse permissions. */ public permissions: google.ai.generativelanguage.v1beta.IPermission[]; /** ListPermissionsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListPermissionsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListPermissionsResponse): google.ai.generativelanguage.v1beta.ListPermissionsResponse; /** * Encodes the specified ListPermissionsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListPermissionsResponse; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListPermissionsResponse; /** * Verifies a ListPermissionsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListPermissionsResponse; /** * Creates a plain object from a ListPermissionsResponse message. Also converts values to other types if specified. * @param message ListPermissionsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListPermissionsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdatePermissionRequest. */ interface IUpdatePermissionRequest { /** UpdatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1beta.IPermission|null); /** UpdatePermissionRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdatePermissionRequest. */ class UpdatePermissionRequest implements IUpdatePermissionRequest { /** * Constructs a new UpdatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest); /** UpdatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1beta.IPermission|null); /** UpdatePermissionRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest): google.ai.generativelanguage.v1beta.UpdatePermissionRequest; /** * Encodes the specified UpdatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdatePermissionRequest; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdatePermissionRequest; /** * Verifies an UpdatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdatePermissionRequest; /** * Creates a plain object from an UpdatePermissionRequest message. Also converts values to other types if specified. * @param message UpdatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeletePermissionRequest. */ interface IDeletePermissionRequest { /** DeletePermissionRequest name */ name?: (string|null); } /** Represents a DeletePermissionRequest. */ class DeletePermissionRequest implements IDeletePermissionRequest { /** * Constructs a new DeletePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeletePermissionRequest); /** DeletePermissionRequest name. */ public name: string; /** * Creates a new DeletePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeletePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeletePermissionRequest): google.ai.generativelanguage.v1beta.DeletePermissionRequest; /** * Encodes the specified DeletePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeletePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeletePermissionRequest; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeletePermissionRequest; /** * Verifies a DeletePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeletePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeletePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeletePermissionRequest; /** * Creates a plain object from a DeletePermissionRequest message. Also converts values to other types if specified. * @param message DeletePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeletePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeletePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeletePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipRequest. */ interface ITransferOwnershipRequest { /** TransferOwnershipRequest name */ name?: (string|null); /** TransferOwnershipRequest emailAddress */ emailAddress?: (string|null); } /** Represents a TransferOwnershipRequest. */ class TransferOwnershipRequest implements ITransferOwnershipRequest { /** * Constructs a new TransferOwnershipRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest); /** TransferOwnershipRequest name. */ public name: string; /** TransferOwnershipRequest emailAddress. */ public emailAddress: string; /** * Creates a new TransferOwnershipRequest instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest): google.ai.generativelanguage.v1beta.TransferOwnershipRequest; /** * Encodes the specified TransferOwnershipRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TransferOwnershipRequest; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TransferOwnershipRequest; /** * Verifies a TransferOwnershipRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TransferOwnershipRequest; /** * Creates a plain object from a TransferOwnershipRequest message. Also converts values to other types if specified. * @param message TransferOwnershipRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TransferOwnershipRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipResponse. */ interface ITransferOwnershipResponse { } /** Represents a TransferOwnershipResponse. */ class TransferOwnershipResponse implements ITransferOwnershipResponse { /** * Constructs a new TransferOwnershipResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITransferOwnershipResponse); /** * Creates a new TransferOwnershipResponse instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITransferOwnershipResponse): google.ai.generativelanguage.v1beta.TransferOwnershipResponse; /** * Encodes the specified TransferOwnershipResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TransferOwnershipResponse; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TransferOwnershipResponse; /** * Verifies a TransferOwnershipResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TransferOwnershipResponse; /** * Creates a plain object from a TransferOwnershipResponse message. Also converts values to other types if specified. * @param message TransferOwnershipResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TransferOwnershipResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a PredictionService */ class PredictionService extends $protobuf.rpc.Service { /** * Constructs a new PredictionService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new PredictionService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): PredictionService; /** * Calls Predict. * @param request PredictRequest message or plain object * @param callback Node-style callback called with the error, if any, and PredictResponse */ public predict(request: google.ai.generativelanguage.v1beta.IPredictRequest, callback: google.ai.generativelanguage.v1beta.PredictionService.PredictCallback): void; /** * Calls Predict. * @param request PredictRequest message or plain object * @returns Promise */ public predict(request: google.ai.generativelanguage.v1beta.IPredictRequest): Promise; /** * Calls PredictLongRunning. * @param request PredictLongRunningRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public predictLongRunning(request: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest, callback: google.ai.generativelanguage.v1beta.PredictionService.PredictLongRunningCallback): void; /** * Calls PredictLongRunning. * @param request PredictLongRunningRequest message or plain object * @returns Promise */ public predictLongRunning(request: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest): Promise; } namespace PredictionService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PredictionService|predict}. * @param error Error, if any * @param [response] PredictResponse */ type PredictCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.PredictResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.PredictionService|predictLongRunning}. * @param error Error, if any * @param [response] Operation */ type PredictLongRunningCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; } /** Properties of a PredictRequest. */ interface IPredictRequest { /** PredictRequest model */ model?: (string|null); /** PredictRequest instances */ instances?: (google.protobuf.IValue[]|null); /** PredictRequest parameters */ parameters?: (google.protobuf.IValue|null); } /** Represents a PredictRequest. */ class PredictRequest implements IPredictRequest { /** * Constructs a new PredictRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictRequest); /** PredictRequest model. */ public model: string; /** PredictRequest instances. */ public instances: google.protobuf.IValue[]; /** PredictRequest parameters. */ public parameters?: (google.protobuf.IValue|null); /** * Creates a new PredictRequest instance using the specified properties. * @param [properties] Properties to set * @returns PredictRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictRequest): google.ai.generativelanguage.v1beta.PredictRequest; /** * Encodes the specified PredictRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictRequest.verify|verify} messages. * @param message PredictRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictRequest.verify|verify} messages. * @param message PredictRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictRequest; /** * Decodes a PredictRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictRequest; /** * Verifies a PredictRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictRequest; /** * Creates a plain object from a PredictRequest message. Also converts values to other types if specified. * @param message PredictRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictLongRunningRequest. */ interface IPredictLongRunningRequest { /** PredictLongRunningRequest model */ model?: (string|null); /** PredictLongRunningRequest instances */ instances?: (google.protobuf.IValue[]|null); /** PredictLongRunningRequest parameters */ parameters?: (google.protobuf.IValue|null); } /** Represents a PredictLongRunningRequest. */ class PredictLongRunningRequest implements IPredictLongRunningRequest { /** * Constructs a new PredictLongRunningRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest); /** PredictLongRunningRequest model. */ public model: string; /** PredictLongRunningRequest instances. */ public instances: google.protobuf.IValue[]; /** PredictLongRunningRequest parameters. */ public parameters?: (google.protobuf.IValue|null); /** * Creates a new PredictLongRunningRequest instance using the specified properties. * @param [properties] Properties to set * @returns PredictLongRunningRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest): google.ai.generativelanguage.v1beta.PredictLongRunningRequest; /** * Encodes the specified PredictLongRunningRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningRequest.verify|verify} messages. * @param message PredictLongRunningRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictLongRunningRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningRequest.verify|verify} messages. * @param message PredictLongRunningRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictLongRunningRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictLongRunningRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictLongRunningRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictLongRunningRequest; /** * Decodes a PredictLongRunningRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictLongRunningRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictLongRunningRequest; /** * Verifies a PredictLongRunningRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictLongRunningRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictLongRunningRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictLongRunningRequest; /** * Creates a plain object from a PredictLongRunningRequest message. Also converts values to other types if specified. * @param message PredictLongRunningRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictLongRunningRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictLongRunningRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictLongRunningRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictResponse. */ interface IPredictResponse { /** PredictResponse predictions */ predictions?: (google.protobuf.IValue[]|null); } /** Represents a PredictResponse. */ class PredictResponse implements IPredictResponse { /** * Constructs a new PredictResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictResponse); /** PredictResponse predictions. */ public predictions: google.protobuf.IValue[]; /** * Creates a new PredictResponse instance using the specified properties. * @param [properties] Properties to set * @returns PredictResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictResponse): google.ai.generativelanguage.v1beta.PredictResponse; /** * Encodes the specified PredictResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictResponse.verify|verify} messages. * @param message PredictResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictResponse.verify|verify} messages. * @param message PredictResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictResponse; /** * Decodes a PredictResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictResponse; /** * Verifies a PredictResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictResponse; /** * Creates a plain object from a PredictResponse message. Also converts values to other types if specified. * @param message PredictResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictLongRunningResponse. */ interface IPredictLongRunningResponse { /** PredictLongRunningResponse generateVideoResponse */ generateVideoResponse?: (google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse|null); } /** Represents a PredictLongRunningResponse. */ class PredictLongRunningResponse implements IPredictLongRunningResponse { /** * Constructs a new PredictLongRunningResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningResponse); /** PredictLongRunningResponse generateVideoResponse. */ public generateVideoResponse?: (google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse|null); /** PredictLongRunningResponse response. */ public response?: "generateVideoResponse"; /** * Creates a new PredictLongRunningResponse instance using the specified properties. * @param [properties] Properties to set * @returns PredictLongRunningResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningResponse): google.ai.generativelanguage.v1beta.PredictLongRunningResponse; /** * Encodes the specified PredictLongRunningResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningResponse.verify|verify} messages. * @param message PredictLongRunningResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictLongRunningResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictLongRunningResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningResponse.verify|verify} messages. * @param message PredictLongRunningResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictLongRunningResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictLongRunningResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictLongRunningResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictLongRunningResponse; /** * Decodes a PredictLongRunningResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictLongRunningResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictLongRunningResponse; /** * Verifies a PredictLongRunningResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictLongRunningResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictLongRunningResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictLongRunningResponse; /** * Creates a plain object from a PredictLongRunningResponse message. Also converts values to other types if specified. * @param message PredictLongRunningResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictLongRunningResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictLongRunningResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictLongRunningResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictLongRunningMetadata. */ interface IPredictLongRunningMetadata { } /** Represents a PredictLongRunningMetadata. */ class PredictLongRunningMetadata implements IPredictLongRunningMetadata { /** * Constructs a new PredictLongRunningMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningMetadata); /** * Creates a new PredictLongRunningMetadata instance using the specified properties. * @param [properties] Properties to set * @returns PredictLongRunningMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningMetadata): google.ai.generativelanguage.v1beta.PredictLongRunningMetadata; /** * Encodes the specified PredictLongRunningMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningMetadata.verify|verify} messages. * @param message PredictLongRunningMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictLongRunningMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictLongRunningMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningMetadata.verify|verify} messages. * @param message PredictLongRunningMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictLongRunningMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictLongRunningMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictLongRunningMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictLongRunningMetadata; /** * Decodes a PredictLongRunningMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictLongRunningMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictLongRunningMetadata; /** * Verifies a PredictLongRunningMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictLongRunningMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictLongRunningMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictLongRunningMetadata; /** * Creates a plain object from a PredictLongRunningMetadata message. Also converts values to other types if specified. * @param message PredictLongRunningMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictLongRunningMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictLongRunningMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictLongRunningMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Media. */ interface IMedia { /** Media video */ video?: (google.ai.generativelanguage.v1beta.IVideo|null); } /** Represents a Media. */ class Media implements IMedia { /** * Constructs a new Media. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IMedia); /** Media video. */ public video?: (google.ai.generativelanguage.v1beta.IVideo|null); /** Media type. */ public type?: "video"; /** * Creates a new Media instance using the specified properties. * @param [properties] Properties to set * @returns Media instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IMedia): google.ai.generativelanguage.v1beta.Media; /** * Encodes the specified Media message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Media.verify|verify} messages. * @param message Media message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IMedia, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Media message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Media.verify|verify} messages. * @param message Media message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IMedia, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Media message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Media * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Media; /** * Decodes a Media message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Media * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Media; /** * Verifies a Media message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Media message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Media */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Media; /** * Creates a plain object from a Media message. Also converts values to other types if specified. * @param message Media * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Media, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Media to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Media * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Video. */ interface IVideo { /** Video video */ video?: (Uint8Array|Buffer|string|null); /** Video uri */ uri?: (string|null); } /** Represents a Video. */ class Video implements IVideo { /** * Constructs a new Video. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IVideo); /** Video video. */ public video?: (Uint8Array|Buffer|string|null); /** Video uri. */ public uri?: (string|null); /** Video content. */ public content?: ("video"|"uri"); /** * Creates a new Video instance using the specified properties. * @param [properties] Properties to set * @returns Video instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IVideo): google.ai.generativelanguage.v1beta.Video; /** * Encodes the specified Video message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Video.verify|verify} messages. * @param message Video message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IVideo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Video message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Video.verify|verify} messages. * @param message Video message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IVideo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Video message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Video * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Video; /** * Decodes a Video message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Video * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Video; /** * Verifies a Video message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Video message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Video */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Video; /** * Creates a plain object from a Video message. Also converts values to other types if specified. * @param message Video * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Video, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Video to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Video * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PredictLongRunningGeneratedVideoResponse. */ interface IPredictLongRunningGeneratedVideoResponse { /** PredictLongRunningGeneratedVideoResponse generatedSamples */ generatedSamples?: (google.ai.generativelanguage.v1beta.IMedia[]|null); /** PredictLongRunningGeneratedVideoResponse raiMediaFilteredCount */ raiMediaFilteredCount?: (number|null); /** PredictLongRunningGeneratedVideoResponse raiMediaFilteredReasons */ raiMediaFilteredReasons?: (string[]|null); } /** Represents a PredictLongRunningGeneratedVideoResponse. */ class PredictLongRunningGeneratedVideoResponse implements IPredictLongRunningGeneratedVideoResponse { /** * Constructs a new PredictLongRunningGeneratedVideoResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse); /** PredictLongRunningGeneratedVideoResponse generatedSamples. */ public generatedSamples: google.ai.generativelanguage.v1beta.IMedia[]; /** PredictLongRunningGeneratedVideoResponse raiMediaFilteredCount. */ public raiMediaFilteredCount: number; /** PredictLongRunningGeneratedVideoResponse raiMediaFilteredReasons. */ public raiMediaFilteredReasons: string[]; /** * Creates a new PredictLongRunningGeneratedVideoResponse instance using the specified properties. * @param [properties] Properties to set * @returns PredictLongRunningGeneratedVideoResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse): google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse; /** * Encodes the specified PredictLongRunningGeneratedVideoResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse.verify|verify} messages. * @param message PredictLongRunningGeneratedVideoResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PredictLongRunningGeneratedVideoResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse.verify|verify} messages. * @param message PredictLongRunningGeneratedVideoResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IPredictLongRunningGeneratedVideoResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PredictLongRunningGeneratedVideoResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PredictLongRunningGeneratedVideoResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse; /** * Decodes a PredictLongRunningGeneratedVideoResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PredictLongRunningGeneratedVideoResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse; /** * Verifies a PredictLongRunningGeneratedVideoResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PredictLongRunningGeneratedVideoResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PredictLongRunningGeneratedVideoResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse; /** * Creates a plain object from a PredictLongRunningGeneratedVideoResponse message. Also converts values to other types if specified. * @param message PredictLongRunningGeneratedVideoResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.PredictLongRunningGeneratedVideoResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PredictLongRunningGeneratedVideoResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PredictLongRunningGeneratedVideoResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a RetrieverService */ class RetrieverService extends $protobuf.rpc.Service { /** * Constructs a new RetrieverService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new RetrieverService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): RetrieverService; /** * Calls CreateCorpus. * @param request CreateCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public createCorpus(request: google.ai.generativelanguage.v1beta.ICreateCorpusRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.CreateCorpusCallback): void; /** * Calls CreateCorpus. * @param request CreateCorpusRequest message or plain object * @returns Promise */ public createCorpus(request: google.ai.generativelanguage.v1beta.ICreateCorpusRequest): Promise; /** * Calls GetCorpus. * @param request GetCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public getCorpus(request: google.ai.generativelanguage.v1beta.IGetCorpusRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.GetCorpusCallback): void; /** * Calls GetCorpus. * @param request GetCorpusRequest message or plain object * @returns Promise */ public getCorpus(request: google.ai.generativelanguage.v1beta.IGetCorpusRequest): Promise; /** * Calls UpdateCorpus. * @param request UpdateCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Corpus */ public updateCorpus(request: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.UpdateCorpusCallback): void; /** * Calls UpdateCorpus. * @param request UpdateCorpusRequest message or plain object * @returns Promise */ public updateCorpus(request: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest): Promise; /** * Calls DeleteCorpus. * @param request DeleteCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteCorpus(request: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.DeleteCorpusCallback): void; /** * Calls DeleteCorpus. * @param request DeleteCorpusRequest message or plain object * @returns Promise */ public deleteCorpus(request: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest): Promise; /** * Calls ListCorpora. * @param request ListCorporaRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListCorporaResponse */ public listCorpora(request: google.ai.generativelanguage.v1beta.IListCorporaRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.ListCorporaCallback): void; /** * Calls ListCorpora. * @param request ListCorporaRequest message or plain object * @returns Promise */ public listCorpora(request: google.ai.generativelanguage.v1beta.IListCorporaRequest): Promise; /** * Calls QueryCorpus. * @param request QueryCorpusRequest message or plain object * @param callback Node-style callback called with the error, if any, and QueryCorpusResponse */ public queryCorpus(request: google.ai.generativelanguage.v1beta.IQueryCorpusRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.QueryCorpusCallback): void; /** * Calls QueryCorpus. * @param request QueryCorpusRequest message or plain object * @returns Promise */ public queryCorpus(request: google.ai.generativelanguage.v1beta.IQueryCorpusRequest): Promise; /** * Calls CreateDocument. * @param request CreateDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public createDocument(request: google.ai.generativelanguage.v1beta.ICreateDocumentRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.CreateDocumentCallback): void; /** * Calls CreateDocument. * @param request CreateDocumentRequest message or plain object * @returns Promise */ public createDocument(request: google.ai.generativelanguage.v1beta.ICreateDocumentRequest): Promise; /** * Calls GetDocument. * @param request GetDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public getDocument(request: google.ai.generativelanguage.v1beta.IGetDocumentRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.GetDocumentCallback): void; /** * Calls GetDocument. * @param request GetDocumentRequest message or plain object * @returns Promise */ public getDocument(request: google.ai.generativelanguage.v1beta.IGetDocumentRequest): Promise; /** * Calls UpdateDocument. * @param request UpdateDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Document */ public updateDocument(request: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.UpdateDocumentCallback): void; /** * Calls UpdateDocument. * @param request UpdateDocumentRequest message or plain object * @returns Promise */ public updateDocument(request: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest): Promise; /** * Calls DeleteDocument. * @param request DeleteDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteDocument(request: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.DeleteDocumentCallback): void; /** * Calls DeleteDocument. * @param request DeleteDocumentRequest message or plain object * @returns Promise */ public deleteDocument(request: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest): Promise; /** * Calls ListDocuments. * @param request ListDocumentsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListDocumentsResponse */ public listDocuments(request: google.ai.generativelanguage.v1beta.IListDocumentsRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.ListDocumentsCallback): void; /** * Calls ListDocuments. * @param request ListDocumentsRequest message or plain object * @returns Promise */ public listDocuments(request: google.ai.generativelanguage.v1beta.IListDocumentsRequest): Promise; /** * Calls QueryDocument. * @param request QueryDocumentRequest message or plain object * @param callback Node-style callback called with the error, if any, and QueryDocumentResponse */ public queryDocument(request: google.ai.generativelanguage.v1beta.IQueryDocumentRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.QueryDocumentCallback): void; /** * Calls QueryDocument. * @param request QueryDocumentRequest message or plain object * @returns Promise */ public queryDocument(request: google.ai.generativelanguage.v1beta.IQueryDocumentRequest): Promise; /** * Calls CreateChunk. * @param request CreateChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public createChunk(request: google.ai.generativelanguage.v1beta.ICreateChunkRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.CreateChunkCallback): void; /** * Calls CreateChunk. * @param request CreateChunkRequest message or plain object * @returns Promise */ public createChunk(request: google.ai.generativelanguage.v1beta.ICreateChunkRequest): Promise; /** * Calls BatchCreateChunks. * @param request BatchCreateChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchCreateChunksResponse */ public batchCreateChunks(request: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.BatchCreateChunksCallback): void; /** * Calls BatchCreateChunks. * @param request BatchCreateChunksRequest message or plain object * @returns Promise */ public batchCreateChunks(request: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest): Promise; /** * Calls GetChunk. * @param request GetChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public getChunk(request: google.ai.generativelanguage.v1beta.IGetChunkRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.GetChunkCallback): void; /** * Calls GetChunk. * @param request GetChunkRequest message or plain object * @returns Promise */ public getChunk(request: google.ai.generativelanguage.v1beta.IGetChunkRequest): Promise; /** * Calls UpdateChunk. * @param request UpdateChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Chunk */ public updateChunk(request: google.ai.generativelanguage.v1beta.IUpdateChunkRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.UpdateChunkCallback): void; /** * Calls UpdateChunk. * @param request UpdateChunkRequest message or plain object * @returns Promise */ public updateChunk(request: google.ai.generativelanguage.v1beta.IUpdateChunkRequest): Promise; /** * Calls BatchUpdateChunks. * @param request BatchUpdateChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchUpdateChunksResponse */ public batchUpdateChunks(request: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.BatchUpdateChunksCallback): void; /** * Calls BatchUpdateChunks. * @param request BatchUpdateChunksRequest message or plain object * @returns Promise */ public batchUpdateChunks(request: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest): Promise; /** * Calls DeleteChunk. * @param request DeleteChunkRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteChunk(request: google.ai.generativelanguage.v1beta.IDeleteChunkRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.DeleteChunkCallback): void; /** * Calls DeleteChunk. * @param request DeleteChunkRequest message or plain object * @returns Promise */ public deleteChunk(request: google.ai.generativelanguage.v1beta.IDeleteChunkRequest): Promise; /** * Calls BatchDeleteChunks. * @param request BatchDeleteChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public batchDeleteChunks(request: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.BatchDeleteChunksCallback): void; /** * Calls BatchDeleteChunks. * @param request BatchDeleteChunksRequest message or plain object * @returns Promise */ public batchDeleteChunks(request: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest): Promise; /** * Calls ListChunks. * @param request ListChunksRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListChunksResponse */ public listChunks(request: google.ai.generativelanguage.v1beta.IListChunksRequest, callback: google.ai.generativelanguage.v1beta.RetrieverService.ListChunksCallback): void; /** * Calls ListChunks. * @param request ListChunksRequest message or plain object * @returns Promise */ public listChunks(request: google.ai.generativelanguage.v1beta.IListChunksRequest): Promise; } namespace RetrieverService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|createCorpus}. * @param error Error, if any * @param [response] Corpus */ type CreateCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|getCorpus}. * @param error Error, if any * @param [response] Corpus */ type GetCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|updateCorpus}. * @param error Error, if any * @param [response] Corpus */ type UpdateCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Corpus) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|deleteCorpus}. * @param error Error, if any * @param [response] Empty */ type DeleteCorpusCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|listCorpora}. * @param error Error, if any * @param [response] ListCorporaResponse */ type ListCorporaCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListCorporaResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|queryCorpus}. * @param error Error, if any * @param [response] QueryCorpusResponse */ type QueryCorpusCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.QueryCorpusResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|createDocument}. * @param error Error, if any * @param [response] Document */ type CreateDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|getDocument}. * @param error Error, if any * @param [response] Document */ type GetDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|updateDocument}. * @param error Error, if any * @param [response] Document */ type UpdateDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Document) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|deleteDocument}. * @param error Error, if any * @param [response] Empty */ type DeleteDocumentCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|listDocuments}. * @param error Error, if any * @param [response] ListDocumentsResponse */ type ListDocumentsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListDocumentsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|queryDocument}. * @param error Error, if any * @param [response] QueryDocumentResponse */ type QueryDocumentCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.QueryDocumentResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|createChunk}. * @param error Error, if any * @param [response] Chunk */ type CreateChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|batchCreateChunks}. * @param error Error, if any * @param [response] BatchCreateChunksResponse */ type BatchCreateChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.BatchCreateChunksResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|getChunk}. * @param error Error, if any * @param [response] Chunk */ type GetChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|updateChunk}. * @param error Error, if any * @param [response] Chunk */ type UpdateChunkCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.Chunk) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|batchUpdateChunks}. * @param error Error, if any * @param [response] BatchUpdateChunksResponse */ type BatchUpdateChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|deleteChunk}. * @param error Error, if any * @param [response] Empty */ type DeleteChunkCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|batchDeleteChunks}. * @param error Error, if any * @param [response] Empty */ type BatchDeleteChunksCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.RetrieverService|listChunks}. * @param error Error, if any * @param [response] ListChunksResponse */ type ListChunksCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.ListChunksResponse) => void; } /** Properties of a CreateCorpusRequest. */ interface ICreateCorpusRequest { /** CreateCorpusRequest corpus */ corpus?: (google.ai.generativelanguage.v1beta.ICorpus|null); } /** Represents a CreateCorpusRequest. */ class CreateCorpusRequest implements ICreateCorpusRequest { /** * Constructs a new CreateCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateCorpusRequest); /** CreateCorpusRequest corpus. */ public corpus?: (google.ai.generativelanguage.v1beta.ICorpus|null); /** * Creates a new CreateCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateCorpusRequest): google.ai.generativelanguage.v1beta.CreateCorpusRequest; /** * Encodes the specified CreateCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateCorpusRequest.verify|verify} messages. * @param message CreateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateCorpusRequest.verify|verify} messages. * @param message CreateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateCorpusRequest; /** * Decodes a CreateCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateCorpusRequest; /** * Verifies a CreateCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateCorpusRequest; /** * Creates a plain object from a CreateCorpusRequest message. Also converts values to other types if specified. * @param message CreateCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetCorpusRequest. */ interface IGetCorpusRequest { /** GetCorpusRequest name */ name?: (string|null); } /** Represents a GetCorpusRequest. */ class GetCorpusRequest implements IGetCorpusRequest { /** * Constructs a new GetCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetCorpusRequest); /** GetCorpusRequest name. */ public name: string; /** * Creates a new GetCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetCorpusRequest): google.ai.generativelanguage.v1beta.GetCorpusRequest; /** * Encodes the specified GetCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetCorpusRequest.verify|verify} messages. * @param message GetCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetCorpusRequest.verify|verify} messages. * @param message GetCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetCorpusRequest; /** * Decodes a GetCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetCorpusRequest; /** * Verifies a GetCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetCorpusRequest; /** * Creates a plain object from a GetCorpusRequest message. Also converts values to other types if specified. * @param message GetCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateCorpusRequest. */ interface IUpdateCorpusRequest { /** UpdateCorpusRequest corpus */ corpus?: (google.ai.generativelanguage.v1beta.ICorpus|null); /** UpdateCorpusRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateCorpusRequest. */ class UpdateCorpusRequest implements IUpdateCorpusRequest { /** * Constructs a new UpdateCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest); /** UpdateCorpusRequest corpus. */ public corpus?: (google.ai.generativelanguage.v1beta.ICorpus|null); /** UpdateCorpusRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest): google.ai.generativelanguage.v1beta.UpdateCorpusRequest; /** * Encodes the specified UpdateCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateCorpusRequest.verify|verify} messages. * @param message UpdateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateCorpusRequest.verify|verify} messages. * @param message UpdateCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdateCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdateCorpusRequest; /** * Decodes an UpdateCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdateCorpusRequest; /** * Verifies an UpdateCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdateCorpusRequest; /** * Creates a plain object from an UpdateCorpusRequest message. Also converts values to other types if specified. * @param message UpdateCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdateCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteCorpusRequest. */ interface IDeleteCorpusRequest { /** DeleteCorpusRequest name */ name?: (string|null); /** DeleteCorpusRequest force */ force?: (boolean|null); } /** Represents a DeleteCorpusRequest. */ class DeleteCorpusRequest implements IDeleteCorpusRequest { /** * Constructs a new DeleteCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest); /** DeleteCorpusRequest name. */ public name: string; /** DeleteCorpusRequest force. */ public force: boolean; /** * Creates a new DeleteCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest): google.ai.generativelanguage.v1beta.DeleteCorpusRequest; /** * Encodes the specified DeleteCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteCorpusRequest.verify|verify} messages. * @param message DeleteCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteCorpusRequest.verify|verify} messages. * @param message DeleteCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteCorpusRequest; /** * Decodes a DeleteCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteCorpusRequest; /** * Verifies a DeleteCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteCorpusRequest; /** * Creates a plain object from a DeleteCorpusRequest message. Also converts values to other types if specified. * @param message DeleteCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCorporaRequest. */ interface IListCorporaRequest { /** ListCorporaRequest pageSize */ pageSize?: (number|null); /** ListCorporaRequest pageToken */ pageToken?: (string|null); } /** Represents a ListCorporaRequest. */ class ListCorporaRequest implements IListCorporaRequest { /** * Constructs a new ListCorporaRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListCorporaRequest); /** ListCorporaRequest pageSize. */ public pageSize: number; /** ListCorporaRequest pageToken. */ public pageToken: string; /** * Creates a new ListCorporaRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListCorporaRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListCorporaRequest): google.ai.generativelanguage.v1beta.ListCorporaRequest; /** * Encodes the specified ListCorporaRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCorporaRequest.verify|verify} messages. * @param message ListCorporaRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListCorporaRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCorporaRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCorporaRequest.verify|verify} messages. * @param message ListCorporaRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListCorporaRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCorporaRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCorporaRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListCorporaRequest; /** * Decodes a ListCorporaRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCorporaRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListCorporaRequest; /** * Verifies a ListCorporaRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCorporaRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCorporaRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListCorporaRequest; /** * Creates a plain object from a ListCorporaRequest message. Also converts values to other types if specified. * @param message ListCorporaRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListCorporaRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCorporaRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCorporaRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListCorporaResponse. */ interface IListCorporaResponse { /** ListCorporaResponse corpora */ corpora?: (google.ai.generativelanguage.v1beta.ICorpus[]|null); /** ListCorporaResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListCorporaResponse. */ class ListCorporaResponse implements IListCorporaResponse { /** * Constructs a new ListCorporaResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListCorporaResponse); /** ListCorporaResponse corpora. */ public corpora: google.ai.generativelanguage.v1beta.ICorpus[]; /** ListCorporaResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListCorporaResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListCorporaResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListCorporaResponse): google.ai.generativelanguage.v1beta.ListCorporaResponse; /** * Encodes the specified ListCorporaResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCorporaResponse.verify|verify} messages. * @param message ListCorporaResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListCorporaResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListCorporaResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListCorporaResponse.verify|verify} messages. * @param message ListCorporaResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListCorporaResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListCorporaResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListCorporaResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListCorporaResponse; /** * Decodes a ListCorporaResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListCorporaResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListCorporaResponse; /** * Verifies a ListCorporaResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListCorporaResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListCorporaResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListCorporaResponse; /** * Creates a plain object from a ListCorporaResponse message. Also converts values to other types if specified. * @param message ListCorporaResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListCorporaResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListCorporaResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListCorporaResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryCorpusRequest. */ interface IQueryCorpusRequest { /** QueryCorpusRequest name */ name?: (string|null); /** QueryCorpusRequest query */ query?: (string|null); /** QueryCorpusRequest metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1beta.IMetadataFilter[]|null); /** QueryCorpusRequest resultsCount */ resultsCount?: (number|null); } /** Represents a QueryCorpusRequest. */ class QueryCorpusRequest implements IQueryCorpusRequest { /** * Constructs a new QueryCorpusRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IQueryCorpusRequest); /** QueryCorpusRequest name. */ public name: string; /** QueryCorpusRequest query. */ public query: string; /** QueryCorpusRequest metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1beta.IMetadataFilter[]; /** QueryCorpusRequest resultsCount. */ public resultsCount: number; /** * Creates a new QueryCorpusRequest instance using the specified properties. * @param [properties] Properties to set * @returns QueryCorpusRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IQueryCorpusRequest): google.ai.generativelanguage.v1beta.QueryCorpusRequest; /** * Encodes the specified QueryCorpusRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryCorpusRequest.verify|verify} messages. * @param message QueryCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IQueryCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryCorpusRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryCorpusRequest.verify|verify} messages. * @param message QueryCorpusRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IQueryCorpusRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryCorpusRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.QueryCorpusRequest; /** * Decodes a QueryCorpusRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryCorpusRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.QueryCorpusRequest; /** * Verifies a QueryCorpusRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryCorpusRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryCorpusRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.QueryCorpusRequest; /** * Creates a plain object from a QueryCorpusRequest message. Also converts values to other types if specified. * @param message QueryCorpusRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.QueryCorpusRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryCorpusRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryCorpusRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryCorpusResponse. */ interface IQueryCorpusResponse { /** QueryCorpusResponse relevantChunks */ relevantChunks?: (google.ai.generativelanguage.v1beta.IRelevantChunk[]|null); } /** Represents a QueryCorpusResponse. */ class QueryCorpusResponse implements IQueryCorpusResponse { /** * Constructs a new QueryCorpusResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IQueryCorpusResponse); /** QueryCorpusResponse relevantChunks. */ public relevantChunks: google.ai.generativelanguage.v1beta.IRelevantChunk[]; /** * Creates a new QueryCorpusResponse instance using the specified properties. * @param [properties] Properties to set * @returns QueryCorpusResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IQueryCorpusResponse): google.ai.generativelanguage.v1beta.QueryCorpusResponse; /** * Encodes the specified QueryCorpusResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryCorpusResponse.verify|verify} messages. * @param message QueryCorpusResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IQueryCorpusResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryCorpusResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryCorpusResponse.verify|verify} messages. * @param message QueryCorpusResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IQueryCorpusResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryCorpusResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryCorpusResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.QueryCorpusResponse; /** * Decodes a QueryCorpusResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryCorpusResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.QueryCorpusResponse; /** * Verifies a QueryCorpusResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryCorpusResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryCorpusResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.QueryCorpusResponse; /** * Creates a plain object from a QueryCorpusResponse message. Also converts values to other types if specified. * @param message QueryCorpusResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.QueryCorpusResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryCorpusResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryCorpusResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RelevantChunk. */ interface IRelevantChunk { /** RelevantChunk chunkRelevanceScore */ chunkRelevanceScore?: (number|null); /** RelevantChunk chunk */ chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); /** RelevantChunk document */ document?: (google.ai.generativelanguage.v1beta.IDocument|null); } /** Represents a RelevantChunk. */ class RelevantChunk implements IRelevantChunk { /** * Constructs a new RelevantChunk. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IRelevantChunk); /** RelevantChunk chunkRelevanceScore. */ public chunkRelevanceScore: number; /** RelevantChunk chunk. */ public chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); /** RelevantChunk document. */ public document?: (google.ai.generativelanguage.v1beta.IDocument|null); /** * Creates a new RelevantChunk instance using the specified properties. * @param [properties] Properties to set * @returns RelevantChunk instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IRelevantChunk): google.ai.generativelanguage.v1beta.RelevantChunk; /** * Encodes the specified RelevantChunk message. Does not implicitly {@link google.ai.generativelanguage.v1beta.RelevantChunk.verify|verify} messages. * @param message RelevantChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IRelevantChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RelevantChunk message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.RelevantChunk.verify|verify} messages. * @param message RelevantChunk message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IRelevantChunk, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RelevantChunk message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RelevantChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.RelevantChunk; /** * Decodes a RelevantChunk message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RelevantChunk * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.RelevantChunk; /** * Verifies a RelevantChunk message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RelevantChunk message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RelevantChunk */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.RelevantChunk; /** * Creates a plain object from a RelevantChunk message. Also converts values to other types if specified. * @param message RelevantChunk * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.RelevantChunk, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RelevantChunk to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RelevantChunk * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateDocumentRequest. */ interface ICreateDocumentRequest { /** CreateDocumentRequest parent */ parent?: (string|null); /** CreateDocumentRequest document */ document?: (google.ai.generativelanguage.v1beta.IDocument|null); } /** Represents a CreateDocumentRequest. */ class CreateDocumentRequest implements ICreateDocumentRequest { /** * Constructs a new CreateDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateDocumentRequest); /** CreateDocumentRequest parent. */ public parent: string; /** CreateDocumentRequest document. */ public document?: (google.ai.generativelanguage.v1beta.IDocument|null); /** * Creates a new CreateDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateDocumentRequest): google.ai.generativelanguage.v1beta.CreateDocumentRequest; /** * Encodes the specified CreateDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateDocumentRequest.verify|verify} messages. * @param message CreateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateDocumentRequest.verify|verify} messages. * @param message CreateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateDocumentRequest; /** * Decodes a CreateDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateDocumentRequest; /** * Verifies a CreateDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateDocumentRequest; /** * Creates a plain object from a CreateDocumentRequest message. Also converts values to other types if specified. * @param message CreateDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetDocumentRequest. */ interface IGetDocumentRequest { /** GetDocumentRequest name */ name?: (string|null); } /** Represents a GetDocumentRequest. */ class GetDocumentRequest implements IGetDocumentRequest { /** * Constructs a new GetDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetDocumentRequest); /** GetDocumentRequest name. */ public name: string; /** * Creates a new GetDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetDocumentRequest): google.ai.generativelanguage.v1beta.GetDocumentRequest; /** * Encodes the specified GetDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetDocumentRequest.verify|verify} messages. * @param message GetDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetDocumentRequest.verify|verify} messages. * @param message GetDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetDocumentRequest; /** * Decodes a GetDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetDocumentRequest; /** * Verifies a GetDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetDocumentRequest; /** * Creates a plain object from a GetDocumentRequest message. Also converts values to other types if specified. * @param message GetDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateDocumentRequest. */ interface IUpdateDocumentRequest { /** UpdateDocumentRequest document */ document?: (google.ai.generativelanguage.v1beta.IDocument|null); /** UpdateDocumentRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateDocumentRequest. */ class UpdateDocumentRequest implements IUpdateDocumentRequest { /** * Constructs a new UpdateDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest); /** UpdateDocumentRequest document. */ public document?: (google.ai.generativelanguage.v1beta.IDocument|null); /** UpdateDocumentRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest): google.ai.generativelanguage.v1beta.UpdateDocumentRequest; /** * Encodes the specified UpdateDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateDocumentRequest.verify|verify} messages. * @param message UpdateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateDocumentRequest.verify|verify} messages. * @param message UpdateDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdateDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdateDocumentRequest; /** * Decodes an UpdateDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdateDocumentRequest; /** * Verifies an UpdateDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdateDocumentRequest; /** * Creates a plain object from an UpdateDocumentRequest message. Also converts values to other types if specified. * @param message UpdateDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdateDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteDocumentRequest. */ interface IDeleteDocumentRequest { /** DeleteDocumentRequest name */ name?: (string|null); /** DeleteDocumentRequest force */ force?: (boolean|null); } /** Represents a DeleteDocumentRequest. */ class DeleteDocumentRequest implements IDeleteDocumentRequest { /** * Constructs a new DeleteDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest); /** DeleteDocumentRequest name. */ public name: string; /** DeleteDocumentRequest force. */ public force: boolean; /** * Creates a new DeleteDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest): google.ai.generativelanguage.v1beta.DeleteDocumentRequest; /** * Encodes the specified DeleteDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteDocumentRequest.verify|verify} messages. * @param message DeleteDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteDocumentRequest.verify|verify} messages. * @param message DeleteDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteDocumentRequest; /** * Decodes a DeleteDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteDocumentRequest; /** * Verifies a DeleteDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteDocumentRequest; /** * Creates a plain object from a DeleteDocumentRequest message. Also converts values to other types if specified. * @param message DeleteDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListDocumentsRequest. */ interface IListDocumentsRequest { /** ListDocumentsRequest parent */ parent?: (string|null); /** ListDocumentsRequest pageSize */ pageSize?: (number|null); /** ListDocumentsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListDocumentsRequest. */ class ListDocumentsRequest implements IListDocumentsRequest { /** * Constructs a new ListDocumentsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListDocumentsRequest); /** ListDocumentsRequest parent. */ public parent: string; /** ListDocumentsRequest pageSize. */ public pageSize: number; /** ListDocumentsRequest pageToken. */ public pageToken: string; /** * Creates a new ListDocumentsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListDocumentsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListDocumentsRequest): google.ai.generativelanguage.v1beta.ListDocumentsRequest; /** * Encodes the specified ListDocumentsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListDocumentsRequest.verify|verify} messages. * @param message ListDocumentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListDocumentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListDocumentsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListDocumentsRequest.verify|verify} messages. * @param message ListDocumentsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListDocumentsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListDocumentsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListDocumentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListDocumentsRequest; /** * Decodes a ListDocumentsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListDocumentsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListDocumentsRequest; /** * Verifies a ListDocumentsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListDocumentsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListDocumentsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListDocumentsRequest; /** * Creates a plain object from a ListDocumentsRequest message. Also converts values to other types if specified. * @param message ListDocumentsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListDocumentsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListDocumentsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListDocumentsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListDocumentsResponse. */ interface IListDocumentsResponse { /** ListDocumentsResponse documents */ documents?: (google.ai.generativelanguage.v1beta.IDocument[]|null); /** ListDocumentsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListDocumentsResponse. */ class ListDocumentsResponse implements IListDocumentsResponse { /** * Constructs a new ListDocumentsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListDocumentsResponse); /** ListDocumentsResponse documents. */ public documents: google.ai.generativelanguage.v1beta.IDocument[]; /** ListDocumentsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListDocumentsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListDocumentsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListDocumentsResponse): google.ai.generativelanguage.v1beta.ListDocumentsResponse; /** * Encodes the specified ListDocumentsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListDocumentsResponse.verify|verify} messages. * @param message ListDocumentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListDocumentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListDocumentsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListDocumentsResponse.verify|verify} messages. * @param message ListDocumentsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListDocumentsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListDocumentsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListDocumentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListDocumentsResponse; /** * Decodes a ListDocumentsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListDocumentsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListDocumentsResponse; /** * Verifies a ListDocumentsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListDocumentsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListDocumentsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListDocumentsResponse; /** * Creates a plain object from a ListDocumentsResponse message. Also converts values to other types if specified. * @param message ListDocumentsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListDocumentsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListDocumentsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListDocumentsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryDocumentRequest. */ interface IQueryDocumentRequest { /** QueryDocumentRequest name */ name?: (string|null); /** QueryDocumentRequest query */ query?: (string|null); /** QueryDocumentRequest resultsCount */ resultsCount?: (number|null); /** QueryDocumentRequest metadataFilters */ metadataFilters?: (google.ai.generativelanguage.v1beta.IMetadataFilter[]|null); } /** Represents a QueryDocumentRequest. */ class QueryDocumentRequest implements IQueryDocumentRequest { /** * Constructs a new QueryDocumentRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IQueryDocumentRequest); /** QueryDocumentRequest name. */ public name: string; /** QueryDocumentRequest query. */ public query: string; /** QueryDocumentRequest resultsCount. */ public resultsCount: number; /** QueryDocumentRequest metadataFilters. */ public metadataFilters: google.ai.generativelanguage.v1beta.IMetadataFilter[]; /** * Creates a new QueryDocumentRequest instance using the specified properties. * @param [properties] Properties to set * @returns QueryDocumentRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IQueryDocumentRequest): google.ai.generativelanguage.v1beta.QueryDocumentRequest; /** * Encodes the specified QueryDocumentRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryDocumentRequest.verify|verify} messages. * @param message QueryDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IQueryDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryDocumentRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryDocumentRequest.verify|verify} messages. * @param message QueryDocumentRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IQueryDocumentRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryDocumentRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.QueryDocumentRequest; /** * Decodes a QueryDocumentRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryDocumentRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.QueryDocumentRequest; /** * Verifies a QueryDocumentRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryDocumentRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryDocumentRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.QueryDocumentRequest; /** * Creates a plain object from a QueryDocumentRequest message. Also converts values to other types if specified. * @param message QueryDocumentRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.QueryDocumentRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryDocumentRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryDocumentRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a QueryDocumentResponse. */ interface IQueryDocumentResponse { /** QueryDocumentResponse relevantChunks */ relevantChunks?: (google.ai.generativelanguage.v1beta.IRelevantChunk[]|null); } /** Represents a QueryDocumentResponse. */ class QueryDocumentResponse implements IQueryDocumentResponse { /** * Constructs a new QueryDocumentResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IQueryDocumentResponse); /** QueryDocumentResponse relevantChunks. */ public relevantChunks: google.ai.generativelanguage.v1beta.IRelevantChunk[]; /** * Creates a new QueryDocumentResponse instance using the specified properties. * @param [properties] Properties to set * @returns QueryDocumentResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IQueryDocumentResponse): google.ai.generativelanguage.v1beta.QueryDocumentResponse; /** * Encodes the specified QueryDocumentResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryDocumentResponse.verify|verify} messages. * @param message QueryDocumentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IQueryDocumentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified QueryDocumentResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.QueryDocumentResponse.verify|verify} messages. * @param message QueryDocumentResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IQueryDocumentResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a QueryDocumentResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns QueryDocumentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.QueryDocumentResponse; /** * Decodes a QueryDocumentResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns QueryDocumentResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.QueryDocumentResponse; /** * Verifies a QueryDocumentResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a QueryDocumentResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns QueryDocumentResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.QueryDocumentResponse; /** * Creates a plain object from a QueryDocumentResponse message. Also converts values to other types if specified. * @param message QueryDocumentResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.QueryDocumentResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this QueryDocumentResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for QueryDocumentResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateChunkRequest. */ interface ICreateChunkRequest { /** CreateChunkRequest parent */ parent?: (string|null); /** CreateChunkRequest chunk */ chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); } /** Represents a CreateChunkRequest. */ class CreateChunkRequest implements ICreateChunkRequest { /** * Constructs a new CreateChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICreateChunkRequest); /** CreateChunkRequest parent. */ public parent: string; /** CreateChunkRequest chunk. */ public chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); /** * Creates a new CreateChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICreateChunkRequest): google.ai.generativelanguage.v1beta.CreateChunkRequest; /** * Encodes the specified CreateChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateChunkRequest.verify|verify} messages. * @param message CreateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICreateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CreateChunkRequest.verify|verify} messages. * @param message CreateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICreateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CreateChunkRequest; /** * Decodes a CreateChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CreateChunkRequest; /** * Verifies a CreateChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CreateChunkRequest; /** * Creates a plain object from a CreateChunkRequest message. Also converts values to other types if specified. * @param message CreateChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CreateChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchCreateChunksRequest. */ interface IBatchCreateChunksRequest { /** BatchCreateChunksRequest parent */ parent?: (string|null); /** BatchCreateChunksRequest requests */ requests?: (google.ai.generativelanguage.v1beta.ICreateChunkRequest[]|null); } /** Represents a BatchCreateChunksRequest. */ class BatchCreateChunksRequest implements IBatchCreateChunksRequest { /** * Constructs a new BatchCreateChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest); /** BatchCreateChunksRequest parent. */ public parent: string; /** BatchCreateChunksRequest requests. */ public requests: google.ai.generativelanguage.v1beta.ICreateChunkRequest[]; /** * Creates a new BatchCreateChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchCreateChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest): google.ai.generativelanguage.v1beta.BatchCreateChunksRequest; /** * Encodes the specified BatchCreateChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchCreateChunksRequest.verify|verify} messages. * @param message BatchCreateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchCreateChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchCreateChunksRequest.verify|verify} messages. * @param message BatchCreateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchCreateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchCreateChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchCreateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchCreateChunksRequest; /** * Decodes a BatchCreateChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchCreateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchCreateChunksRequest; /** * Verifies a BatchCreateChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchCreateChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchCreateChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchCreateChunksRequest; /** * Creates a plain object from a BatchCreateChunksRequest message. Also converts values to other types if specified. * @param message BatchCreateChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchCreateChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchCreateChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchCreateChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchCreateChunksResponse. */ interface IBatchCreateChunksResponse { /** BatchCreateChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1beta.IChunk[]|null); } /** Represents a BatchCreateChunksResponse. */ class BatchCreateChunksResponse implements IBatchCreateChunksResponse { /** * Constructs a new BatchCreateChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchCreateChunksResponse); /** BatchCreateChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1beta.IChunk[]; /** * Creates a new BatchCreateChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchCreateChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchCreateChunksResponse): google.ai.generativelanguage.v1beta.BatchCreateChunksResponse; /** * Encodes the specified BatchCreateChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchCreateChunksResponse.verify|verify} messages. * @param message BatchCreateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchCreateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchCreateChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchCreateChunksResponse.verify|verify} messages. * @param message BatchCreateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchCreateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchCreateChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchCreateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchCreateChunksResponse; /** * Decodes a BatchCreateChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchCreateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchCreateChunksResponse; /** * Verifies a BatchCreateChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchCreateChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchCreateChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchCreateChunksResponse; /** * Creates a plain object from a BatchCreateChunksResponse message. Also converts values to other types if specified. * @param message BatchCreateChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchCreateChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchCreateChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchCreateChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetChunkRequest. */ interface IGetChunkRequest { /** GetChunkRequest name */ name?: (string|null); } /** Represents a GetChunkRequest. */ class GetChunkRequest implements IGetChunkRequest { /** * Constructs a new GetChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGetChunkRequest); /** GetChunkRequest name. */ public name: string; /** * Creates a new GetChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGetChunkRequest): google.ai.generativelanguage.v1beta.GetChunkRequest; /** * Encodes the specified GetChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetChunkRequest.verify|verify} messages. * @param message GetChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGetChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GetChunkRequest.verify|verify} messages. * @param message GetChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGetChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GetChunkRequest; /** * Decodes a GetChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GetChunkRequest; /** * Verifies a GetChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GetChunkRequest; /** * Creates a plain object from a GetChunkRequest message. Also converts values to other types if specified. * @param message GetChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GetChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateChunkRequest. */ interface IUpdateChunkRequest { /** UpdateChunkRequest chunk */ chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); /** UpdateChunkRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateChunkRequest. */ class UpdateChunkRequest implements IUpdateChunkRequest { /** * Constructs a new UpdateChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IUpdateChunkRequest); /** UpdateChunkRequest chunk. */ public chunk?: (google.ai.generativelanguage.v1beta.IChunk|null); /** UpdateChunkRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IUpdateChunkRequest): google.ai.generativelanguage.v1beta.UpdateChunkRequest; /** * Encodes the specified UpdateChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateChunkRequest.verify|verify} messages. * @param message UpdateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IUpdateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.UpdateChunkRequest.verify|verify} messages. * @param message UpdateChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IUpdateChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.UpdateChunkRequest; /** * Decodes an UpdateChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.UpdateChunkRequest; /** * Verifies an UpdateChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.UpdateChunkRequest; /** * Creates a plain object from an UpdateChunkRequest message. Also converts values to other types if specified. * @param message UpdateChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.UpdateChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchUpdateChunksRequest. */ interface IBatchUpdateChunksRequest { /** BatchUpdateChunksRequest parent */ parent?: (string|null); /** BatchUpdateChunksRequest requests */ requests?: (google.ai.generativelanguage.v1beta.IUpdateChunkRequest[]|null); } /** Represents a BatchUpdateChunksRequest. */ class BatchUpdateChunksRequest implements IBatchUpdateChunksRequest { /** * Constructs a new BatchUpdateChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest); /** BatchUpdateChunksRequest parent. */ public parent: string; /** BatchUpdateChunksRequest requests. */ public requests: google.ai.generativelanguage.v1beta.IUpdateChunkRequest[]; /** * Creates a new BatchUpdateChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchUpdateChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest): google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest; /** * Encodes the specified BatchUpdateChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest.verify|verify} messages. * @param message BatchUpdateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchUpdateChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest.verify|verify} messages. * @param message BatchUpdateChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchUpdateChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchUpdateChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchUpdateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest; /** * Decodes a BatchUpdateChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchUpdateChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest; /** * Verifies a BatchUpdateChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchUpdateChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchUpdateChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest; /** * Creates a plain object from a BatchUpdateChunksRequest message. Also converts values to other types if specified. * @param message BatchUpdateChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchUpdateChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchUpdateChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchUpdateChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchUpdateChunksResponse. */ interface IBatchUpdateChunksResponse { /** BatchUpdateChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1beta.IChunk[]|null); } /** Represents a BatchUpdateChunksResponse. */ class BatchUpdateChunksResponse implements IBatchUpdateChunksResponse { /** * Constructs a new BatchUpdateChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchUpdateChunksResponse); /** BatchUpdateChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1beta.IChunk[]; /** * Creates a new BatchUpdateChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchUpdateChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchUpdateChunksResponse): google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse; /** * Encodes the specified BatchUpdateChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse.verify|verify} messages. * @param message BatchUpdateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchUpdateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchUpdateChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse.verify|verify} messages. * @param message BatchUpdateChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchUpdateChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchUpdateChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchUpdateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse; /** * Decodes a BatchUpdateChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchUpdateChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse; /** * Verifies a BatchUpdateChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchUpdateChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchUpdateChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse; /** * Creates a plain object from a BatchUpdateChunksResponse message. Also converts values to other types if specified. * @param message BatchUpdateChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchUpdateChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchUpdateChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchUpdateChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteChunkRequest. */ interface IDeleteChunkRequest { /** DeleteChunkRequest name */ name?: (string|null); } /** Represents a DeleteChunkRequest. */ class DeleteChunkRequest implements IDeleteChunkRequest { /** * Constructs a new DeleteChunkRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IDeleteChunkRequest); /** DeleteChunkRequest name. */ public name: string; /** * Creates a new DeleteChunkRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteChunkRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IDeleteChunkRequest): google.ai.generativelanguage.v1beta.DeleteChunkRequest; /** * Encodes the specified DeleteChunkRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteChunkRequest.verify|verify} messages. * @param message DeleteChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IDeleteChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteChunkRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.DeleteChunkRequest.verify|verify} messages. * @param message DeleteChunkRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IDeleteChunkRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteChunkRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.DeleteChunkRequest; /** * Decodes a DeleteChunkRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteChunkRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.DeleteChunkRequest; /** * Verifies a DeleteChunkRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteChunkRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteChunkRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.DeleteChunkRequest; /** * Creates a plain object from a DeleteChunkRequest message. Also converts values to other types if specified. * @param message DeleteChunkRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.DeleteChunkRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteChunkRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteChunkRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchDeleteChunksRequest. */ interface IBatchDeleteChunksRequest { /** BatchDeleteChunksRequest parent */ parent?: (string|null); /** BatchDeleteChunksRequest requests */ requests?: (google.ai.generativelanguage.v1beta.IDeleteChunkRequest[]|null); } /** Represents a BatchDeleteChunksRequest. */ class BatchDeleteChunksRequest implements IBatchDeleteChunksRequest { /** * Constructs a new BatchDeleteChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest); /** BatchDeleteChunksRequest parent. */ public parent: string; /** BatchDeleteChunksRequest requests. */ public requests: google.ai.generativelanguage.v1beta.IDeleteChunkRequest[]; /** * Creates a new BatchDeleteChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchDeleteChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest): google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest; /** * Encodes the specified BatchDeleteChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest.verify|verify} messages. * @param message BatchDeleteChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchDeleteChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest.verify|verify} messages. * @param message BatchDeleteChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchDeleteChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchDeleteChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchDeleteChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest; /** * Decodes a BatchDeleteChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchDeleteChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest; /** * Verifies a BatchDeleteChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchDeleteChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchDeleteChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest; /** * Creates a plain object from a BatchDeleteChunksRequest message. Also converts values to other types if specified. * @param message BatchDeleteChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchDeleteChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchDeleteChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchDeleteChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListChunksRequest. */ interface IListChunksRequest { /** ListChunksRequest parent */ parent?: (string|null); /** ListChunksRequest pageSize */ pageSize?: (number|null); /** ListChunksRequest pageToken */ pageToken?: (string|null); } /** Represents a ListChunksRequest. */ class ListChunksRequest implements IListChunksRequest { /** * Constructs a new ListChunksRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListChunksRequest); /** ListChunksRequest parent. */ public parent: string; /** ListChunksRequest pageSize. */ public pageSize: number; /** ListChunksRequest pageToken. */ public pageToken: string; /** * Creates a new ListChunksRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListChunksRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListChunksRequest): google.ai.generativelanguage.v1beta.ListChunksRequest; /** * Encodes the specified ListChunksRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListChunksRequest.verify|verify} messages. * @param message ListChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListChunksRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListChunksRequest.verify|verify} messages. * @param message ListChunksRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListChunksRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListChunksRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListChunksRequest; /** * Decodes a ListChunksRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListChunksRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListChunksRequest; /** * Verifies a ListChunksRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListChunksRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListChunksRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListChunksRequest; /** * Creates a plain object from a ListChunksRequest message. Also converts values to other types if specified. * @param message ListChunksRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListChunksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListChunksRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListChunksRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListChunksResponse. */ interface IListChunksResponse { /** ListChunksResponse chunks */ chunks?: (google.ai.generativelanguage.v1beta.IChunk[]|null); /** ListChunksResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListChunksResponse. */ class ListChunksResponse implements IListChunksResponse { /** * Constructs a new ListChunksResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IListChunksResponse); /** ListChunksResponse chunks. */ public chunks: google.ai.generativelanguage.v1beta.IChunk[]; /** ListChunksResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListChunksResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListChunksResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IListChunksResponse): google.ai.generativelanguage.v1beta.ListChunksResponse; /** * Encodes the specified ListChunksResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListChunksResponse.verify|verify} messages. * @param message ListChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IListChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListChunksResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.ListChunksResponse.verify|verify} messages. * @param message ListChunksResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IListChunksResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListChunksResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.ListChunksResponse; /** * Decodes a ListChunksResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListChunksResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.ListChunksResponse; /** * Verifies a ListChunksResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListChunksResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListChunksResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.ListChunksResponse; /** * Creates a plain object from a ListChunksResponse message. Also converts values to other types if specified. * @param message ListChunksResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.ListChunksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListChunksResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListChunksResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a TextService */ class TextService extends $protobuf.rpc.Service { /** * Constructs a new TextService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new TextService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): TextService; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateTextResponse */ public generateText(request: google.ai.generativelanguage.v1beta.IGenerateTextRequest, callback: google.ai.generativelanguage.v1beta.TextService.GenerateTextCallback): void; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @returns Promise */ public generateText(request: google.ai.generativelanguage.v1beta.IGenerateTextRequest): Promise; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedTextResponse */ public embedText(request: google.ai.generativelanguage.v1beta.IEmbedTextRequest, callback: google.ai.generativelanguage.v1beta.TextService.EmbedTextCallback): void; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @returns Promise */ public embedText(request: google.ai.generativelanguage.v1beta.IEmbedTextRequest): Promise; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedTextResponse */ public batchEmbedText(request: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest, callback: google.ai.generativelanguage.v1beta.TextService.BatchEmbedTextCallback): void; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @returns Promise */ public batchEmbedText(request: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest): Promise; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTextTokensResponse */ public countTextTokens(request: google.ai.generativelanguage.v1beta.ICountTextTokensRequest, callback: google.ai.generativelanguage.v1beta.TextService.CountTextTokensCallback): void; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @returns Promise */ public countTextTokens(request: google.ai.generativelanguage.v1beta.ICountTextTokensRequest): Promise; } namespace TextService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta.TextService|generateText}. * @param error Error, if any * @param [response] GenerateTextResponse */ type GenerateTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.GenerateTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.TextService|embedText}. * @param error Error, if any * @param [response] EmbedTextResponse */ type EmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.EmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.TextService|batchEmbedText}. * @param error Error, if any * @param [response] BatchEmbedTextResponse */ type BatchEmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.BatchEmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta.TextService|countTextTokens}. * @param error Error, if any * @param [response] CountTextTokensResponse */ type CountTextTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta.CountTextTokensResponse) => void; } /** Properties of a GenerateTextRequest. */ interface IGenerateTextRequest { /** GenerateTextRequest model */ model?: (string|null); /** GenerateTextRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta.ITextPrompt|null); /** GenerateTextRequest temperature */ temperature?: (number|null); /** GenerateTextRequest candidateCount */ candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerateTextRequest topP */ topP?: (number|null); /** GenerateTextRequest topK */ topK?: (number|null); /** GenerateTextRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1beta.ISafetySetting[]|null); /** GenerateTextRequest stopSequences */ stopSequences?: (string[]|null); } /** Represents a GenerateTextRequest. */ class GenerateTextRequest implements IGenerateTextRequest { /** * Constructs a new GenerateTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateTextRequest); /** GenerateTextRequest model. */ public model: string; /** GenerateTextRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta.ITextPrompt|null); /** GenerateTextRequest temperature. */ public temperature?: (number|null); /** GenerateTextRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerateTextRequest topP. */ public topP?: (number|null); /** GenerateTextRequest topK. */ public topK?: (number|null); /** GenerateTextRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1beta.ISafetySetting[]; /** GenerateTextRequest stopSequences. */ public stopSequences: string[]; /** * Creates a new GenerateTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateTextRequest): google.ai.generativelanguage.v1beta.GenerateTextRequest; /** * Encodes the specified GenerateTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateTextRequest; /** * Decodes a GenerateTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateTextRequest; /** * Verifies a GenerateTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateTextRequest; /** * Creates a plain object from a GenerateTextRequest message. Also converts values to other types if specified. * @param message GenerateTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateTextResponse. */ interface IGenerateTextResponse { /** GenerateTextResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta.ITextCompletion[]|null); /** GenerateTextResponse filters */ filters?: (google.ai.generativelanguage.v1beta.IContentFilter[]|null); /** GenerateTextResponse safetyFeedback */ safetyFeedback?: (google.ai.generativelanguage.v1beta.ISafetyFeedback[]|null); } /** Represents a GenerateTextResponse. */ class GenerateTextResponse implements IGenerateTextResponse { /** * Constructs a new GenerateTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IGenerateTextResponse); /** GenerateTextResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta.ITextCompletion[]; /** GenerateTextResponse filters. */ public filters: google.ai.generativelanguage.v1beta.IContentFilter[]; /** GenerateTextResponse safetyFeedback. */ public safetyFeedback: google.ai.generativelanguage.v1beta.ISafetyFeedback[]; /** * Creates a new GenerateTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IGenerateTextResponse): google.ai.generativelanguage.v1beta.GenerateTextResponse; /** * Encodes the specified GenerateTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.GenerateTextResponse; /** * Decodes a GenerateTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.GenerateTextResponse; /** * Verifies a GenerateTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.GenerateTextResponse; /** * Creates a plain object from a GenerateTextResponse message. Also converts values to other types if specified. * @param message GenerateTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.GenerateTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextPrompt. */ interface ITextPrompt { /** TextPrompt text */ text?: (string|null); } /** Represents a TextPrompt. */ class TextPrompt implements ITextPrompt { /** * Constructs a new TextPrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITextPrompt); /** TextPrompt text. */ public text: string; /** * Creates a new TextPrompt instance using the specified properties. * @param [properties] Properties to set * @returns TextPrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITextPrompt): google.ai.generativelanguage.v1beta.TextPrompt; /** * Encodes the specified TextPrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextPrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextPrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TextPrompt; /** * Decodes a TextPrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TextPrompt; /** * Verifies a TextPrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextPrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextPrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TextPrompt; /** * Creates a plain object from a TextPrompt message. Also converts values to other types if specified. * @param message TextPrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TextPrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextPrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextPrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextCompletion. */ interface ITextCompletion { /** TextCompletion output */ output?: (string|null); /** TextCompletion safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta.ISafetyRating[]|null); /** TextCompletion citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); } /** Represents a TextCompletion. */ class TextCompletion implements ITextCompletion { /** * Constructs a new TextCompletion. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ITextCompletion); /** TextCompletion output. */ public output: string; /** TextCompletion safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta.ISafetyRating[]; /** TextCompletion citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta.ICitationMetadata|null); /** * Creates a new TextCompletion instance using the specified properties. * @param [properties] Properties to set * @returns TextCompletion instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ITextCompletion): google.ai.generativelanguage.v1beta.TextCompletion; /** * Encodes the specified TextCompletion message. Does not implicitly {@link google.ai.generativelanguage.v1beta.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextCompletion message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextCompletion message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.TextCompletion; /** * Decodes a TextCompletion message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.TextCompletion; /** * Verifies a TextCompletion message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextCompletion message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextCompletion */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.TextCompletion; /** * Creates a plain object from a TextCompletion message. Also converts values to other types if specified. * @param message TextCompletion * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.TextCompletion, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextCompletion to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextCompletion * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextRequest. */ interface IEmbedTextRequest { /** EmbedTextRequest model */ model?: (string|null); /** EmbedTextRequest text */ text?: (string|null); } /** Represents an EmbedTextRequest. */ class EmbedTextRequest implements IEmbedTextRequest { /** * Constructs a new EmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IEmbedTextRequest); /** EmbedTextRequest model. */ public model: string; /** EmbedTextRequest text. */ public text: string; /** * Creates a new EmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IEmbedTextRequest): google.ai.generativelanguage.v1beta.EmbedTextRequest; /** * Encodes the specified EmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.EmbedTextRequest; /** * Decodes an EmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.EmbedTextRequest; /** * Verifies an EmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.EmbedTextRequest; /** * Creates a plain object from an EmbedTextRequest message. Also converts values to other types if specified. * @param message EmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.EmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextResponse. */ interface IEmbedTextResponse { /** EmbedTextResponse embedding */ embedding?: (google.ai.generativelanguage.v1beta.IEmbedding|null); } /** Represents an EmbedTextResponse. */ class EmbedTextResponse implements IEmbedTextResponse { /** * Constructs a new EmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IEmbedTextResponse); /** EmbedTextResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1beta.IEmbedding|null); /** * Creates a new EmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IEmbedTextResponse): google.ai.generativelanguage.v1beta.EmbedTextResponse; /** * Encodes the specified EmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.EmbedTextResponse; /** * Decodes an EmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.EmbedTextResponse; /** * Verifies an EmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.EmbedTextResponse; /** * Creates a plain object from an EmbedTextResponse message. Also converts values to other types if specified. * @param message EmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.EmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextRequest. */ interface IBatchEmbedTextRequest { /** BatchEmbedTextRequest model */ model?: (string|null); /** BatchEmbedTextRequest texts */ texts?: (string[]|null); /** BatchEmbedTextRequest requests */ requests?: (google.ai.generativelanguage.v1beta.IEmbedTextRequest[]|null); } /** Represents a BatchEmbedTextRequest. */ class BatchEmbedTextRequest implements IBatchEmbedTextRequest { /** * Constructs a new BatchEmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest); /** BatchEmbedTextRequest model. */ public model: string; /** BatchEmbedTextRequest texts. */ public texts: string[]; /** BatchEmbedTextRequest requests. */ public requests: google.ai.generativelanguage.v1beta.IEmbedTextRequest[]; /** * Creates a new BatchEmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest): google.ai.generativelanguage.v1beta.BatchEmbedTextRequest; /** * Encodes the specified BatchEmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchEmbedTextRequest; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchEmbedTextRequest; /** * Verifies a BatchEmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchEmbedTextRequest; /** * Creates a plain object from a BatchEmbedTextRequest message. Also converts values to other types if specified. * @param message BatchEmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchEmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextResponse. */ interface IBatchEmbedTextResponse { /** BatchEmbedTextResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1beta.IEmbedding[]|null); } /** Represents a BatchEmbedTextResponse. */ class BatchEmbedTextResponse implements IBatchEmbedTextResponse { /** * Constructs a new BatchEmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedTextResponse); /** BatchEmbedTextResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1beta.IEmbedding[]; /** * Creates a new BatchEmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IBatchEmbedTextResponse): google.ai.generativelanguage.v1beta.BatchEmbedTextResponse; /** * Encodes the specified BatchEmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.BatchEmbedTextResponse; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.BatchEmbedTextResponse; /** * Verifies a BatchEmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.BatchEmbedTextResponse; /** * Creates a plain object from a BatchEmbedTextResponse message. Also converts values to other types if specified. * @param message BatchEmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.BatchEmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Embedding. */ interface IEmbedding { /** Embedding value */ value?: (number[]|null); } /** Represents an Embedding. */ class Embedding implements IEmbedding { /** * Constructs a new Embedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.IEmbedding); /** Embedding value. */ public value: number[]; /** * Creates a new Embedding instance using the specified properties. * @param [properties] Properties to set * @returns Embedding instance */ public static create(properties?: google.ai.generativelanguage.v1beta.IEmbedding): google.ai.generativelanguage.v1beta.Embedding; /** * Encodes the specified Embedding message. Does not implicitly {@link google.ai.generativelanguage.v1beta.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Embedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Embedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.Embedding; /** * Decodes an Embedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.Embedding; /** * Verifies an Embedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Embedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Embedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.Embedding; /** * Creates a plain object from an Embedding message. Also converts values to other types if specified. * @param message Embedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.Embedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Embedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Embedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensRequest. */ interface ICountTextTokensRequest { /** CountTextTokensRequest model */ model?: (string|null); /** CountTextTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta.ITextPrompt|null); } /** Represents a CountTextTokensRequest. */ class CountTextTokensRequest implements ICountTextTokensRequest { /** * Constructs a new CountTextTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountTextTokensRequest); /** CountTextTokensRequest model. */ public model: string; /** CountTextTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta.ITextPrompt|null); /** * Creates a new CountTextTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountTextTokensRequest): google.ai.generativelanguage.v1beta.CountTextTokensRequest; /** * Encodes the specified CountTextTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountTextTokensRequest; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountTextTokensRequest; /** * Verifies a CountTextTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountTextTokensRequest; /** * Creates a plain object from a CountTextTokensRequest message. Also converts values to other types if specified. * @param message CountTextTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountTextTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensResponse. */ interface ICountTextTokensResponse { /** CountTextTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountTextTokensResponse. */ class CountTextTokensResponse implements ICountTextTokensResponse { /** * Constructs a new CountTextTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta.ICountTextTokensResponse); /** CountTextTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountTextTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta.ICountTextTokensResponse): google.ai.generativelanguage.v1beta.CountTextTokensResponse; /** * Encodes the specified CountTextTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta.CountTextTokensResponse; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta.CountTextTokensResponse; /** * Verifies a CountTextTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta.CountTextTokensResponse; /** * Creates a plain object from a CountTextTokensResponse message. Also converts values to other types if specified. * @param message CountTextTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta.CountTextTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace v1beta2. */ namespace v1beta2 { /** Properties of a CitationMetadata. */ interface ICitationMetadata { /** CitationMetadata citationSources */ citationSources?: (google.ai.generativelanguage.v1beta2.ICitationSource[]|null); } /** Represents a CitationMetadata. */ class CitationMetadata implements ICitationMetadata { /** * Constructs a new CitationMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ICitationMetadata); /** CitationMetadata citationSources. */ public citationSources: google.ai.generativelanguage.v1beta2.ICitationSource[]; /** * Creates a new CitationMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CitationMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ICitationMetadata): google.ai.generativelanguage.v1beta2.CitationMetadata; /** * Encodes the specified CitationMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.CitationMetadata; /** * Decodes a CitationMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.CitationMetadata; /** * Verifies a CitationMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.CitationMetadata; /** * Creates a plain object from a CitationMetadata message. Also converts values to other types if specified. * @param message CitationMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.CitationMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationSource. */ interface ICitationSource { /** CitationSource startIndex */ startIndex?: (number|null); /** CitationSource endIndex */ endIndex?: (number|null); /** CitationSource uri */ uri?: (string|null); /** CitationSource license */ license?: (string|null); } /** Represents a CitationSource. */ class CitationSource implements ICitationSource { /** * Constructs a new CitationSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ICitationSource); /** CitationSource startIndex. */ public startIndex?: (number|null); /** CitationSource endIndex. */ public endIndex?: (number|null); /** CitationSource uri. */ public uri?: (string|null); /** CitationSource license. */ public license?: (string|null); /** * Creates a new CitationSource instance using the specified properties. * @param [properties] Properties to set * @returns CitationSource instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ICitationSource): google.ai.generativelanguage.v1beta2.CitationSource; /** * Encodes the specified CitationSource message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.CitationSource; /** * Decodes a CitationSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.CitationSource; /** * Verifies a CitationSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.CitationSource; /** * Creates a plain object from a CitationSource message. Also converts values to other types if specified. * @param message CitationSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.CitationSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a DiscussService */ class DiscussService extends $protobuf.rpc.Service { /** * Constructs a new DiscussService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new DiscussService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DiscussService; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateMessageResponse */ public generateMessage(request: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest, callback: google.ai.generativelanguage.v1beta2.DiscussService.GenerateMessageCallback): void; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @returns Promise */ public generateMessage(request: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest): Promise; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountMessageTokensResponse */ public countMessageTokens(request: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest, callback: google.ai.generativelanguage.v1beta2.DiscussService.CountMessageTokensCallback): void; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @returns Promise */ public countMessageTokens(request: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest): Promise; } namespace DiscussService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.DiscussService|generateMessage}. * @param error Error, if any * @param [response] GenerateMessageResponse */ type GenerateMessageCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.GenerateMessageResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.DiscussService|countMessageTokens}. * @param error Error, if any * @param [response] CountMessageTokensResponse */ type CountMessageTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.CountMessageTokensResponse) => void; } /** Properties of a GenerateMessageRequest. */ interface IGenerateMessageRequest { /** GenerateMessageRequest model */ model?: (string|null); /** GenerateMessageRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta2.IMessagePrompt|null); /** GenerateMessageRequest temperature */ temperature?: (number|null); /** GenerateMessageRequest candidateCount */ candidateCount?: (number|null); /** GenerateMessageRequest topP */ topP?: (number|null); /** GenerateMessageRequest topK */ topK?: (number|null); } /** Represents a GenerateMessageRequest. */ class GenerateMessageRequest implements IGenerateMessageRequest { /** * Constructs a new GenerateMessageRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest); /** GenerateMessageRequest model. */ public model: string; /** GenerateMessageRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta2.IMessagePrompt|null); /** GenerateMessageRequest temperature. */ public temperature?: (number|null); /** GenerateMessageRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateMessageRequest topP. */ public topP?: (number|null); /** GenerateMessageRequest topK. */ public topK?: (number|null); /** * Creates a new GenerateMessageRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest): google.ai.generativelanguage.v1beta2.GenerateMessageRequest; /** * Encodes the specified GenerateMessageRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.GenerateMessageRequest; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.GenerateMessageRequest; /** * Verifies a GenerateMessageRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.GenerateMessageRequest; /** * Creates a plain object from a GenerateMessageRequest message. Also converts values to other types if specified. * @param message GenerateMessageRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.GenerateMessageRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateMessageResponse. */ interface IGenerateMessageResponse { /** GenerateMessageResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta2.IMessage[]|null); /** GenerateMessageResponse messages */ messages?: (google.ai.generativelanguage.v1beta2.IMessage[]|null); /** GenerateMessageResponse filters */ filters?: (google.ai.generativelanguage.v1beta2.IContentFilter[]|null); } /** Represents a GenerateMessageResponse. */ class GenerateMessageResponse implements IGenerateMessageResponse { /** * Constructs a new GenerateMessageResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IGenerateMessageResponse); /** GenerateMessageResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta2.IMessage[]; /** GenerateMessageResponse messages. */ public messages: google.ai.generativelanguage.v1beta2.IMessage[]; /** GenerateMessageResponse filters. */ public filters: google.ai.generativelanguage.v1beta2.IContentFilter[]; /** * Creates a new GenerateMessageResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IGenerateMessageResponse): google.ai.generativelanguage.v1beta2.GenerateMessageResponse; /** * Encodes the specified GenerateMessageResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.GenerateMessageResponse; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.GenerateMessageResponse; /** * Verifies a GenerateMessageResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.GenerateMessageResponse; /** * Creates a plain object from a GenerateMessageResponse message. Also converts values to other types if specified. * @param message GenerateMessageResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.GenerateMessageResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Message. */ interface IMessage { /** Message author */ author?: (string|null); /** Message content */ content?: (string|null); /** Message citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta2.ICitationMetadata|null); } /** Represents a Message. */ class Message implements IMessage { /** * Constructs a new Message. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IMessage); /** Message author. */ public author: string; /** Message content. */ public content: string; /** Message citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta2.ICitationMetadata|null); /** * Creates a new Message instance using the specified properties. * @param [properties] Properties to set * @returns Message instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IMessage): google.ai.generativelanguage.v1beta2.Message; /** * Encodes the specified Message message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Message message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Message message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.Message; /** * Decodes a Message message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.Message; /** * Verifies a Message message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Message message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Message */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.Message; /** * Creates a plain object from a Message message. Also converts values to other types if specified. * @param message Message * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.Message, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Message to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Message * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MessagePrompt. */ interface IMessagePrompt { /** MessagePrompt context */ context?: (string|null); /** MessagePrompt examples */ examples?: (google.ai.generativelanguage.v1beta2.IExample[]|null); /** MessagePrompt messages */ messages?: (google.ai.generativelanguage.v1beta2.IMessage[]|null); } /** Represents a MessagePrompt. */ class MessagePrompt implements IMessagePrompt { /** * Constructs a new MessagePrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IMessagePrompt); /** MessagePrompt context. */ public context: string; /** MessagePrompt examples. */ public examples: google.ai.generativelanguage.v1beta2.IExample[]; /** MessagePrompt messages. */ public messages: google.ai.generativelanguage.v1beta2.IMessage[]; /** * Creates a new MessagePrompt instance using the specified properties. * @param [properties] Properties to set * @returns MessagePrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IMessagePrompt): google.ai.generativelanguage.v1beta2.MessagePrompt; /** * Encodes the specified MessagePrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MessagePrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MessagePrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.MessagePrompt; /** * Decodes a MessagePrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.MessagePrompt; /** * Verifies a MessagePrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MessagePrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MessagePrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.MessagePrompt; /** * Creates a plain object from a MessagePrompt message. Also converts values to other types if specified. * @param message MessagePrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.MessagePrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MessagePrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MessagePrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Example. */ interface IExample { /** Example input */ input?: (google.ai.generativelanguage.v1beta2.IMessage|null); /** Example output */ output?: (google.ai.generativelanguage.v1beta2.IMessage|null); } /** Represents an Example. */ class Example implements IExample { /** * Constructs a new Example. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IExample); /** Example input. */ public input?: (google.ai.generativelanguage.v1beta2.IMessage|null); /** Example output. */ public output?: (google.ai.generativelanguage.v1beta2.IMessage|null); /** * Creates a new Example instance using the specified properties. * @param [properties] Properties to set * @returns Example instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IExample): google.ai.generativelanguage.v1beta2.Example; /** * Encodes the specified Example message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Example message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Example message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.Example; /** * Decodes an Example message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.Example; /** * Verifies an Example message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Example message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Example */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.Example; /** * Creates a plain object from an Example message. Also converts values to other types if specified. * @param message Example * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.Example, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Example to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Example * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensRequest. */ interface ICountMessageTokensRequest { /** CountMessageTokensRequest model */ model?: (string|null); /** CountMessageTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta2.IMessagePrompt|null); } /** Represents a CountMessageTokensRequest. */ class CountMessageTokensRequest implements ICountMessageTokensRequest { /** * Constructs a new CountMessageTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest); /** CountMessageTokensRequest model. */ public model: string; /** CountMessageTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta2.IMessagePrompt|null); /** * Creates a new CountMessageTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest): google.ai.generativelanguage.v1beta2.CountMessageTokensRequest; /** * Encodes the specified CountMessageTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.CountMessageTokensRequest; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.CountMessageTokensRequest; /** * Verifies a CountMessageTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.CountMessageTokensRequest; /** * Creates a plain object from a CountMessageTokensRequest message. Also converts values to other types if specified. * @param message CountMessageTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.CountMessageTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensResponse. */ interface ICountMessageTokensResponse { /** CountMessageTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountMessageTokensResponse. */ class CountMessageTokensResponse implements ICountMessageTokensResponse { /** * Constructs a new CountMessageTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ICountMessageTokensResponse); /** CountMessageTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountMessageTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ICountMessageTokensResponse): google.ai.generativelanguage.v1beta2.CountMessageTokensResponse; /** * Encodes the specified CountMessageTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.CountMessageTokensResponse; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.CountMessageTokensResponse; /** * Verifies a CountMessageTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.CountMessageTokensResponse; /** * Creates a plain object from a CountMessageTokensResponse message. Also converts values to other types if specified. * @param message CountMessageTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.CountMessageTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** HarmCategory enum. */ enum HarmCategory { HARM_CATEGORY_UNSPECIFIED = 0, HARM_CATEGORY_DEROGATORY = 1, HARM_CATEGORY_TOXICITY = 2, HARM_CATEGORY_VIOLENCE = 3, HARM_CATEGORY_SEXUAL = 4, HARM_CATEGORY_MEDICAL = 5, HARM_CATEGORY_DANGEROUS = 6 } /** Properties of a ContentFilter. */ interface IContentFilter { /** ContentFilter reason */ reason?: (google.ai.generativelanguage.v1beta2.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta2.ContentFilter.BlockedReason|null); /** ContentFilter message */ message?: (string|null); } /** Represents a ContentFilter. */ class ContentFilter implements IContentFilter { /** * Constructs a new ContentFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IContentFilter); /** ContentFilter reason. */ public reason: (google.ai.generativelanguage.v1beta2.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta2.ContentFilter.BlockedReason); /** ContentFilter message. */ public message?: (string|null); /** * Creates a new ContentFilter instance using the specified properties. * @param [properties] Properties to set * @returns ContentFilter instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IContentFilter): google.ai.generativelanguage.v1beta2.ContentFilter; /** * Encodes the specified ContentFilter message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.ContentFilter; /** * Decodes a ContentFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.ContentFilter; /** * Verifies a ContentFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.ContentFilter; /** * Creates a plain object from a ContentFilter message. Also converts values to other types if specified. * @param message ContentFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.ContentFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ContentFilter { /** BlockedReason enum. */ enum BlockedReason { BLOCKED_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } /** Properties of a SafetyFeedback. */ interface ISafetyFeedback { /** SafetyFeedback rating */ rating?: (google.ai.generativelanguage.v1beta2.ISafetyRating|null); /** SafetyFeedback setting */ setting?: (google.ai.generativelanguage.v1beta2.ISafetySetting|null); } /** Represents a SafetyFeedback. */ class SafetyFeedback implements ISafetyFeedback { /** * Constructs a new SafetyFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ISafetyFeedback); /** SafetyFeedback rating. */ public rating?: (google.ai.generativelanguage.v1beta2.ISafetyRating|null); /** SafetyFeedback setting. */ public setting?: (google.ai.generativelanguage.v1beta2.ISafetySetting|null); /** * Creates a new SafetyFeedback instance using the specified properties. * @param [properties] Properties to set * @returns SafetyFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ISafetyFeedback): google.ai.generativelanguage.v1beta2.SafetyFeedback; /** * Encodes the specified SafetyFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.SafetyFeedback; /** * Decodes a SafetyFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.SafetyFeedback; /** * Verifies a SafetyFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.SafetyFeedback; /** * Creates a plain object from a SafetyFeedback message. Also converts values to other types if specified. * @param message SafetyFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.SafetyFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SafetyRating. */ interface ISafetyRating { /** SafetyRating category */ category?: (google.ai.generativelanguage.v1beta2.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta2.HarmCategory|null); /** SafetyRating probability */ probability?: (google.ai.generativelanguage.v1beta2.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta2.SafetyRating.HarmProbability|null); } /** Represents a SafetyRating. */ class SafetyRating implements ISafetyRating { /** * Constructs a new SafetyRating. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ISafetyRating); /** SafetyRating category. */ public category: (google.ai.generativelanguage.v1beta2.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta2.HarmCategory); /** SafetyRating probability. */ public probability: (google.ai.generativelanguage.v1beta2.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta2.SafetyRating.HarmProbability); /** * Creates a new SafetyRating instance using the specified properties. * @param [properties] Properties to set * @returns SafetyRating instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ISafetyRating): google.ai.generativelanguage.v1beta2.SafetyRating; /** * Encodes the specified SafetyRating message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyRating message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyRating message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.SafetyRating; /** * Decodes a SafetyRating message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.SafetyRating; /** * Verifies a SafetyRating message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyRating message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyRating */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.SafetyRating; /** * Creates a plain object from a SafetyRating message. Also converts values to other types if specified. * @param message SafetyRating * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.SafetyRating, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyRating to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyRating * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetyRating { /** HarmProbability enum. */ enum HarmProbability { HARM_PROBABILITY_UNSPECIFIED = 0, NEGLIGIBLE = 1, LOW = 2, MEDIUM = 3, HIGH = 4 } } /** Properties of a SafetySetting. */ interface ISafetySetting { /** SafetySetting category */ category?: (google.ai.generativelanguage.v1beta2.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta2.HarmCategory|null); /** SafetySetting threshold */ threshold?: (google.ai.generativelanguage.v1beta2.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta2.SafetySetting.HarmBlockThreshold|null); } /** Represents a SafetySetting. */ class SafetySetting implements ISafetySetting { /** * Constructs a new SafetySetting. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ISafetySetting); /** SafetySetting category. */ public category: (google.ai.generativelanguage.v1beta2.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta2.HarmCategory); /** SafetySetting threshold. */ public threshold: (google.ai.generativelanguage.v1beta2.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta2.SafetySetting.HarmBlockThreshold); /** * Creates a new SafetySetting instance using the specified properties. * @param [properties] Properties to set * @returns SafetySetting instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ISafetySetting): google.ai.generativelanguage.v1beta2.SafetySetting; /** * Encodes the specified SafetySetting message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetySetting message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetySetting message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.SafetySetting; /** * Decodes a SafetySetting message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.SafetySetting; /** * Verifies a SafetySetting message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetySetting message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetySetting */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.SafetySetting; /** * Creates a plain object from a SafetySetting message. Also converts values to other types if specified. * @param message SafetySetting * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.SafetySetting, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetySetting to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetySetting * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetySetting { /** HarmBlockThreshold enum. */ enum HarmBlockThreshold { HARM_BLOCK_THRESHOLD_UNSPECIFIED = 0, BLOCK_LOW_AND_ABOVE = 1, BLOCK_MEDIUM_AND_ABOVE = 2, BLOCK_ONLY_HIGH = 3 } } /** Properties of a Model. */ interface IModel { /** Model name */ name?: (string|null); /** Model baseModelId */ baseModelId?: (string|null); /** Model version */ version?: (string|null); /** Model displayName */ displayName?: (string|null); /** Model description */ description?: (string|null); /** Model inputTokenLimit */ inputTokenLimit?: (number|null); /** Model outputTokenLimit */ outputTokenLimit?: (number|null); /** Model supportedGenerationMethods */ supportedGenerationMethods?: (string[]|null); /** Model temperature */ temperature?: (number|null); /** Model topP */ topP?: (number|null); /** Model topK */ topK?: (number|null); } /** Represents a Model. */ class Model implements IModel { /** * Constructs a new Model. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IModel); /** Model name. */ public name: string; /** Model baseModelId. */ public baseModelId: string; /** Model version. */ public version: string; /** Model displayName. */ public displayName: string; /** Model description. */ public description: string; /** Model inputTokenLimit. */ public inputTokenLimit: number; /** Model outputTokenLimit. */ public outputTokenLimit: number; /** Model supportedGenerationMethods. */ public supportedGenerationMethods: string[]; /** Model temperature. */ public temperature?: (number|null); /** Model topP. */ public topP?: (number|null); /** Model topK. */ public topK?: (number|null); /** * Creates a new Model instance using the specified properties. * @param [properties] Properties to set * @returns Model instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IModel): google.ai.generativelanguage.v1beta2.Model; /** * Encodes the specified Model message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Model message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Model message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.Model; /** * Decodes a Model message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.Model; /** * Verifies a Model message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Model message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Model */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.Model; /** * Creates a plain object from a Model message. Also converts values to other types if specified. * @param message Model * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.Model, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Model to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Model * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a ModelService */ class ModelService extends $protobuf.rpc.Service { /** * Constructs a new ModelService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new ModelService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ModelService; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Model */ public getModel(request: google.ai.generativelanguage.v1beta2.IGetModelRequest, callback: google.ai.generativelanguage.v1beta2.ModelService.GetModelCallback): void; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @returns Promise */ public getModel(request: google.ai.generativelanguage.v1beta2.IGetModelRequest): Promise; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListModelsResponse */ public listModels(request: google.ai.generativelanguage.v1beta2.IListModelsRequest, callback: google.ai.generativelanguage.v1beta2.ModelService.ListModelsCallback): void; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @returns Promise */ public listModels(request: google.ai.generativelanguage.v1beta2.IListModelsRequest): Promise; } namespace ModelService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.ModelService|getModel}. * @param error Error, if any * @param [response] Model */ type GetModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.Model) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.ModelService|listModels}. * @param error Error, if any * @param [response] ListModelsResponse */ type ListModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.ListModelsResponse) => void; } /** Properties of a GetModelRequest. */ interface IGetModelRequest { /** GetModelRequest name */ name?: (string|null); } /** Represents a GetModelRequest. */ class GetModelRequest implements IGetModelRequest { /** * Constructs a new GetModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IGetModelRequest); /** GetModelRequest name. */ public name: string; /** * Creates a new GetModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IGetModelRequest): google.ai.generativelanguage.v1beta2.GetModelRequest; /** * Encodes the specified GetModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.GetModelRequest; /** * Decodes a GetModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.GetModelRequest; /** * Verifies a GetModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.GetModelRequest; /** * Creates a plain object from a GetModelRequest message. Also converts values to other types if specified. * @param message GetModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.GetModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsRequest. */ interface IListModelsRequest { /** ListModelsRequest pageSize */ pageSize?: (number|null); /** ListModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListModelsRequest. */ class ListModelsRequest implements IListModelsRequest { /** * Constructs a new ListModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IListModelsRequest); /** ListModelsRequest pageSize. */ public pageSize: number; /** ListModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IListModelsRequest): google.ai.generativelanguage.v1beta2.ListModelsRequest; /** * Encodes the specified ListModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.ListModelsRequest; /** * Decodes a ListModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.ListModelsRequest; /** * Verifies a ListModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.ListModelsRequest; /** * Creates a plain object from a ListModelsRequest message. Also converts values to other types if specified. * @param message ListModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.ListModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsResponse. */ interface IListModelsResponse { /** ListModelsResponse models */ models?: (google.ai.generativelanguage.v1beta2.IModel[]|null); /** ListModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListModelsResponse. */ class ListModelsResponse implements IListModelsResponse { /** * Constructs a new ListModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IListModelsResponse); /** ListModelsResponse models. */ public models: google.ai.generativelanguage.v1beta2.IModel[]; /** ListModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IListModelsResponse): google.ai.generativelanguage.v1beta2.ListModelsResponse; /** * Encodes the specified ListModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.ListModelsResponse; /** * Decodes a ListModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.ListModelsResponse; /** * Verifies a ListModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.ListModelsResponse; /** * Creates a plain object from a ListModelsResponse message. Also converts values to other types if specified. * @param message ListModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.ListModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a TextService */ class TextService extends $protobuf.rpc.Service { /** * Constructs a new TextService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new TextService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): TextService; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateTextResponse */ public generateText(request: google.ai.generativelanguage.v1beta2.IGenerateTextRequest, callback: google.ai.generativelanguage.v1beta2.TextService.GenerateTextCallback): void; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @returns Promise */ public generateText(request: google.ai.generativelanguage.v1beta2.IGenerateTextRequest): Promise; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedTextResponse */ public embedText(request: google.ai.generativelanguage.v1beta2.IEmbedTextRequest, callback: google.ai.generativelanguage.v1beta2.TextService.EmbedTextCallback): void; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @returns Promise */ public embedText(request: google.ai.generativelanguage.v1beta2.IEmbedTextRequest): Promise; } namespace TextService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.TextService|generateText}. * @param error Error, if any * @param [response] GenerateTextResponse */ type GenerateTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.GenerateTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta2.TextService|embedText}. * @param error Error, if any * @param [response] EmbedTextResponse */ type EmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta2.EmbedTextResponse) => void; } /** Properties of a GenerateTextRequest. */ interface IGenerateTextRequest { /** GenerateTextRequest model */ model?: (string|null); /** GenerateTextRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta2.ITextPrompt|null); /** GenerateTextRequest temperature */ temperature?: (number|null); /** GenerateTextRequest candidateCount */ candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerateTextRequest topP */ topP?: (number|null); /** GenerateTextRequest topK */ topK?: (number|null); /** GenerateTextRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1beta2.ISafetySetting[]|null); /** GenerateTextRequest stopSequences */ stopSequences?: (string[]|null); } /** Represents a GenerateTextRequest. */ class GenerateTextRequest implements IGenerateTextRequest { /** * Constructs a new GenerateTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IGenerateTextRequest); /** GenerateTextRequest model. */ public model: string; /** GenerateTextRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta2.ITextPrompt|null); /** GenerateTextRequest temperature. */ public temperature?: (number|null); /** GenerateTextRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerateTextRequest topP. */ public topP?: (number|null); /** GenerateTextRequest topK. */ public topK?: (number|null); /** GenerateTextRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1beta2.ISafetySetting[]; /** GenerateTextRequest stopSequences. */ public stopSequences: string[]; /** * Creates a new GenerateTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IGenerateTextRequest): google.ai.generativelanguage.v1beta2.GenerateTextRequest; /** * Encodes the specified GenerateTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.GenerateTextRequest; /** * Decodes a GenerateTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.GenerateTextRequest; /** * Verifies a GenerateTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.GenerateTextRequest; /** * Creates a plain object from a GenerateTextRequest message. Also converts values to other types if specified. * @param message GenerateTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.GenerateTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateTextResponse. */ interface IGenerateTextResponse { /** GenerateTextResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta2.ITextCompletion[]|null); /** GenerateTextResponse filters */ filters?: (google.ai.generativelanguage.v1beta2.IContentFilter[]|null); /** GenerateTextResponse safetyFeedback */ safetyFeedback?: (google.ai.generativelanguage.v1beta2.ISafetyFeedback[]|null); } /** Represents a GenerateTextResponse. */ class GenerateTextResponse implements IGenerateTextResponse { /** * Constructs a new GenerateTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IGenerateTextResponse); /** GenerateTextResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta2.ITextCompletion[]; /** GenerateTextResponse filters. */ public filters: google.ai.generativelanguage.v1beta2.IContentFilter[]; /** GenerateTextResponse safetyFeedback. */ public safetyFeedback: google.ai.generativelanguage.v1beta2.ISafetyFeedback[]; /** * Creates a new GenerateTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IGenerateTextResponse): google.ai.generativelanguage.v1beta2.GenerateTextResponse; /** * Encodes the specified GenerateTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.GenerateTextResponse; /** * Decodes a GenerateTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.GenerateTextResponse; /** * Verifies a GenerateTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.GenerateTextResponse; /** * Creates a plain object from a GenerateTextResponse message. Also converts values to other types if specified. * @param message GenerateTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.GenerateTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextPrompt. */ interface ITextPrompt { /** TextPrompt text */ text?: (string|null); } /** Represents a TextPrompt. */ class TextPrompt implements ITextPrompt { /** * Constructs a new TextPrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ITextPrompt); /** TextPrompt text. */ public text: string; /** * Creates a new TextPrompt instance using the specified properties. * @param [properties] Properties to set * @returns TextPrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ITextPrompt): google.ai.generativelanguage.v1beta2.TextPrompt; /** * Encodes the specified TextPrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextPrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextPrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.TextPrompt; /** * Decodes a TextPrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.TextPrompt; /** * Verifies a TextPrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextPrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextPrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.TextPrompt; /** * Creates a plain object from a TextPrompt message. Also converts values to other types if specified. * @param message TextPrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.TextPrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextPrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextPrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextCompletion. */ interface ITextCompletion { /** TextCompletion output */ output?: (string|null); /** TextCompletion safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta2.ISafetyRating[]|null); /** TextCompletion citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta2.ICitationMetadata|null); } /** Represents a TextCompletion. */ class TextCompletion implements ITextCompletion { /** * Constructs a new TextCompletion. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.ITextCompletion); /** TextCompletion output. */ public output: string; /** TextCompletion safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta2.ISafetyRating[]; /** TextCompletion citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta2.ICitationMetadata|null); /** * Creates a new TextCompletion instance using the specified properties. * @param [properties] Properties to set * @returns TextCompletion instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.ITextCompletion): google.ai.generativelanguage.v1beta2.TextCompletion; /** * Encodes the specified TextCompletion message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextCompletion message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextCompletion message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.TextCompletion; /** * Decodes a TextCompletion message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.TextCompletion; /** * Verifies a TextCompletion message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextCompletion message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextCompletion */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.TextCompletion; /** * Creates a plain object from a TextCompletion message. Also converts values to other types if specified. * @param message TextCompletion * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.TextCompletion, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextCompletion to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextCompletion * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextRequest. */ interface IEmbedTextRequest { /** EmbedTextRequest model */ model?: (string|null); /** EmbedTextRequest text */ text?: (string|null); } /** Represents an EmbedTextRequest. */ class EmbedTextRequest implements IEmbedTextRequest { /** * Constructs a new EmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IEmbedTextRequest); /** EmbedTextRequest model. */ public model: string; /** EmbedTextRequest text. */ public text: string; /** * Creates a new EmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IEmbedTextRequest): google.ai.generativelanguage.v1beta2.EmbedTextRequest; /** * Encodes the specified EmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.EmbedTextRequest; /** * Decodes an EmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.EmbedTextRequest; /** * Verifies an EmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.EmbedTextRequest; /** * Creates a plain object from an EmbedTextRequest message. Also converts values to other types if specified. * @param message EmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.EmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextResponse. */ interface IEmbedTextResponse { /** EmbedTextResponse embedding */ embedding?: (google.ai.generativelanguage.v1beta2.IEmbedding|null); } /** Represents an EmbedTextResponse. */ class EmbedTextResponse implements IEmbedTextResponse { /** * Constructs a new EmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IEmbedTextResponse); /** EmbedTextResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1beta2.IEmbedding|null); /** * Creates a new EmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IEmbedTextResponse): google.ai.generativelanguage.v1beta2.EmbedTextResponse; /** * Encodes the specified EmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.EmbedTextResponse; /** * Decodes an EmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.EmbedTextResponse; /** * Verifies an EmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.EmbedTextResponse; /** * Creates a plain object from an EmbedTextResponse message. Also converts values to other types if specified. * @param message EmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.EmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Embedding. */ interface IEmbedding { /** Embedding value */ value?: (number[]|null); } /** Represents an Embedding. */ class Embedding implements IEmbedding { /** * Constructs a new Embedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta2.IEmbedding); /** Embedding value. */ public value: number[]; /** * Creates a new Embedding instance using the specified properties. * @param [properties] Properties to set * @returns Embedding instance */ public static create(properties?: google.ai.generativelanguage.v1beta2.IEmbedding): google.ai.generativelanguage.v1beta2.Embedding; /** * Encodes the specified Embedding message. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta2.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Embedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta2.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta2.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Embedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta2.Embedding; /** * Decodes an Embedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta2.Embedding; /** * Verifies an Embedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Embedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Embedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta2.Embedding; /** * Creates a plain object from an Embedding message. Also converts values to other types if specified. * @param message Embedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta2.Embedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Embedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Embedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace v1beta3. */ namespace v1beta3 { /** Properties of a CitationMetadata. */ interface ICitationMetadata { /** CitationMetadata citationSources */ citationSources?: (google.ai.generativelanguage.v1beta3.ICitationSource[]|null); } /** Represents a CitationMetadata. */ class CitationMetadata implements ICitationMetadata { /** * Constructs a new CitationMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICitationMetadata); /** CitationMetadata citationSources. */ public citationSources: google.ai.generativelanguage.v1beta3.ICitationSource[]; /** * Creates a new CitationMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CitationMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICitationMetadata): google.ai.generativelanguage.v1beta3.CitationMetadata; /** * Encodes the specified CitationMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CitationMetadata.verify|verify} messages. * @param message CitationMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICitationMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CitationMetadata; /** * Decodes a CitationMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CitationMetadata; /** * Verifies a CitationMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CitationMetadata; /** * Creates a plain object from a CitationMetadata message. Also converts values to other types if specified. * @param message CitationMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CitationMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CitationSource. */ interface ICitationSource { /** CitationSource startIndex */ startIndex?: (number|null); /** CitationSource endIndex */ endIndex?: (number|null); /** CitationSource uri */ uri?: (string|null); /** CitationSource license */ license?: (string|null); } /** Represents a CitationSource. */ class CitationSource implements ICitationSource { /** * Constructs a new CitationSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICitationSource); /** CitationSource startIndex. */ public startIndex?: (number|null); /** CitationSource endIndex. */ public endIndex?: (number|null); /** CitationSource uri. */ public uri?: (string|null); /** CitationSource license. */ public license?: (string|null); /** * Creates a new CitationSource instance using the specified properties. * @param [properties] Properties to set * @returns CitationSource instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICitationSource): google.ai.generativelanguage.v1beta3.CitationSource; /** * Encodes the specified CitationSource message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CitationSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CitationSource.verify|verify} messages. * @param message CitationSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICitationSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CitationSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CitationSource; /** * Decodes a CitationSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CitationSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CitationSource; /** * Verifies a CitationSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CitationSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CitationSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CitationSource; /** * Creates a plain object from a CitationSource message. Also converts values to other types if specified. * @param message CitationSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CitationSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CitationSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CitationSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a DiscussService */ class DiscussService extends $protobuf.rpc.Service { /** * Constructs a new DiscussService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new DiscussService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): DiscussService; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateMessageResponse */ public generateMessage(request: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest, callback: google.ai.generativelanguage.v1beta3.DiscussService.GenerateMessageCallback): void; /** * Calls GenerateMessage. * @param request GenerateMessageRequest message or plain object * @returns Promise */ public generateMessage(request: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest): Promise; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountMessageTokensResponse */ public countMessageTokens(request: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest, callback: google.ai.generativelanguage.v1beta3.DiscussService.CountMessageTokensCallback): void; /** * Calls CountMessageTokens. * @param request CountMessageTokensRequest message or plain object * @returns Promise */ public countMessageTokens(request: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest): Promise; } namespace DiscussService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.DiscussService|generateMessage}. * @param error Error, if any * @param [response] GenerateMessageResponse */ type GenerateMessageCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.GenerateMessageResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.DiscussService|countMessageTokens}. * @param error Error, if any * @param [response] CountMessageTokensResponse */ type CountMessageTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.CountMessageTokensResponse) => void; } /** Properties of a GenerateMessageRequest. */ interface IGenerateMessageRequest { /** GenerateMessageRequest model */ model?: (string|null); /** GenerateMessageRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta3.IMessagePrompt|null); /** GenerateMessageRequest temperature */ temperature?: (number|null); /** GenerateMessageRequest candidateCount */ candidateCount?: (number|null); /** GenerateMessageRequest topP */ topP?: (number|null); /** GenerateMessageRequest topK */ topK?: (number|null); } /** Represents a GenerateMessageRequest. */ class GenerateMessageRequest implements IGenerateMessageRequest { /** * Constructs a new GenerateMessageRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest); /** GenerateMessageRequest model. */ public model: string; /** GenerateMessageRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta3.IMessagePrompt|null); /** GenerateMessageRequest temperature. */ public temperature?: (number|null); /** GenerateMessageRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateMessageRequest topP. */ public topP?: (number|null); /** GenerateMessageRequest topK. */ public topK?: (number|null); /** * Creates a new GenerateMessageRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest): google.ai.generativelanguage.v1beta3.GenerateMessageRequest; /** * Encodes the specified GenerateMessageRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateMessageRequest.verify|verify} messages. * @param message GenerateMessageRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGenerateMessageRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GenerateMessageRequest; /** * Decodes a GenerateMessageRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GenerateMessageRequest; /** * Verifies a GenerateMessageRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GenerateMessageRequest; /** * Creates a plain object from a GenerateMessageRequest message. Also converts values to other types if specified. * @param message GenerateMessageRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GenerateMessageRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateMessageResponse. */ interface IGenerateMessageResponse { /** GenerateMessageResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta3.IMessage[]|null); /** GenerateMessageResponse messages */ messages?: (google.ai.generativelanguage.v1beta3.IMessage[]|null); /** GenerateMessageResponse filters */ filters?: (google.ai.generativelanguage.v1beta3.IContentFilter[]|null); } /** Represents a GenerateMessageResponse. */ class GenerateMessageResponse implements IGenerateMessageResponse { /** * Constructs a new GenerateMessageResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGenerateMessageResponse); /** GenerateMessageResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta3.IMessage[]; /** GenerateMessageResponse messages. */ public messages: google.ai.generativelanguage.v1beta3.IMessage[]; /** GenerateMessageResponse filters. */ public filters: google.ai.generativelanguage.v1beta3.IContentFilter[]; /** * Creates a new GenerateMessageResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateMessageResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGenerateMessageResponse): google.ai.generativelanguage.v1beta3.GenerateMessageResponse; /** * Encodes the specified GenerateMessageResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateMessageResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateMessageResponse.verify|verify} messages. * @param message GenerateMessageResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGenerateMessageResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GenerateMessageResponse; /** * Decodes a GenerateMessageResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateMessageResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GenerateMessageResponse; /** * Verifies a GenerateMessageResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateMessageResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateMessageResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GenerateMessageResponse; /** * Creates a plain object from a GenerateMessageResponse message. Also converts values to other types if specified. * @param message GenerateMessageResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GenerateMessageResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateMessageResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateMessageResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Message. */ interface IMessage { /** Message author */ author?: (string|null); /** Message content */ content?: (string|null); /** Message citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta3.ICitationMetadata|null); } /** Represents a Message. */ class Message implements IMessage { /** * Constructs a new Message. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IMessage); /** Message author. */ public author: string; /** Message content. */ public content: string; /** Message citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta3.ICitationMetadata|null); /** * Creates a new Message instance using the specified properties. * @param [properties] Properties to set * @returns Message instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IMessage): google.ai.generativelanguage.v1beta3.Message; /** * Encodes the specified Message message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Message message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Message.verify|verify} messages. * @param message Message message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IMessage, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Message message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Message; /** * Decodes a Message message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Message * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Message; /** * Verifies a Message message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Message message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Message */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Message; /** * Creates a plain object from a Message message. Also converts values to other types if specified. * @param message Message * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Message, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Message to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Message * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MessagePrompt. */ interface IMessagePrompt { /** MessagePrompt context */ context?: (string|null); /** MessagePrompt examples */ examples?: (google.ai.generativelanguage.v1beta3.IExample[]|null); /** MessagePrompt messages */ messages?: (google.ai.generativelanguage.v1beta3.IMessage[]|null); } /** Represents a MessagePrompt. */ class MessagePrompt implements IMessagePrompt { /** * Constructs a new MessagePrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IMessagePrompt); /** MessagePrompt context. */ public context: string; /** MessagePrompt examples. */ public examples: google.ai.generativelanguage.v1beta3.IExample[]; /** MessagePrompt messages. */ public messages: google.ai.generativelanguage.v1beta3.IMessage[]; /** * Creates a new MessagePrompt instance using the specified properties. * @param [properties] Properties to set * @returns MessagePrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IMessagePrompt): google.ai.generativelanguage.v1beta3.MessagePrompt; /** * Encodes the specified MessagePrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MessagePrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.MessagePrompt.verify|verify} messages. * @param message MessagePrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IMessagePrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MessagePrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.MessagePrompt; /** * Decodes a MessagePrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MessagePrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.MessagePrompt; /** * Verifies a MessagePrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MessagePrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MessagePrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.MessagePrompt; /** * Creates a plain object from a MessagePrompt message. Also converts values to other types if specified. * @param message MessagePrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.MessagePrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MessagePrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MessagePrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Example. */ interface IExample { /** Example input */ input?: (google.ai.generativelanguage.v1beta3.IMessage|null); /** Example output */ output?: (google.ai.generativelanguage.v1beta3.IMessage|null); } /** Represents an Example. */ class Example implements IExample { /** * Constructs a new Example. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IExample); /** Example input. */ public input?: (google.ai.generativelanguage.v1beta3.IMessage|null); /** Example output. */ public output?: (google.ai.generativelanguage.v1beta3.IMessage|null); /** * Creates a new Example instance using the specified properties. * @param [properties] Properties to set * @returns Example instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IExample): google.ai.generativelanguage.v1beta3.Example; /** * Encodes the specified Example message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Example message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Example.verify|verify} messages. * @param message Example message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Example message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Example; /** * Decodes an Example message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Example * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Example; /** * Verifies an Example message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Example message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Example */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Example; /** * Creates a plain object from an Example message. Also converts values to other types if specified. * @param message Example * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Example, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Example to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Example * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensRequest. */ interface ICountMessageTokensRequest { /** CountMessageTokensRequest model */ model?: (string|null); /** CountMessageTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta3.IMessagePrompt|null); } /** Represents a CountMessageTokensRequest. */ class CountMessageTokensRequest implements ICountMessageTokensRequest { /** * Constructs a new CountMessageTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest); /** CountMessageTokensRequest model. */ public model: string; /** CountMessageTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta3.IMessagePrompt|null); /** * Creates a new CountMessageTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest): google.ai.generativelanguage.v1beta3.CountMessageTokensRequest; /** * Encodes the specified CountMessageTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountMessageTokensRequest.verify|verify} messages. * @param message CountMessageTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICountMessageTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CountMessageTokensRequest; /** * Decodes a CountMessageTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CountMessageTokensRequest; /** * Verifies a CountMessageTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CountMessageTokensRequest; /** * Creates a plain object from a CountMessageTokensRequest message. Also converts values to other types if specified. * @param message CountMessageTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CountMessageTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountMessageTokensResponse. */ interface ICountMessageTokensResponse { /** CountMessageTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountMessageTokensResponse. */ class CountMessageTokensResponse implements ICountMessageTokensResponse { /** * Constructs a new CountMessageTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICountMessageTokensResponse); /** CountMessageTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountMessageTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountMessageTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICountMessageTokensResponse): google.ai.generativelanguage.v1beta3.CountMessageTokensResponse; /** * Encodes the specified CountMessageTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountMessageTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountMessageTokensResponse.verify|verify} messages. * @param message CountMessageTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICountMessageTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CountMessageTokensResponse; /** * Decodes a CountMessageTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountMessageTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CountMessageTokensResponse; /** * Verifies a CountMessageTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountMessageTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountMessageTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CountMessageTokensResponse; /** * Creates a plain object from a CountMessageTokensResponse message. Also converts values to other types if specified. * @param message CountMessageTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CountMessageTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountMessageTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountMessageTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** HarmCategory enum. */ enum HarmCategory { HARM_CATEGORY_UNSPECIFIED = 0, HARM_CATEGORY_DEROGATORY = 1, HARM_CATEGORY_TOXICITY = 2, HARM_CATEGORY_VIOLENCE = 3, HARM_CATEGORY_SEXUAL = 4, HARM_CATEGORY_MEDICAL = 5, HARM_CATEGORY_DANGEROUS = 6 } /** Properties of a ContentFilter. */ interface IContentFilter { /** ContentFilter reason */ reason?: (google.ai.generativelanguage.v1beta3.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta3.ContentFilter.BlockedReason|null); /** ContentFilter message */ message?: (string|null); } /** Represents a ContentFilter. */ class ContentFilter implements IContentFilter { /** * Constructs a new ContentFilter. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IContentFilter); /** ContentFilter reason. */ public reason: (google.ai.generativelanguage.v1beta3.ContentFilter.BlockedReason|keyof typeof google.ai.generativelanguage.v1beta3.ContentFilter.BlockedReason); /** ContentFilter message. */ public message?: (string|null); /** * Creates a new ContentFilter instance using the specified properties. * @param [properties] Properties to set * @returns ContentFilter instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IContentFilter): google.ai.generativelanguage.v1beta3.ContentFilter; /** * Encodes the specified ContentFilter message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ContentFilter message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ContentFilter.verify|verify} messages. * @param message ContentFilter message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IContentFilter, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ContentFilter message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ContentFilter; /** * Decodes a ContentFilter message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ContentFilter * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ContentFilter; /** * Verifies a ContentFilter message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ContentFilter message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ContentFilter */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ContentFilter; /** * Creates a plain object from a ContentFilter message. Also converts values to other types if specified. * @param message ContentFilter * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ContentFilter, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ContentFilter to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ContentFilter * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ContentFilter { /** BlockedReason enum. */ enum BlockedReason { BLOCKED_REASON_UNSPECIFIED = 0, SAFETY = 1, OTHER = 2 } } /** Properties of a SafetyFeedback. */ interface ISafetyFeedback { /** SafetyFeedback rating */ rating?: (google.ai.generativelanguage.v1beta3.ISafetyRating|null); /** SafetyFeedback setting */ setting?: (google.ai.generativelanguage.v1beta3.ISafetySetting|null); } /** Represents a SafetyFeedback. */ class SafetyFeedback implements ISafetyFeedback { /** * Constructs a new SafetyFeedback. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ISafetyFeedback); /** SafetyFeedback rating. */ public rating?: (google.ai.generativelanguage.v1beta3.ISafetyRating|null); /** SafetyFeedback setting. */ public setting?: (google.ai.generativelanguage.v1beta3.ISafetySetting|null); /** * Creates a new SafetyFeedback instance using the specified properties. * @param [properties] Properties to set * @returns SafetyFeedback instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ISafetyFeedback): google.ai.generativelanguage.v1beta3.SafetyFeedback; /** * Encodes the specified SafetyFeedback message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyFeedback message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetyFeedback.verify|verify} messages. * @param message SafetyFeedback message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ISafetyFeedback, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyFeedback message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.SafetyFeedback; /** * Decodes a SafetyFeedback message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyFeedback * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.SafetyFeedback; /** * Verifies a SafetyFeedback message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyFeedback message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyFeedback */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.SafetyFeedback; /** * Creates a plain object from a SafetyFeedback message. Also converts values to other types if specified. * @param message SafetyFeedback * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.SafetyFeedback, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyFeedback to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyFeedback * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a SafetyRating. */ interface ISafetyRating { /** SafetyRating category */ category?: (google.ai.generativelanguage.v1beta3.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta3.HarmCategory|null); /** SafetyRating probability */ probability?: (google.ai.generativelanguage.v1beta3.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta3.SafetyRating.HarmProbability|null); } /** Represents a SafetyRating. */ class SafetyRating implements ISafetyRating { /** * Constructs a new SafetyRating. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ISafetyRating); /** SafetyRating category. */ public category: (google.ai.generativelanguage.v1beta3.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta3.HarmCategory); /** SafetyRating probability. */ public probability: (google.ai.generativelanguage.v1beta3.SafetyRating.HarmProbability|keyof typeof google.ai.generativelanguage.v1beta3.SafetyRating.HarmProbability); /** * Creates a new SafetyRating instance using the specified properties. * @param [properties] Properties to set * @returns SafetyRating instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ISafetyRating): google.ai.generativelanguage.v1beta3.SafetyRating; /** * Encodes the specified SafetyRating message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetyRating message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetyRating.verify|verify} messages. * @param message SafetyRating message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ISafetyRating, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetyRating message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.SafetyRating; /** * Decodes a SafetyRating message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetyRating * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.SafetyRating; /** * Verifies a SafetyRating message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetyRating message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetyRating */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.SafetyRating; /** * Creates a plain object from a SafetyRating message. Also converts values to other types if specified. * @param message SafetyRating * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.SafetyRating, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetyRating to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetyRating * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetyRating { /** HarmProbability enum. */ enum HarmProbability { HARM_PROBABILITY_UNSPECIFIED = 0, NEGLIGIBLE = 1, LOW = 2, MEDIUM = 3, HIGH = 4 } } /** Properties of a SafetySetting. */ interface ISafetySetting { /** SafetySetting category */ category?: (google.ai.generativelanguage.v1beta3.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta3.HarmCategory|null); /** SafetySetting threshold */ threshold?: (google.ai.generativelanguage.v1beta3.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta3.SafetySetting.HarmBlockThreshold|null); } /** Represents a SafetySetting. */ class SafetySetting implements ISafetySetting { /** * Constructs a new SafetySetting. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ISafetySetting); /** SafetySetting category. */ public category: (google.ai.generativelanguage.v1beta3.HarmCategory|keyof typeof google.ai.generativelanguage.v1beta3.HarmCategory); /** SafetySetting threshold. */ public threshold: (google.ai.generativelanguage.v1beta3.SafetySetting.HarmBlockThreshold|keyof typeof google.ai.generativelanguage.v1beta3.SafetySetting.HarmBlockThreshold); /** * Creates a new SafetySetting instance using the specified properties. * @param [properties] Properties to set * @returns SafetySetting instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ISafetySetting): google.ai.generativelanguage.v1beta3.SafetySetting; /** * Encodes the specified SafetySetting message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SafetySetting message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.SafetySetting.verify|verify} messages. * @param message SafetySetting message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ISafetySetting, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SafetySetting message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.SafetySetting; /** * Decodes a SafetySetting message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SafetySetting * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.SafetySetting; /** * Verifies a SafetySetting message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SafetySetting message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SafetySetting */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.SafetySetting; /** * Creates a plain object from a SafetySetting message. Also converts values to other types if specified. * @param message SafetySetting * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.SafetySetting, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SafetySetting to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SafetySetting * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SafetySetting { /** HarmBlockThreshold enum. */ enum HarmBlockThreshold { HARM_BLOCK_THRESHOLD_UNSPECIFIED = 0, BLOCK_LOW_AND_ABOVE = 1, BLOCK_MEDIUM_AND_ABOVE = 2, BLOCK_ONLY_HIGH = 3, BLOCK_NONE = 4 } } /** Properties of a Model. */ interface IModel { /** Model name */ name?: (string|null); /** Model baseModelId */ baseModelId?: (string|null); /** Model version */ version?: (string|null); /** Model displayName */ displayName?: (string|null); /** Model description */ description?: (string|null); /** Model inputTokenLimit */ inputTokenLimit?: (number|null); /** Model outputTokenLimit */ outputTokenLimit?: (number|null); /** Model supportedGenerationMethods */ supportedGenerationMethods?: (string[]|null); /** Model temperature */ temperature?: (number|null); /** Model topP */ topP?: (number|null); /** Model topK */ topK?: (number|null); } /** Represents a Model. */ class Model implements IModel { /** * Constructs a new Model. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IModel); /** Model name. */ public name: string; /** Model baseModelId. */ public baseModelId: string; /** Model version. */ public version: string; /** Model displayName. */ public displayName: string; /** Model description. */ public description: string; /** Model inputTokenLimit. */ public inputTokenLimit: number; /** Model outputTokenLimit. */ public outputTokenLimit: number; /** Model supportedGenerationMethods. */ public supportedGenerationMethods: string[]; /** Model temperature. */ public temperature?: (number|null); /** Model topP. */ public topP?: (number|null); /** Model topK. */ public topK?: (number|null); /** * Creates a new Model instance using the specified properties. * @param [properties] Properties to set * @returns Model instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IModel): google.ai.generativelanguage.v1beta3.Model; /** * Encodes the specified Model message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Model message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Model.verify|verify} messages. * @param message Model message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Model message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Model; /** * Decodes a Model message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Model * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Model; /** * Verifies a Model message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Model message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Model */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Model; /** * Creates a plain object from a Model message. Also converts values to other types if specified. * @param message Model * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Model, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Model to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Model * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a ModelService */ class ModelService extends $protobuf.rpc.Service { /** * Constructs a new ModelService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new ModelService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): ModelService; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Model */ public getModel(request: google.ai.generativelanguage.v1beta3.IGetModelRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.GetModelCallback): void; /** * Calls GetModel. * @param request GetModelRequest message or plain object * @returns Promise */ public getModel(request: google.ai.generativelanguage.v1beta3.IGetModelRequest): Promise; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListModelsResponse */ public listModels(request: google.ai.generativelanguage.v1beta3.IListModelsRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.ListModelsCallback): void; /** * Calls ListModels. * @param request ListModelsRequest message or plain object * @returns Promise */ public listModels(request: google.ai.generativelanguage.v1beta3.IListModelsRequest): Promise; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public getTunedModel(request: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.GetTunedModelCallback): void; /** * Calls GetTunedModel. * @param request GetTunedModelRequest message or plain object * @returns Promise */ public getTunedModel(request: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest): Promise; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListTunedModelsResponse */ public listTunedModels(request: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.ListTunedModelsCallback): void; /** * Calls ListTunedModels. * @param request ListTunedModelsRequest message or plain object * @returns Promise */ public listTunedModels(request: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest): Promise; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public createTunedModel(request: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.CreateTunedModelCallback): void; /** * Calls CreateTunedModel. * @param request CreateTunedModelRequest message or plain object * @returns Promise */ public createTunedModel(request: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest): Promise; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and TunedModel */ public updateTunedModel(request: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.UpdateTunedModelCallback): void; /** * Calls UpdateTunedModel. * @param request UpdateTunedModelRequest message or plain object * @returns Promise */ public updateTunedModel(request: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest): Promise; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteTunedModel(request: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest, callback: google.ai.generativelanguage.v1beta3.ModelService.DeleteTunedModelCallback): void; /** * Calls DeleteTunedModel. * @param request DeleteTunedModelRequest message or plain object * @returns Promise */ public deleteTunedModel(request: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest): Promise; } namespace ModelService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|getModel}. * @param error Error, if any * @param [response] Model */ type GetModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.Model) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|listModels}. * @param error Error, if any * @param [response] ListModelsResponse */ type ListModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.ListModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|getTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type GetTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|listTunedModels}. * @param error Error, if any * @param [response] ListTunedModelsResponse */ type ListTunedModelsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.ListTunedModelsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|createTunedModel}. * @param error Error, if any * @param [response] Operation */ type CreateTunedModelCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|updateTunedModel}. * @param error Error, if any * @param [response] TunedModel */ type UpdateTunedModelCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.TunedModel) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.ModelService|deleteTunedModel}. * @param error Error, if any * @param [response] Empty */ type DeleteTunedModelCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; } /** Properties of a GetModelRequest. */ interface IGetModelRequest { /** GetModelRequest name */ name?: (string|null); } /** Represents a GetModelRequest. */ class GetModelRequest implements IGetModelRequest { /** * Constructs a new GetModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGetModelRequest); /** GetModelRequest name. */ public name: string; /** * Creates a new GetModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGetModelRequest): google.ai.generativelanguage.v1beta3.GetModelRequest; /** * Encodes the specified GetModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetModelRequest.verify|verify} messages. * @param message GetModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGetModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GetModelRequest; /** * Decodes a GetModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GetModelRequest; /** * Verifies a GetModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GetModelRequest; /** * Creates a plain object from a GetModelRequest message. Also converts values to other types if specified. * @param message GetModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GetModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsRequest. */ interface IListModelsRequest { /** ListModelsRequest pageSize */ pageSize?: (number|null); /** ListModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListModelsRequest. */ class ListModelsRequest implements IListModelsRequest { /** * Constructs a new ListModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListModelsRequest); /** ListModelsRequest pageSize. */ public pageSize: number; /** ListModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListModelsRequest): google.ai.generativelanguage.v1beta3.ListModelsRequest; /** * Encodes the specified ListModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListModelsRequest.verify|verify} messages. * @param message ListModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListModelsRequest; /** * Decodes a ListModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListModelsRequest; /** * Verifies a ListModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListModelsRequest; /** * Creates a plain object from a ListModelsRequest message. Also converts values to other types if specified. * @param message ListModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListModelsResponse. */ interface IListModelsResponse { /** ListModelsResponse models */ models?: (google.ai.generativelanguage.v1beta3.IModel[]|null); /** ListModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListModelsResponse. */ class ListModelsResponse implements IListModelsResponse { /** * Constructs a new ListModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListModelsResponse); /** ListModelsResponse models. */ public models: google.ai.generativelanguage.v1beta3.IModel[]; /** ListModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListModelsResponse): google.ai.generativelanguage.v1beta3.ListModelsResponse; /** * Encodes the specified ListModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListModelsResponse.verify|verify} messages. * @param message ListModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListModelsResponse; /** * Decodes a ListModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListModelsResponse; /** * Verifies a ListModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListModelsResponse; /** * Creates a plain object from a ListModelsResponse message. Also converts values to other types if specified. * @param message ListModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetTunedModelRequest. */ interface IGetTunedModelRequest { /** GetTunedModelRequest name */ name?: (string|null); } /** Represents a GetTunedModelRequest. */ class GetTunedModelRequest implements IGetTunedModelRequest { /** * Constructs a new GetTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest); /** GetTunedModelRequest name. */ public name: string; /** * Creates a new GetTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest): google.ai.generativelanguage.v1beta3.GetTunedModelRequest; /** * Encodes the specified GetTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetTunedModelRequest.verify|verify} messages. * @param message GetTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGetTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GetTunedModelRequest; /** * Decodes a GetTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GetTunedModelRequest; /** * Verifies a GetTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GetTunedModelRequest; /** * Creates a plain object from a GetTunedModelRequest message. Also converts values to other types if specified. * @param message GetTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GetTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsRequest. */ interface IListTunedModelsRequest { /** ListTunedModelsRequest pageSize */ pageSize?: (number|null); /** ListTunedModelsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListTunedModelsRequest. */ class ListTunedModelsRequest implements IListTunedModelsRequest { /** * Constructs a new ListTunedModelsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest); /** ListTunedModelsRequest pageSize. */ public pageSize: number; /** ListTunedModelsRequest pageToken. */ public pageToken: string; /** * Creates a new ListTunedModelsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest): google.ai.generativelanguage.v1beta3.ListTunedModelsRequest; /** * Encodes the specified ListTunedModelsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListTunedModelsRequest.verify|verify} messages. * @param message ListTunedModelsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListTunedModelsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListTunedModelsRequest; /** * Decodes a ListTunedModelsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListTunedModelsRequest; /** * Verifies a ListTunedModelsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListTunedModelsRequest; /** * Creates a plain object from a ListTunedModelsRequest message. Also converts values to other types if specified. * @param message ListTunedModelsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListTunedModelsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListTunedModelsResponse. */ interface IListTunedModelsResponse { /** ListTunedModelsResponse tunedModels */ tunedModels?: (google.ai.generativelanguage.v1beta3.ITunedModel[]|null); /** ListTunedModelsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListTunedModelsResponse. */ class ListTunedModelsResponse implements IListTunedModelsResponse { /** * Constructs a new ListTunedModelsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListTunedModelsResponse); /** ListTunedModelsResponse tunedModels. */ public tunedModels: google.ai.generativelanguage.v1beta3.ITunedModel[]; /** ListTunedModelsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListTunedModelsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListTunedModelsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListTunedModelsResponse): google.ai.generativelanguage.v1beta3.ListTunedModelsResponse; /** * Encodes the specified ListTunedModelsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListTunedModelsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListTunedModelsResponse.verify|verify} messages. * @param message ListTunedModelsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListTunedModelsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListTunedModelsResponse; /** * Decodes a ListTunedModelsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListTunedModelsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListTunedModelsResponse; /** * Verifies a ListTunedModelsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListTunedModelsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListTunedModelsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListTunedModelsResponse; /** * Creates a plain object from a ListTunedModelsResponse message. Also converts values to other types if specified. * @param message ListTunedModelsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListTunedModelsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListTunedModelsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListTunedModelsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelRequest. */ interface ICreateTunedModelRequest { /** CreateTunedModelRequest tunedModelId */ tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1beta3.ITunedModel|null); } /** Represents a CreateTunedModelRequest. */ class CreateTunedModelRequest implements ICreateTunedModelRequest { /** * Constructs a new CreateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest); /** CreateTunedModelRequest tunedModelId. */ public tunedModelId?: (string|null); /** CreateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1beta3.ITunedModel|null); /** * Creates a new CreateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest): google.ai.generativelanguage.v1beta3.CreateTunedModelRequest; /** * Encodes the specified CreateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreateTunedModelRequest.verify|verify} messages. * @param message CreateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICreateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CreateTunedModelRequest; /** * Decodes a CreateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CreateTunedModelRequest; /** * Verifies a CreateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CreateTunedModelRequest; /** * Creates a plain object from a CreateTunedModelRequest message. Also converts values to other types if specified. * @param message CreateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CreateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CreateTunedModelMetadata. */ interface ICreateTunedModelMetadata { /** CreateTunedModelMetadata tunedModel */ tunedModel?: (string|null); /** CreateTunedModelMetadata totalSteps */ totalSteps?: (number|null); /** CreateTunedModelMetadata completedSteps */ completedSteps?: (number|null); /** CreateTunedModelMetadata completedPercent */ completedPercent?: (number|null); /** CreateTunedModelMetadata snapshots */ snapshots?: (google.ai.generativelanguage.v1beta3.ITuningSnapshot[]|null); } /** Represents a CreateTunedModelMetadata. */ class CreateTunedModelMetadata implements ICreateTunedModelMetadata { /** * Constructs a new CreateTunedModelMetadata. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICreateTunedModelMetadata); /** CreateTunedModelMetadata tunedModel. */ public tunedModel: string; /** CreateTunedModelMetadata totalSteps. */ public totalSteps: number; /** CreateTunedModelMetadata completedSteps. */ public completedSteps: number; /** CreateTunedModelMetadata completedPercent. */ public completedPercent: number; /** CreateTunedModelMetadata snapshots. */ public snapshots: google.ai.generativelanguage.v1beta3.ITuningSnapshot[]; /** * Creates a new CreateTunedModelMetadata instance using the specified properties. * @param [properties] Properties to set * @returns CreateTunedModelMetadata instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICreateTunedModelMetadata): google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata; /** * Encodes the specified CreateTunedModelMetadata message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreateTunedModelMetadata message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata.verify|verify} messages. * @param message CreateTunedModelMetadata message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICreateTunedModelMetadata, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata; /** * Decodes a CreateTunedModelMetadata message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreateTunedModelMetadata * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata; /** * Verifies a CreateTunedModelMetadata message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreateTunedModelMetadata message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreateTunedModelMetadata */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata; /** * Creates a plain object from a CreateTunedModelMetadata message. Also converts values to other types if specified. * @param message CreateTunedModelMetadata * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CreateTunedModelMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreateTunedModelMetadata to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreateTunedModelMetadata * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdateTunedModelRequest. */ interface IUpdateTunedModelRequest { /** UpdateTunedModelRequest tunedModel */ tunedModel?: (google.ai.generativelanguage.v1beta3.ITunedModel|null); /** UpdateTunedModelRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdateTunedModelRequest. */ class UpdateTunedModelRequest implements IUpdateTunedModelRequest { /** * Constructs a new UpdateTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest); /** UpdateTunedModelRequest tunedModel. */ public tunedModel?: (google.ai.generativelanguage.v1beta3.ITunedModel|null); /** UpdateTunedModelRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdateTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdateTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest): google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest; /** * Encodes the specified UpdateTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdateTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest.verify|verify} messages. * @param message UpdateTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IUpdateTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest; /** * Decodes an UpdateTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdateTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest; /** * Verifies an UpdateTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdateTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdateTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest; /** * Creates a plain object from an UpdateTunedModelRequest message. Also converts values to other types if specified. * @param message UpdateTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.UpdateTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdateTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdateTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteTunedModelRequest. */ interface IDeleteTunedModelRequest { /** DeleteTunedModelRequest name */ name?: (string|null); } /** Represents a DeleteTunedModelRequest. */ class DeleteTunedModelRequest implements IDeleteTunedModelRequest { /** * Constructs a new DeleteTunedModelRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest); /** DeleteTunedModelRequest name. */ public name: string; /** * Creates a new DeleteTunedModelRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteTunedModelRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest): google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest; /** * Encodes the specified DeleteTunedModelRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteTunedModelRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest.verify|verify} messages. * @param message DeleteTunedModelRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IDeleteTunedModelRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest; /** * Decodes a DeleteTunedModelRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteTunedModelRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest; /** * Verifies a DeleteTunedModelRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteTunedModelRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteTunedModelRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest; /** * Creates a plain object from a DeleteTunedModelRequest message. Also converts values to other types if specified. * @param message DeleteTunedModelRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.DeleteTunedModelRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteTunedModelRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteTunedModelRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TunedModel. */ interface ITunedModel { /** TunedModel tunedModelSource */ tunedModelSource?: (google.ai.generativelanguage.v1beta3.ITunedModelSource|null); /** TunedModel baseModel */ baseModel?: (string|null); /** TunedModel name */ name?: (string|null); /** TunedModel displayName */ displayName?: (string|null); /** TunedModel description */ description?: (string|null); /** TunedModel temperature */ temperature?: (number|null); /** TunedModel topP */ topP?: (number|null); /** TunedModel topK */ topK?: (number|null); /** TunedModel state */ state?: (google.ai.generativelanguage.v1beta3.TunedModel.State|keyof typeof google.ai.generativelanguage.v1beta3.TunedModel.State|null); /** TunedModel createTime */ createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime */ updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask */ tuningTask?: (google.ai.generativelanguage.v1beta3.ITuningTask|null); } /** Represents a TunedModel. */ class TunedModel implements ITunedModel { /** * Constructs a new TunedModel. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITunedModel); /** TunedModel tunedModelSource. */ public tunedModelSource?: (google.ai.generativelanguage.v1beta3.ITunedModelSource|null); /** TunedModel baseModel. */ public baseModel?: (string|null); /** TunedModel name. */ public name: string; /** TunedModel displayName. */ public displayName: string; /** TunedModel description. */ public description: string; /** TunedModel temperature. */ public temperature?: (number|null); /** TunedModel topP. */ public topP?: (number|null); /** TunedModel topK. */ public topK?: (number|null); /** TunedModel state. */ public state: (google.ai.generativelanguage.v1beta3.TunedModel.State|keyof typeof google.ai.generativelanguage.v1beta3.TunedModel.State); /** TunedModel createTime. */ public createTime?: (google.protobuf.ITimestamp|null); /** TunedModel updateTime. */ public updateTime?: (google.protobuf.ITimestamp|null); /** TunedModel tuningTask. */ public tuningTask?: (google.ai.generativelanguage.v1beta3.ITuningTask|null); /** TunedModel sourceModel. */ public sourceModel?: ("tunedModelSource"|"baseModel"); /** * Creates a new TunedModel instance using the specified properties. * @param [properties] Properties to set * @returns TunedModel instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITunedModel): google.ai.generativelanguage.v1beta3.TunedModel; /** * Encodes the specified TunedModel message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModel message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TunedModel.verify|verify} messages. * @param message TunedModel message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITunedModel, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModel message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TunedModel; /** * Decodes a TunedModel message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModel * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TunedModel; /** * Verifies a TunedModel message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModel message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModel */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TunedModel; /** * Creates a plain object from a TunedModel message. Also converts values to other types if specified. * @param message TunedModel * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TunedModel, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModel to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModel * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace TunedModel { /** State enum. */ enum State { STATE_UNSPECIFIED = 0, CREATING = 1, ACTIVE = 2, FAILED = 3 } } /** Properties of a TunedModelSource. */ interface ITunedModelSource { /** TunedModelSource tunedModel */ tunedModel?: (string|null); /** TunedModelSource baseModel */ baseModel?: (string|null); } /** Represents a TunedModelSource. */ class TunedModelSource implements ITunedModelSource { /** * Constructs a new TunedModelSource. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITunedModelSource); /** TunedModelSource tunedModel. */ public tunedModel: string; /** TunedModelSource baseModel. */ public baseModel: string; /** * Creates a new TunedModelSource instance using the specified properties. * @param [properties] Properties to set * @returns TunedModelSource instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITunedModelSource): google.ai.generativelanguage.v1beta3.TunedModelSource; /** * Encodes the specified TunedModelSource message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TunedModelSource message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TunedModelSource.verify|verify} messages. * @param message TunedModelSource message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITunedModelSource, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TunedModelSource message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TunedModelSource; /** * Decodes a TunedModelSource message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TunedModelSource * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TunedModelSource; /** * Verifies a TunedModelSource message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TunedModelSource message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TunedModelSource */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TunedModelSource; /** * Creates a plain object from a TunedModelSource message. Also converts values to other types if specified. * @param message TunedModelSource * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TunedModelSource, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TunedModelSource to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TunedModelSource * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningTask. */ interface ITuningTask { /** TuningTask startTime */ startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime */ completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots */ snapshots?: (google.ai.generativelanguage.v1beta3.ITuningSnapshot[]|null); /** TuningTask trainingData */ trainingData?: (google.ai.generativelanguage.v1beta3.IDataset|null); /** TuningTask hyperparameters */ hyperparameters?: (google.ai.generativelanguage.v1beta3.IHyperparameters|null); } /** Represents a TuningTask. */ class TuningTask implements ITuningTask { /** * Constructs a new TuningTask. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITuningTask); /** TuningTask startTime. */ public startTime?: (google.protobuf.ITimestamp|null); /** TuningTask completeTime. */ public completeTime?: (google.protobuf.ITimestamp|null); /** TuningTask snapshots. */ public snapshots: google.ai.generativelanguage.v1beta3.ITuningSnapshot[]; /** TuningTask trainingData. */ public trainingData?: (google.ai.generativelanguage.v1beta3.IDataset|null); /** TuningTask hyperparameters. */ public hyperparameters?: (google.ai.generativelanguage.v1beta3.IHyperparameters|null); /** * Creates a new TuningTask instance using the specified properties. * @param [properties] Properties to set * @returns TuningTask instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITuningTask): google.ai.generativelanguage.v1beta3.TuningTask; /** * Encodes the specified TuningTask message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningTask message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningTask.verify|verify} messages. * @param message TuningTask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITuningTask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningTask message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TuningTask; /** * Decodes a TuningTask message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningTask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TuningTask; /** * Verifies a TuningTask message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningTask message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningTask */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TuningTask; /** * Creates a plain object from a TuningTask message. Also converts values to other types if specified. * @param message TuningTask * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TuningTask, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningTask to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningTask * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Hyperparameters. */ interface IHyperparameters { /** Hyperparameters epochCount */ epochCount?: (number|null); /** Hyperparameters batchSize */ batchSize?: (number|null); /** Hyperparameters learningRate */ learningRate?: (number|null); } /** Represents a Hyperparameters. */ class Hyperparameters implements IHyperparameters { /** * Constructs a new Hyperparameters. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IHyperparameters); /** Hyperparameters epochCount. */ public epochCount?: (number|null); /** Hyperparameters batchSize. */ public batchSize?: (number|null); /** Hyperparameters learningRate. */ public learningRate?: (number|null); /** * Creates a new Hyperparameters instance using the specified properties. * @param [properties] Properties to set * @returns Hyperparameters instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IHyperparameters): google.ai.generativelanguage.v1beta3.Hyperparameters; /** * Encodes the specified Hyperparameters message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Hyperparameters message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Hyperparameters.verify|verify} messages. * @param message Hyperparameters message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IHyperparameters, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Hyperparameters message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Hyperparameters; /** * Decodes a Hyperparameters message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Hyperparameters * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Hyperparameters; /** * Verifies a Hyperparameters message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Hyperparameters message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Hyperparameters */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Hyperparameters; /** * Creates a plain object from a Hyperparameters message. Also converts values to other types if specified. * @param message Hyperparameters * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Hyperparameters, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Hyperparameters to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Hyperparameters * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Dataset. */ interface IDataset { /** Dataset examples */ examples?: (google.ai.generativelanguage.v1beta3.ITuningExamples|null); } /** Represents a Dataset. */ class Dataset implements IDataset { /** * Constructs a new Dataset. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IDataset); /** Dataset examples. */ public examples?: (google.ai.generativelanguage.v1beta3.ITuningExamples|null); /** Dataset dataset. */ public dataset?: "examples"; /** * Creates a new Dataset instance using the specified properties. * @param [properties] Properties to set * @returns Dataset instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IDataset): google.ai.generativelanguage.v1beta3.Dataset; /** * Encodes the specified Dataset message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Dataset message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Dataset.verify|verify} messages. * @param message Dataset message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IDataset, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Dataset message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Dataset; /** * Decodes a Dataset message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Dataset * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Dataset; /** * Verifies a Dataset message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Dataset message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Dataset */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Dataset; /** * Creates a plain object from a Dataset message. Also converts values to other types if specified. * @param message Dataset * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Dataset, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Dataset to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Dataset * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExamples. */ interface ITuningExamples { /** TuningExamples examples */ examples?: (google.ai.generativelanguage.v1beta3.ITuningExample[]|null); } /** Represents a TuningExamples. */ class TuningExamples implements ITuningExamples { /** * Constructs a new TuningExamples. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITuningExamples); /** TuningExamples examples. */ public examples: google.ai.generativelanguage.v1beta3.ITuningExample[]; /** * Creates a new TuningExamples instance using the specified properties. * @param [properties] Properties to set * @returns TuningExamples instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITuningExamples): google.ai.generativelanguage.v1beta3.TuningExamples; /** * Encodes the specified TuningExamples message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExamples message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningExamples.verify|verify} messages. * @param message TuningExamples message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITuningExamples, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExamples message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TuningExamples; /** * Decodes a TuningExamples message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExamples * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TuningExamples; /** * Verifies a TuningExamples message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExamples message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExamples */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TuningExamples; /** * Creates a plain object from a TuningExamples message. Also converts values to other types if specified. * @param message TuningExamples * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TuningExamples, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExamples to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExamples * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningExample. */ interface ITuningExample { /** TuningExample textInput */ textInput?: (string|null); /** TuningExample output */ output?: (string|null); } /** Represents a TuningExample. */ class TuningExample implements ITuningExample { /** * Constructs a new TuningExample. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITuningExample); /** TuningExample textInput. */ public textInput?: (string|null); /** TuningExample output. */ public output: string; /** TuningExample modelInput. */ public modelInput?: "textInput"; /** * Creates a new TuningExample instance using the specified properties. * @param [properties] Properties to set * @returns TuningExample instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITuningExample): google.ai.generativelanguage.v1beta3.TuningExample; /** * Encodes the specified TuningExample message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningExample message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningExample.verify|verify} messages. * @param message TuningExample message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITuningExample, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningExample message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TuningExample; /** * Decodes a TuningExample message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningExample * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TuningExample; /** * Verifies a TuningExample message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningExample message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningExample */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TuningExample; /** * Creates a plain object from a TuningExample message. Also converts values to other types if specified. * @param message TuningExample * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TuningExample, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningExample to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningExample * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TuningSnapshot. */ interface ITuningSnapshot { /** TuningSnapshot step */ step?: (number|null); /** TuningSnapshot epoch */ epoch?: (number|null); /** TuningSnapshot meanLoss */ meanLoss?: (number|null); /** TuningSnapshot computeTime */ computeTime?: (google.protobuf.ITimestamp|null); } /** Represents a TuningSnapshot. */ class TuningSnapshot implements ITuningSnapshot { /** * Constructs a new TuningSnapshot. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITuningSnapshot); /** TuningSnapshot step. */ public step: number; /** TuningSnapshot epoch. */ public epoch: number; /** TuningSnapshot meanLoss. */ public meanLoss: number; /** TuningSnapshot computeTime. */ public computeTime?: (google.protobuf.ITimestamp|null); /** * Creates a new TuningSnapshot instance using the specified properties. * @param [properties] Properties to set * @returns TuningSnapshot instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITuningSnapshot): google.ai.generativelanguage.v1beta3.TuningSnapshot; /** * Encodes the specified TuningSnapshot message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TuningSnapshot message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TuningSnapshot.verify|verify} messages. * @param message TuningSnapshot message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITuningSnapshot, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TuningSnapshot message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TuningSnapshot; /** * Decodes a TuningSnapshot message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TuningSnapshot * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TuningSnapshot; /** * Verifies a TuningSnapshot message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TuningSnapshot message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TuningSnapshot */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TuningSnapshot; /** * Creates a plain object from a TuningSnapshot message. Also converts values to other types if specified. * @param message TuningSnapshot * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TuningSnapshot, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TuningSnapshot to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TuningSnapshot * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Permission. */ interface IPermission { /** Permission name */ name?: (string|null); /** Permission granteeType */ granteeType?: (google.ai.generativelanguage.v1beta3.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1beta3.Permission.GranteeType|null); /** Permission emailAddress */ emailAddress?: (string|null); /** Permission role */ role?: (google.ai.generativelanguage.v1beta3.Permission.Role|keyof typeof google.ai.generativelanguage.v1beta3.Permission.Role|null); } /** Represents a Permission. */ class Permission implements IPermission { /** * Constructs a new Permission. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IPermission); /** Permission name. */ public name: string; /** Permission granteeType. */ public granteeType?: (google.ai.generativelanguage.v1beta3.Permission.GranteeType|keyof typeof google.ai.generativelanguage.v1beta3.Permission.GranteeType|null); /** Permission emailAddress. */ public emailAddress?: (string|null); /** Permission role. */ public role?: (google.ai.generativelanguage.v1beta3.Permission.Role|keyof typeof google.ai.generativelanguage.v1beta3.Permission.Role|null); /** * Creates a new Permission instance using the specified properties. * @param [properties] Properties to set * @returns Permission instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IPermission): google.ai.generativelanguage.v1beta3.Permission; /** * Encodes the specified Permission message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Permission message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Permission.verify|verify} messages. * @param message Permission message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IPermission, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Permission message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Permission; /** * Decodes a Permission message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Permission * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Permission; /** * Verifies a Permission message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Permission message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Permission */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Permission; /** * Creates a plain object from a Permission message. Also converts values to other types if specified. * @param message Permission * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Permission, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Permission to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Permission * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Permission { /** GranteeType enum. */ enum GranteeType { GRANTEE_TYPE_UNSPECIFIED = 0, USER = 1, GROUP = 2, EVERYONE = 3 } /** Role enum. */ enum Role { ROLE_UNSPECIFIED = 0, OWNER = 1, WRITER = 2, READER = 3 } } /** Represents a PermissionService */ class PermissionService extends $protobuf.rpc.Service { /** * Constructs a new PermissionService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new PermissionService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): PermissionService; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public createPermission(request: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.CreatePermissionCallback): void; /** * Calls CreatePermission. * @param request CreatePermissionRequest message or plain object * @returns Promise */ public createPermission(request: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest): Promise; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public getPermission(request: google.ai.generativelanguage.v1beta3.IGetPermissionRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.GetPermissionCallback): void; /** * Calls GetPermission. * @param request GetPermissionRequest message or plain object * @returns Promise */ public getPermission(request: google.ai.generativelanguage.v1beta3.IGetPermissionRequest): Promise; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListPermissionsResponse */ public listPermissions(request: google.ai.generativelanguage.v1beta3.IListPermissionsRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.ListPermissionsCallback): void; /** * Calls ListPermissions. * @param request ListPermissionsRequest message or plain object * @returns Promise */ public listPermissions(request: google.ai.generativelanguage.v1beta3.IListPermissionsRequest): Promise; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Permission */ public updatePermission(request: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.UpdatePermissionCallback): void; /** * Calls UpdatePermission. * @param request UpdatePermissionRequest message or plain object * @returns Promise */ public updatePermission(request: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest): Promise; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deletePermission(request: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.DeletePermissionCallback): void; /** * Calls DeletePermission. * @param request DeletePermissionRequest message or plain object * @returns Promise */ public deletePermission(request: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest): Promise; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @param callback Node-style callback called with the error, if any, and TransferOwnershipResponse */ public transferOwnership(request: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest, callback: google.ai.generativelanguage.v1beta3.PermissionService.TransferOwnershipCallback): void; /** * Calls TransferOwnership. * @param request TransferOwnershipRequest message or plain object * @returns Promise */ public transferOwnership(request: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest): Promise; } namespace PermissionService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|createPermission}. * @param error Error, if any * @param [response] Permission */ type CreatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|getPermission}. * @param error Error, if any * @param [response] Permission */ type GetPermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|listPermissions}. * @param error Error, if any * @param [response] ListPermissionsResponse */ type ListPermissionsCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.ListPermissionsResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|updatePermission}. * @param error Error, if any * @param [response] Permission */ type UpdatePermissionCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.Permission) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|deletePermission}. * @param error Error, if any * @param [response] Empty */ type DeletePermissionCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.PermissionService|transferOwnership}. * @param error Error, if any * @param [response] TransferOwnershipResponse */ type TransferOwnershipCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.TransferOwnershipResponse) => void; } /** Properties of a CreatePermissionRequest. */ interface ICreatePermissionRequest { /** CreatePermissionRequest parent */ parent?: (string|null); /** CreatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1beta3.IPermission|null); } /** Represents a CreatePermissionRequest. */ class CreatePermissionRequest implements ICreatePermissionRequest { /** * Constructs a new CreatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest); /** CreatePermissionRequest parent. */ public parent: string; /** CreatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1beta3.IPermission|null); /** * Creates a new CreatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns CreatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest): google.ai.generativelanguage.v1beta3.CreatePermissionRequest; /** * Encodes the specified CreatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CreatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CreatePermissionRequest.verify|verify} messages. * @param message CreatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICreatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CreatePermissionRequest; /** * Decodes a CreatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CreatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CreatePermissionRequest; /** * Verifies a CreatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CreatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CreatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CreatePermissionRequest; /** * Creates a plain object from a CreatePermissionRequest message. Also converts values to other types if specified. * @param message CreatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CreatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CreatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CreatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetPermissionRequest. */ interface IGetPermissionRequest { /** GetPermissionRequest name */ name?: (string|null); } /** Represents a GetPermissionRequest. */ class GetPermissionRequest implements IGetPermissionRequest { /** * Constructs a new GetPermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGetPermissionRequest); /** GetPermissionRequest name. */ public name: string; /** * Creates a new GetPermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetPermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGetPermissionRequest): google.ai.generativelanguage.v1beta3.GetPermissionRequest; /** * Encodes the specified GetPermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetPermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GetPermissionRequest.verify|verify} messages. * @param message GetPermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGetPermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetPermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GetPermissionRequest; /** * Decodes a GetPermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetPermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GetPermissionRequest; /** * Verifies a GetPermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetPermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetPermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GetPermissionRequest; /** * Creates a plain object from a GetPermissionRequest message. Also converts values to other types if specified. * @param message GetPermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GetPermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetPermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetPermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsRequest. */ interface IListPermissionsRequest { /** ListPermissionsRequest parent */ parent?: (string|null); /** ListPermissionsRequest pageSize */ pageSize?: (number|null); /** ListPermissionsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListPermissionsRequest. */ class ListPermissionsRequest implements IListPermissionsRequest { /** * Constructs a new ListPermissionsRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListPermissionsRequest); /** ListPermissionsRequest parent. */ public parent: string; /** ListPermissionsRequest pageSize. */ public pageSize: number; /** ListPermissionsRequest pageToken. */ public pageToken: string; /** * Creates a new ListPermissionsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListPermissionsRequest): google.ai.generativelanguage.v1beta3.ListPermissionsRequest; /** * Encodes the specified ListPermissionsRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListPermissionsRequest.verify|verify} messages. * @param message ListPermissionsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListPermissionsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListPermissionsRequest; /** * Decodes a ListPermissionsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListPermissionsRequest; /** * Verifies a ListPermissionsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListPermissionsRequest; /** * Creates a plain object from a ListPermissionsRequest message. Also converts values to other types if specified. * @param message ListPermissionsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListPermissionsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListPermissionsResponse. */ interface IListPermissionsResponse { /** ListPermissionsResponse permissions */ permissions?: (google.ai.generativelanguage.v1beta3.IPermission[]|null); /** ListPermissionsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListPermissionsResponse. */ class ListPermissionsResponse implements IListPermissionsResponse { /** * Constructs a new ListPermissionsResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IListPermissionsResponse); /** ListPermissionsResponse permissions. */ public permissions: google.ai.generativelanguage.v1beta3.IPermission[]; /** ListPermissionsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListPermissionsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListPermissionsResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IListPermissionsResponse): google.ai.generativelanguage.v1beta3.ListPermissionsResponse; /** * Encodes the specified ListPermissionsResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListPermissionsResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.ListPermissionsResponse.verify|verify} messages. * @param message ListPermissionsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IListPermissionsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.ListPermissionsResponse; /** * Decodes a ListPermissionsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListPermissionsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.ListPermissionsResponse; /** * Verifies a ListPermissionsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListPermissionsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListPermissionsResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.ListPermissionsResponse; /** * Creates a plain object from a ListPermissionsResponse message. Also converts values to other types if specified. * @param message ListPermissionsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.ListPermissionsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListPermissionsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListPermissionsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an UpdatePermissionRequest. */ interface IUpdatePermissionRequest { /** UpdatePermissionRequest permission */ permission?: (google.ai.generativelanguage.v1beta3.IPermission|null); /** UpdatePermissionRequest updateMask */ updateMask?: (google.protobuf.IFieldMask|null); } /** Represents an UpdatePermissionRequest. */ class UpdatePermissionRequest implements IUpdatePermissionRequest { /** * Constructs a new UpdatePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest); /** UpdatePermissionRequest permission. */ public permission?: (google.ai.generativelanguage.v1beta3.IPermission|null); /** UpdatePermissionRequest updateMask. */ public updateMask?: (google.protobuf.IFieldMask|null); /** * Creates a new UpdatePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns UpdatePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest): google.ai.generativelanguage.v1beta3.UpdatePermissionRequest; /** * Encodes the specified UpdatePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UpdatePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.UpdatePermissionRequest.verify|verify} messages. * @param message UpdatePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IUpdatePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.UpdatePermissionRequest; /** * Decodes an UpdatePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UpdatePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.UpdatePermissionRequest; /** * Verifies an UpdatePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UpdatePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UpdatePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.UpdatePermissionRequest; /** * Creates a plain object from an UpdatePermissionRequest message. Also converts values to other types if specified. * @param message UpdatePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.UpdatePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UpdatePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UpdatePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeletePermissionRequest. */ interface IDeletePermissionRequest { /** DeletePermissionRequest name */ name?: (string|null); } /** Represents a DeletePermissionRequest. */ class DeletePermissionRequest implements IDeletePermissionRequest { /** * Constructs a new DeletePermissionRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest); /** DeletePermissionRequest name. */ public name: string; /** * Creates a new DeletePermissionRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeletePermissionRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest): google.ai.generativelanguage.v1beta3.DeletePermissionRequest; /** * Encodes the specified DeletePermissionRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeletePermissionRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.DeletePermissionRequest.verify|verify} messages. * @param message DeletePermissionRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IDeletePermissionRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.DeletePermissionRequest; /** * Decodes a DeletePermissionRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeletePermissionRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.DeletePermissionRequest; /** * Verifies a DeletePermissionRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeletePermissionRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeletePermissionRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.DeletePermissionRequest; /** * Creates a plain object from a DeletePermissionRequest message. Also converts values to other types if specified. * @param message DeletePermissionRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.DeletePermissionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeletePermissionRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeletePermissionRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipRequest. */ interface ITransferOwnershipRequest { /** TransferOwnershipRequest name */ name?: (string|null); /** TransferOwnershipRequest emailAddress */ emailAddress?: (string|null); } /** Represents a TransferOwnershipRequest. */ class TransferOwnershipRequest implements ITransferOwnershipRequest { /** * Constructs a new TransferOwnershipRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest); /** TransferOwnershipRequest name. */ public name: string; /** TransferOwnershipRequest emailAddress. */ public emailAddress: string; /** * Creates a new TransferOwnershipRequest instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest): google.ai.generativelanguage.v1beta3.TransferOwnershipRequest; /** * Encodes the specified TransferOwnershipRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TransferOwnershipRequest.verify|verify} messages. * @param message TransferOwnershipRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITransferOwnershipRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TransferOwnershipRequest; /** * Decodes a TransferOwnershipRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TransferOwnershipRequest; /** * Verifies a TransferOwnershipRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TransferOwnershipRequest; /** * Creates a plain object from a TransferOwnershipRequest message. Also converts values to other types if specified. * @param message TransferOwnershipRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TransferOwnershipRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TransferOwnershipResponse. */ interface ITransferOwnershipResponse { } /** Represents a TransferOwnershipResponse. */ class TransferOwnershipResponse implements ITransferOwnershipResponse { /** * Constructs a new TransferOwnershipResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITransferOwnershipResponse); /** * Creates a new TransferOwnershipResponse instance using the specified properties. * @param [properties] Properties to set * @returns TransferOwnershipResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITransferOwnershipResponse): google.ai.generativelanguage.v1beta3.TransferOwnershipResponse; /** * Encodes the specified TransferOwnershipResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TransferOwnershipResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TransferOwnershipResponse.verify|verify} messages. * @param message TransferOwnershipResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITransferOwnershipResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TransferOwnershipResponse; /** * Decodes a TransferOwnershipResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TransferOwnershipResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TransferOwnershipResponse; /** * Verifies a TransferOwnershipResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TransferOwnershipResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TransferOwnershipResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TransferOwnershipResponse; /** * Creates a plain object from a TransferOwnershipResponse message. Also converts values to other types if specified. * @param message TransferOwnershipResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TransferOwnershipResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TransferOwnershipResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TransferOwnershipResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Represents a TextService */ class TextService extends $protobuf.rpc.Service { /** * Constructs a new TextService service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new TextService service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): TextService; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and GenerateTextResponse */ public generateText(request: google.ai.generativelanguage.v1beta3.IGenerateTextRequest, callback: google.ai.generativelanguage.v1beta3.TextService.GenerateTextCallback): void; /** * Calls GenerateText. * @param request GenerateTextRequest message or plain object * @returns Promise */ public generateText(request: google.ai.generativelanguage.v1beta3.IGenerateTextRequest): Promise; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and EmbedTextResponse */ public embedText(request: google.ai.generativelanguage.v1beta3.IEmbedTextRequest, callback: google.ai.generativelanguage.v1beta3.TextService.EmbedTextCallback): void; /** * Calls EmbedText. * @param request EmbedTextRequest message or plain object * @returns Promise */ public embedText(request: google.ai.generativelanguage.v1beta3.IEmbedTextRequest): Promise; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @param callback Node-style callback called with the error, if any, and BatchEmbedTextResponse */ public batchEmbedText(request: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest, callback: google.ai.generativelanguage.v1beta3.TextService.BatchEmbedTextCallback): void; /** * Calls BatchEmbedText. * @param request BatchEmbedTextRequest message or plain object * @returns Promise */ public batchEmbedText(request: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest): Promise; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @param callback Node-style callback called with the error, if any, and CountTextTokensResponse */ public countTextTokens(request: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest, callback: google.ai.generativelanguage.v1beta3.TextService.CountTextTokensCallback): void; /** * Calls CountTextTokens. * @param request CountTextTokensRequest message or plain object * @returns Promise */ public countTextTokens(request: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest): Promise; } namespace TextService { /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.TextService|generateText}. * @param error Error, if any * @param [response] GenerateTextResponse */ type GenerateTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.GenerateTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.TextService|embedText}. * @param error Error, if any * @param [response] EmbedTextResponse */ type EmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.EmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.TextService|batchEmbedText}. * @param error Error, if any * @param [response] BatchEmbedTextResponse */ type BatchEmbedTextCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse) => void; /** * Callback as used by {@link google.ai.generativelanguage.v1beta3.TextService|countTextTokens}. * @param error Error, if any * @param [response] CountTextTokensResponse */ type CountTextTokensCallback = (error: (Error|null), response?: google.ai.generativelanguage.v1beta3.CountTextTokensResponse) => void; } /** Properties of a GenerateTextRequest. */ interface IGenerateTextRequest { /** GenerateTextRequest model */ model?: (string|null); /** GenerateTextRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta3.ITextPrompt|null); /** GenerateTextRequest temperature */ temperature?: (number|null); /** GenerateTextRequest candidateCount */ candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens */ maxOutputTokens?: (number|null); /** GenerateTextRequest topP */ topP?: (number|null); /** GenerateTextRequest topK */ topK?: (number|null); /** GenerateTextRequest safetySettings */ safetySettings?: (google.ai.generativelanguage.v1beta3.ISafetySetting[]|null); /** GenerateTextRequest stopSequences */ stopSequences?: (string[]|null); } /** Represents a GenerateTextRequest. */ class GenerateTextRequest implements IGenerateTextRequest { /** * Constructs a new GenerateTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGenerateTextRequest); /** GenerateTextRequest model. */ public model: string; /** GenerateTextRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta3.ITextPrompt|null); /** GenerateTextRequest temperature. */ public temperature?: (number|null); /** GenerateTextRequest candidateCount. */ public candidateCount?: (number|null); /** GenerateTextRequest maxOutputTokens. */ public maxOutputTokens?: (number|null); /** GenerateTextRequest topP. */ public topP?: (number|null); /** GenerateTextRequest topK. */ public topK?: (number|null); /** GenerateTextRequest safetySettings. */ public safetySettings: google.ai.generativelanguage.v1beta3.ISafetySetting[]; /** GenerateTextRequest stopSequences. */ public stopSequences: string[]; /** * Creates a new GenerateTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGenerateTextRequest): google.ai.generativelanguage.v1beta3.GenerateTextRequest; /** * Encodes the specified GenerateTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateTextRequest.verify|verify} messages. * @param message GenerateTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGenerateTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GenerateTextRequest; /** * Decodes a GenerateTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GenerateTextRequest; /** * Verifies a GenerateTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GenerateTextRequest; /** * Creates a plain object from a GenerateTextRequest message. Also converts values to other types if specified. * @param message GenerateTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GenerateTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GenerateTextResponse. */ interface IGenerateTextResponse { /** GenerateTextResponse candidates */ candidates?: (google.ai.generativelanguage.v1beta3.ITextCompletion[]|null); /** GenerateTextResponse filters */ filters?: (google.ai.generativelanguage.v1beta3.IContentFilter[]|null); /** GenerateTextResponse safetyFeedback */ safetyFeedback?: (google.ai.generativelanguage.v1beta3.ISafetyFeedback[]|null); } /** Represents a GenerateTextResponse. */ class GenerateTextResponse implements IGenerateTextResponse { /** * Constructs a new GenerateTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IGenerateTextResponse); /** GenerateTextResponse candidates. */ public candidates: google.ai.generativelanguage.v1beta3.ITextCompletion[]; /** GenerateTextResponse filters. */ public filters: google.ai.generativelanguage.v1beta3.IContentFilter[]; /** GenerateTextResponse safetyFeedback. */ public safetyFeedback: google.ai.generativelanguage.v1beta3.ISafetyFeedback[]; /** * Creates a new GenerateTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns GenerateTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IGenerateTextResponse): google.ai.generativelanguage.v1beta3.GenerateTextResponse; /** * Encodes the specified GenerateTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GenerateTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.GenerateTextResponse.verify|verify} messages. * @param message GenerateTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IGenerateTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GenerateTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.GenerateTextResponse; /** * Decodes a GenerateTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GenerateTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.GenerateTextResponse; /** * Verifies a GenerateTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GenerateTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GenerateTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.GenerateTextResponse; /** * Creates a plain object from a GenerateTextResponse message. Also converts values to other types if specified. * @param message GenerateTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.GenerateTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GenerateTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GenerateTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextPrompt. */ interface ITextPrompt { /** TextPrompt text */ text?: (string|null); } /** Represents a TextPrompt. */ class TextPrompt implements ITextPrompt { /** * Constructs a new TextPrompt. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITextPrompt); /** TextPrompt text. */ public text: string; /** * Creates a new TextPrompt instance using the specified properties. * @param [properties] Properties to set * @returns TextPrompt instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITextPrompt): google.ai.generativelanguage.v1beta3.TextPrompt; /** * Encodes the specified TextPrompt message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextPrompt message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TextPrompt.verify|verify} messages. * @param message TextPrompt message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITextPrompt, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextPrompt message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TextPrompt; /** * Decodes a TextPrompt message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextPrompt * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TextPrompt; /** * Verifies a TextPrompt message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextPrompt message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextPrompt */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TextPrompt; /** * Creates a plain object from a TextPrompt message. Also converts values to other types if specified. * @param message TextPrompt * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TextPrompt, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextPrompt to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextPrompt * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a TextCompletion. */ interface ITextCompletion { /** TextCompletion output */ output?: (string|null); /** TextCompletion safetyRatings */ safetyRatings?: (google.ai.generativelanguage.v1beta3.ISafetyRating[]|null); /** TextCompletion citationMetadata */ citationMetadata?: (google.ai.generativelanguage.v1beta3.ICitationMetadata|null); } /** Represents a TextCompletion. */ class TextCompletion implements ITextCompletion { /** * Constructs a new TextCompletion. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ITextCompletion); /** TextCompletion output. */ public output: string; /** TextCompletion safetyRatings. */ public safetyRatings: google.ai.generativelanguage.v1beta3.ISafetyRating[]; /** TextCompletion citationMetadata. */ public citationMetadata?: (google.ai.generativelanguage.v1beta3.ICitationMetadata|null); /** * Creates a new TextCompletion instance using the specified properties. * @param [properties] Properties to set * @returns TextCompletion instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ITextCompletion): google.ai.generativelanguage.v1beta3.TextCompletion; /** * Encodes the specified TextCompletion message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified TextCompletion message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.TextCompletion.verify|verify} messages. * @param message TextCompletion message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ITextCompletion, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a TextCompletion message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.TextCompletion; /** * Decodes a TextCompletion message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns TextCompletion * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.TextCompletion; /** * Verifies a TextCompletion message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a TextCompletion message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns TextCompletion */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.TextCompletion; /** * Creates a plain object from a TextCompletion message. Also converts values to other types if specified. * @param message TextCompletion * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.TextCompletion, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this TextCompletion to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for TextCompletion * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextRequest. */ interface IEmbedTextRequest { /** EmbedTextRequest model */ model?: (string|null); /** EmbedTextRequest text */ text?: (string|null); } /** Represents an EmbedTextRequest. */ class EmbedTextRequest implements IEmbedTextRequest { /** * Constructs a new EmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IEmbedTextRequest); /** EmbedTextRequest model. */ public model: string; /** EmbedTextRequest text. */ public text: string; /** * Creates a new EmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IEmbedTextRequest): google.ai.generativelanguage.v1beta3.EmbedTextRequest; /** * Encodes the specified EmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.EmbedTextRequest.verify|verify} messages. * @param message EmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.EmbedTextRequest; /** * Decodes an EmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.EmbedTextRequest; /** * Verifies an EmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.EmbedTextRequest; /** * Creates a plain object from an EmbedTextRequest message. Also converts values to other types if specified. * @param message EmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.EmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EmbedTextResponse. */ interface IEmbedTextResponse { /** EmbedTextResponse embedding */ embedding?: (google.ai.generativelanguage.v1beta3.IEmbedding|null); } /** Represents an EmbedTextResponse. */ class EmbedTextResponse implements IEmbedTextResponse { /** * Constructs a new EmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IEmbedTextResponse); /** EmbedTextResponse embedding. */ public embedding?: (google.ai.generativelanguage.v1beta3.IEmbedding|null); /** * Creates a new EmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns EmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IEmbedTextResponse): google.ai.generativelanguage.v1beta3.EmbedTextResponse; /** * Encodes the specified EmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.EmbedTextResponse.verify|verify} messages. * @param message EmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.EmbedTextResponse; /** * Decodes an EmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.EmbedTextResponse; /** * Verifies an EmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.EmbedTextResponse; /** * Creates a plain object from an EmbedTextResponse message. Also converts values to other types if specified. * @param message EmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.EmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextRequest. */ interface IBatchEmbedTextRequest { /** BatchEmbedTextRequest model */ model?: (string|null); /** BatchEmbedTextRequest texts */ texts?: (string[]|null); } /** Represents a BatchEmbedTextRequest. */ class BatchEmbedTextRequest implements IBatchEmbedTextRequest { /** * Constructs a new BatchEmbedTextRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest); /** BatchEmbedTextRequest model. */ public model: string; /** BatchEmbedTextRequest texts. */ public texts: string[]; /** * Creates a new BatchEmbedTextRequest instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest): google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest; /** * Encodes the specified BatchEmbedTextRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest.verify|verify} messages. * @param message BatchEmbedTextRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IBatchEmbedTextRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest; /** * Decodes a BatchEmbedTextRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest; /** * Verifies a BatchEmbedTextRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest; /** * Creates a plain object from a BatchEmbedTextRequest message. Also converts values to other types if specified. * @param message BatchEmbedTextRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.BatchEmbedTextRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a BatchEmbedTextResponse. */ interface IBatchEmbedTextResponse { /** BatchEmbedTextResponse embeddings */ embeddings?: (google.ai.generativelanguage.v1beta3.IEmbedding[]|null); } /** Represents a BatchEmbedTextResponse. */ class BatchEmbedTextResponse implements IBatchEmbedTextResponse { /** * Constructs a new BatchEmbedTextResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IBatchEmbedTextResponse); /** BatchEmbedTextResponse embeddings. */ public embeddings: google.ai.generativelanguage.v1beta3.IEmbedding[]; /** * Creates a new BatchEmbedTextResponse instance using the specified properties. * @param [properties] Properties to set * @returns BatchEmbedTextResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IBatchEmbedTextResponse): google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse; /** * Encodes the specified BatchEmbedTextResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified BatchEmbedTextResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse.verify|verify} messages. * @param message BatchEmbedTextResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IBatchEmbedTextResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse; /** * Decodes a BatchEmbedTextResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns BatchEmbedTextResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse; /** * Verifies a BatchEmbedTextResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a BatchEmbedTextResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns BatchEmbedTextResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse; /** * Creates a plain object from a BatchEmbedTextResponse message. Also converts values to other types if specified. * @param message BatchEmbedTextResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.BatchEmbedTextResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this BatchEmbedTextResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for BatchEmbedTextResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Embedding. */ interface IEmbedding { /** Embedding value */ value?: (number[]|null); } /** Represents an Embedding. */ class Embedding implements IEmbedding { /** * Constructs a new Embedding. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.IEmbedding); /** Embedding value. */ public value: number[]; /** * Creates a new Embedding instance using the specified properties. * @param [properties] Properties to set * @returns Embedding instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.IEmbedding): google.ai.generativelanguage.v1beta3.Embedding; /** * Encodes the specified Embedding message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Embedding message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.Embedding.verify|verify} messages. * @param message Embedding message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.IEmbedding, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Embedding message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.Embedding; /** * Decodes an Embedding message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Embedding * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.Embedding; /** * Verifies an Embedding message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Embedding message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Embedding */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.Embedding; /** * Creates a plain object from an Embedding message. Also converts values to other types if specified. * @param message Embedding * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.Embedding, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Embedding to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Embedding * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensRequest. */ interface ICountTextTokensRequest { /** CountTextTokensRequest model */ model?: (string|null); /** CountTextTokensRequest prompt */ prompt?: (google.ai.generativelanguage.v1beta3.ITextPrompt|null); } /** Represents a CountTextTokensRequest. */ class CountTextTokensRequest implements ICountTextTokensRequest { /** * Constructs a new CountTextTokensRequest. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest); /** CountTextTokensRequest model. */ public model: string; /** CountTextTokensRequest prompt. */ public prompt?: (google.ai.generativelanguage.v1beta3.ITextPrompt|null); /** * Creates a new CountTextTokensRequest instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensRequest instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest): google.ai.generativelanguage.v1beta3.CountTextTokensRequest; /** * Encodes the specified CountTextTokensRequest message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensRequest message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountTextTokensRequest.verify|verify} messages. * @param message CountTextTokensRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICountTextTokensRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CountTextTokensRequest; /** * Decodes a CountTextTokensRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CountTextTokensRequest; /** * Verifies a CountTextTokensRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensRequest */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CountTextTokensRequest; /** * Creates a plain object from a CountTextTokensRequest message. Also converts values to other types if specified. * @param message CountTextTokensRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CountTextTokensRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CountTextTokensResponse. */ interface ICountTextTokensResponse { /** CountTextTokensResponse tokenCount */ tokenCount?: (number|null); } /** Represents a CountTextTokensResponse. */ class CountTextTokensResponse implements ICountTextTokensResponse { /** * Constructs a new CountTextTokensResponse. * @param [properties] Properties to set */ constructor(properties?: google.ai.generativelanguage.v1beta3.ICountTextTokensResponse); /** CountTextTokensResponse tokenCount. */ public tokenCount: number; /** * Creates a new CountTextTokensResponse instance using the specified properties. * @param [properties] Properties to set * @returns CountTextTokensResponse instance */ public static create(properties?: google.ai.generativelanguage.v1beta3.ICountTextTokensResponse): google.ai.generativelanguage.v1beta3.CountTextTokensResponse; /** * Encodes the specified CountTextTokensResponse message. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.ai.generativelanguage.v1beta3.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CountTextTokensResponse message, length delimited. Does not implicitly {@link google.ai.generativelanguage.v1beta3.CountTextTokensResponse.verify|verify} messages. * @param message CountTextTokensResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.ai.generativelanguage.v1beta3.ICountTextTokensResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.ai.generativelanguage.v1beta3.CountTextTokensResponse; /** * Decodes a CountTextTokensResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CountTextTokensResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.ai.generativelanguage.v1beta3.CountTextTokensResponse; /** * Verifies a CountTextTokensResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CountTextTokensResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CountTextTokensResponse */ public static fromObject(object: { [k: string]: any }): google.ai.generativelanguage.v1beta3.CountTextTokensResponse; /** * Creates a plain object from a CountTextTokensResponse message. Also converts values to other types if specified. * @param message CountTextTokensResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.ai.generativelanguage.v1beta3.CountTextTokensResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CountTextTokensResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CountTextTokensResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } } } /** Namespace api. */ namespace api { /** FieldBehavior enum. */ enum FieldBehavior { FIELD_BEHAVIOR_UNSPECIFIED = 0, OPTIONAL = 1, REQUIRED = 2, OUTPUT_ONLY = 3, INPUT_ONLY = 4, IMMUTABLE = 5, UNORDERED_LIST = 6, NON_EMPTY_DEFAULT = 7, IDENTIFIER = 8 } /** Properties of a Http. */ interface IHttp { /** Http rules */ rules?: (google.api.IHttpRule[]|null); /** Http fullyDecodeReservedExpansion */ fullyDecodeReservedExpansion?: (boolean|null); } /** Represents a Http. */ class Http implements IHttp { /** * Constructs a new Http. * @param [properties] Properties to set */ constructor(properties?: google.api.IHttp); /** Http rules. */ public rules: google.api.IHttpRule[]; /** Http fullyDecodeReservedExpansion. */ public fullyDecodeReservedExpansion: boolean; /** * Creates a new Http instance using the specified properties. * @param [properties] Properties to set * @returns Http instance */ public static create(properties?: google.api.IHttp): google.api.Http; /** * Encodes the specified Http message. Does not implicitly {@link google.api.Http.verify|verify} messages. * @param message Http message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IHttp, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Http message, length delimited. Does not implicitly {@link google.api.Http.verify|verify} messages. * @param message Http message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IHttp, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Http message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Http * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Http; /** * Decodes a Http message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Http * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Http; /** * Verifies a Http message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Http message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Http */ public static fromObject(object: { [k: string]: any }): google.api.Http; /** * Creates a plain object from a Http message. Also converts values to other types if specified. * @param message Http * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.Http, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Http to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Http * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a HttpRule. */ interface IHttpRule { /** HttpRule selector */ selector?: (string|null); /** HttpRule get */ get?: (string|null); /** HttpRule put */ put?: (string|null); /** HttpRule post */ post?: (string|null); /** HttpRule delete */ "delete"?: (string|null); /** HttpRule patch */ patch?: (string|null); /** HttpRule custom */ custom?: (google.api.ICustomHttpPattern|null); /** HttpRule body */ body?: (string|null); /** HttpRule responseBody */ responseBody?: (string|null); /** HttpRule additionalBindings */ additionalBindings?: (google.api.IHttpRule[]|null); } /** Represents a HttpRule. */ class HttpRule implements IHttpRule { /** * Constructs a new HttpRule. * @param [properties] Properties to set */ constructor(properties?: google.api.IHttpRule); /** HttpRule selector. */ public selector: string; /** HttpRule get. */ public get?: (string|null); /** HttpRule put. */ public put?: (string|null); /** HttpRule post. */ public post?: (string|null); /** HttpRule delete. */ public delete?: (string|null); /** HttpRule patch. */ public patch?: (string|null); /** HttpRule custom. */ public custom?: (google.api.ICustomHttpPattern|null); /** HttpRule body. */ public body: string; /** HttpRule responseBody. */ public responseBody: string; /** HttpRule additionalBindings. */ public additionalBindings: google.api.IHttpRule[]; /** HttpRule pattern. */ public pattern?: ("get"|"put"|"post"|"delete"|"patch"|"custom"); /** * Creates a new HttpRule instance using the specified properties. * @param [properties] Properties to set * @returns HttpRule instance */ public static create(properties?: google.api.IHttpRule): google.api.HttpRule; /** * Encodes the specified HttpRule message. Does not implicitly {@link google.api.HttpRule.verify|verify} messages. * @param message HttpRule message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IHttpRule, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified HttpRule message, length delimited. Does not implicitly {@link google.api.HttpRule.verify|verify} messages. * @param message HttpRule message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IHttpRule, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a HttpRule message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns HttpRule * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.HttpRule; /** * Decodes a HttpRule message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns HttpRule * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.HttpRule; /** * Verifies a HttpRule message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a HttpRule message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns HttpRule */ public static fromObject(object: { [k: string]: any }): google.api.HttpRule; /** * Creates a plain object from a HttpRule message. Also converts values to other types if specified. * @param message HttpRule * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.HttpRule, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this HttpRule to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for HttpRule * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CustomHttpPattern. */ interface ICustomHttpPattern { /** CustomHttpPattern kind */ kind?: (string|null); /** CustomHttpPattern path */ path?: (string|null); } /** Represents a CustomHttpPattern. */ class CustomHttpPattern implements ICustomHttpPattern { /** * Constructs a new CustomHttpPattern. * @param [properties] Properties to set */ constructor(properties?: google.api.ICustomHttpPattern); /** CustomHttpPattern kind. */ public kind: string; /** CustomHttpPattern path. */ public path: string; /** * Creates a new CustomHttpPattern instance using the specified properties. * @param [properties] Properties to set * @returns CustomHttpPattern instance */ public static create(properties?: google.api.ICustomHttpPattern): google.api.CustomHttpPattern; /** * Encodes the specified CustomHttpPattern message. Does not implicitly {@link google.api.CustomHttpPattern.verify|verify} messages. * @param message CustomHttpPattern message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.ICustomHttpPattern, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CustomHttpPattern message, length delimited. Does not implicitly {@link google.api.CustomHttpPattern.verify|verify} messages. * @param message CustomHttpPattern message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.ICustomHttpPattern, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CustomHttpPattern message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CustomHttpPattern * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CustomHttpPattern; /** * Decodes a CustomHttpPattern message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CustomHttpPattern * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CustomHttpPattern; /** * Verifies a CustomHttpPattern message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CustomHttpPattern message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CustomHttpPattern */ public static fromObject(object: { [k: string]: any }): google.api.CustomHttpPattern; /** * Creates a plain object from a CustomHttpPattern message. Also converts values to other types if specified. * @param message CustomHttpPattern * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.CustomHttpPattern, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CustomHttpPattern to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CustomHttpPattern * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CommonLanguageSettings. */ interface ICommonLanguageSettings { /** CommonLanguageSettings referenceDocsUri */ referenceDocsUri?: (string|null); /** CommonLanguageSettings destinations */ destinations?: (google.api.ClientLibraryDestination[]|null); } /** Represents a CommonLanguageSettings. */ class CommonLanguageSettings implements ICommonLanguageSettings { /** * Constructs a new CommonLanguageSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.ICommonLanguageSettings); /** CommonLanguageSettings referenceDocsUri. */ public referenceDocsUri: string; /** CommonLanguageSettings destinations. */ public destinations: google.api.ClientLibraryDestination[]; /** * Creates a new CommonLanguageSettings instance using the specified properties. * @param [properties] Properties to set * @returns CommonLanguageSettings instance */ public static create(properties?: google.api.ICommonLanguageSettings): google.api.CommonLanguageSettings; /** * Encodes the specified CommonLanguageSettings message. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages. * @param message CommonLanguageSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CommonLanguageSettings message, length delimited. Does not implicitly {@link google.api.CommonLanguageSettings.verify|verify} messages. * @param message CommonLanguageSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.ICommonLanguageSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CommonLanguageSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CommonLanguageSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CommonLanguageSettings; /** * Decodes a CommonLanguageSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CommonLanguageSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CommonLanguageSettings; /** * Verifies a CommonLanguageSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CommonLanguageSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CommonLanguageSettings */ public static fromObject(object: { [k: string]: any }): google.api.CommonLanguageSettings; /** * Creates a plain object from a CommonLanguageSettings message. Also converts values to other types if specified. * @param message CommonLanguageSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.CommonLanguageSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CommonLanguageSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CommonLanguageSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ClientLibrarySettings. */ interface IClientLibrarySettings { /** ClientLibrarySettings version */ version?: (string|null); /** ClientLibrarySettings launchStage */ launchStage?: (google.api.LaunchStage|keyof typeof google.api.LaunchStage|null); /** ClientLibrarySettings restNumericEnums */ restNumericEnums?: (boolean|null); /** ClientLibrarySettings javaSettings */ javaSettings?: (google.api.IJavaSettings|null); /** ClientLibrarySettings cppSettings */ cppSettings?: (google.api.ICppSettings|null); /** ClientLibrarySettings phpSettings */ phpSettings?: (google.api.IPhpSettings|null); /** ClientLibrarySettings pythonSettings */ pythonSettings?: (google.api.IPythonSettings|null); /** ClientLibrarySettings nodeSettings */ nodeSettings?: (google.api.INodeSettings|null); /** ClientLibrarySettings dotnetSettings */ dotnetSettings?: (google.api.IDotnetSettings|null); /** ClientLibrarySettings rubySettings */ rubySettings?: (google.api.IRubySettings|null); /** ClientLibrarySettings goSettings */ goSettings?: (google.api.IGoSettings|null); } /** Represents a ClientLibrarySettings. */ class ClientLibrarySettings implements IClientLibrarySettings { /** * Constructs a new ClientLibrarySettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IClientLibrarySettings); /** ClientLibrarySettings version. */ public version: string; /** ClientLibrarySettings launchStage. */ public launchStage: (google.api.LaunchStage|keyof typeof google.api.LaunchStage); /** ClientLibrarySettings restNumericEnums. */ public restNumericEnums: boolean; /** ClientLibrarySettings javaSettings. */ public javaSettings?: (google.api.IJavaSettings|null); /** ClientLibrarySettings cppSettings. */ public cppSettings?: (google.api.ICppSettings|null); /** ClientLibrarySettings phpSettings. */ public phpSettings?: (google.api.IPhpSettings|null); /** ClientLibrarySettings pythonSettings. */ public pythonSettings?: (google.api.IPythonSettings|null); /** ClientLibrarySettings nodeSettings. */ public nodeSettings?: (google.api.INodeSettings|null); /** ClientLibrarySettings dotnetSettings. */ public dotnetSettings?: (google.api.IDotnetSettings|null); /** ClientLibrarySettings rubySettings. */ public rubySettings?: (google.api.IRubySettings|null); /** ClientLibrarySettings goSettings. */ public goSettings?: (google.api.IGoSettings|null); /** * Creates a new ClientLibrarySettings instance using the specified properties. * @param [properties] Properties to set * @returns ClientLibrarySettings instance */ public static create(properties?: google.api.IClientLibrarySettings): google.api.ClientLibrarySettings; /** * Encodes the specified ClientLibrarySettings message. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages. * @param message ClientLibrarySettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ClientLibrarySettings message, length delimited. Does not implicitly {@link google.api.ClientLibrarySettings.verify|verify} messages. * @param message ClientLibrarySettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IClientLibrarySettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ClientLibrarySettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ClientLibrarySettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ClientLibrarySettings; /** * Decodes a ClientLibrarySettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ClientLibrarySettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ClientLibrarySettings; /** * Verifies a ClientLibrarySettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ClientLibrarySettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ClientLibrarySettings */ public static fromObject(object: { [k: string]: any }): google.api.ClientLibrarySettings; /** * Creates a plain object from a ClientLibrarySettings message. Also converts values to other types if specified. * @param message ClientLibrarySettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.ClientLibrarySettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ClientLibrarySettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ClientLibrarySettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Publishing. */ interface IPublishing { /** Publishing methodSettings */ methodSettings?: (google.api.IMethodSettings[]|null); /** Publishing newIssueUri */ newIssueUri?: (string|null); /** Publishing documentationUri */ documentationUri?: (string|null); /** Publishing apiShortName */ apiShortName?: (string|null); /** Publishing githubLabel */ githubLabel?: (string|null); /** Publishing codeownerGithubTeams */ codeownerGithubTeams?: (string[]|null); /** Publishing docTagPrefix */ docTagPrefix?: (string|null); /** Publishing organization */ organization?: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization|null); /** Publishing librarySettings */ librarySettings?: (google.api.IClientLibrarySettings[]|null); /** Publishing protoReferenceDocumentationUri */ protoReferenceDocumentationUri?: (string|null); /** Publishing restReferenceDocumentationUri */ restReferenceDocumentationUri?: (string|null); } /** Represents a Publishing. */ class Publishing implements IPublishing { /** * Constructs a new Publishing. * @param [properties] Properties to set */ constructor(properties?: google.api.IPublishing); /** Publishing methodSettings. */ public methodSettings: google.api.IMethodSettings[]; /** Publishing newIssueUri. */ public newIssueUri: string; /** Publishing documentationUri. */ public documentationUri: string; /** Publishing apiShortName. */ public apiShortName: string; /** Publishing githubLabel. */ public githubLabel: string; /** Publishing codeownerGithubTeams. */ public codeownerGithubTeams: string[]; /** Publishing docTagPrefix. */ public docTagPrefix: string; /** Publishing organization. */ public organization: (google.api.ClientLibraryOrganization|keyof typeof google.api.ClientLibraryOrganization); /** Publishing librarySettings. */ public librarySettings: google.api.IClientLibrarySettings[]; /** Publishing protoReferenceDocumentationUri. */ public protoReferenceDocumentationUri: string; /** Publishing restReferenceDocumentationUri. */ public restReferenceDocumentationUri: string; /** * Creates a new Publishing instance using the specified properties. * @param [properties] Properties to set * @returns Publishing instance */ public static create(properties?: google.api.IPublishing): google.api.Publishing; /** * Encodes the specified Publishing message. Does not implicitly {@link google.api.Publishing.verify|verify} messages. * @param message Publishing message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Publishing message, length delimited. Does not implicitly {@link google.api.Publishing.verify|verify} messages. * @param message Publishing message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IPublishing, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Publishing message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Publishing * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.Publishing; /** * Decodes a Publishing message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Publishing * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.Publishing; /** * Verifies a Publishing message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Publishing message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Publishing */ public static fromObject(object: { [k: string]: any }): google.api.Publishing; /** * Creates a plain object from a Publishing message. Also converts values to other types if specified. * @param message Publishing * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.Publishing, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Publishing to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Publishing * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a JavaSettings. */ interface IJavaSettings { /** JavaSettings libraryPackage */ libraryPackage?: (string|null); /** JavaSettings serviceClassNames */ serviceClassNames?: ({ [k: string]: string }|null); /** JavaSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a JavaSettings. */ class JavaSettings implements IJavaSettings { /** * Constructs a new JavaSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IJavaSettings); /** JavaSettings libraryPackage. */ public libraryPackage: string; /** JavaSettings serviceClassNames. */ public serviceClassNames: { [k: string]: string }; /** JavaSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new JavaSettings instance using the specified properties. * @param [properties] Properties to set * @returns JavaSettings instance */ public static create(properties?: google.api.IJavaSettings): google.api.JavaSettings; /** * Encodes the specified JavaSettings message. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages. * @param message JavaSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified JavaSettings message, length delimited. Does not implicitly {@link google.api.JavaSettings.verify|verify} messages. * @param message JavaSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IJavaSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a JavaSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns JavaSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.JavaSettings; /** * Decodes a JavaSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns JavaSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.JavaSettings; /** * Verifies a JavaSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a JavaSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns JavaSettings */ public static fromObject(object: { [k: string]: any }): google.api.JavaSettings; /** * Creates a plain object from a JavaSettings message. Also converts values to other types if specified. * @param message JavaSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.JavaSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this JavaSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for JavaSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CppSettings. */ interface ICppSettings { /** CppSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a CppSettings. */ class CppSettings implements ICppSettings { /** * Constructs a new CppSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.ICppSettings); /** CppSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new CppSettings instance using the specified properties. * @param [properties] Properties to set * @returns CppSettings instance */ public static create(properties?: google.api.ICppSettings): google.api.CppSettings; /** * Encodes the specified CppSettings message. Does not implicitly {@link google.api.CppSettings.verify|verify} messages. * @param message CppSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CppSettings message, length delimited. Does not implicitly {@link google.api.CppSettings.verify|verify} messages. * @param message CppSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.ICppSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CppSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CppSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.CppSettings; /** * Decodes a CppSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CppSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.CppSettings; /** * Verifies a CppSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CppSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CppSettings */ public static fromObject(object: { [k: string]: any }): google.api.CppSettings; /** * Creates a plain object from a CppSettings message. Also converts values to other types if specified. * @param message CppSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.CppSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CppSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CppSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PhpSettings. */ interface IPhpSettings { /** PhpSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a PhpSettings. */ class PhpSettings implements IPhpSettings { /** * Constructs a new PhpSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IPhpSettings); /** PhpSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new PhpSettings instance using the specified properties. * @param [properties] Properties to set * @returns PhpSettings instance */ public static create(properties?: google.api.IPhpSettings): google.api.PhpSettings; /** * Encodes the specified PhpSettings message. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages. * @param message PhpSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PhpSettings message, length delimited. Does not implicitly {@link google.api.PhpSettings.verify|verify} messages. * @param message PhpSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IPhpSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PhpSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PhpSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PhpSettings; /** * Decodes a PhpSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PhpSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PhpSettings; /** * Verifies a PhpSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PhpSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PhpSettings */ public static fromObject(object: { [k: string]: any }): google.api.PhpSettings; /** * Creates a plain object from a PhpSettings message. Also converts values to other types if specified. * @param message PhpSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.PhpSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PhpSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PhpSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a PythonSettings. */ interface IPythonSettings { /** PythonSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a PythonSettings. */ class PythonSettings implements IPythonSettings { /** * Constructs a new PythonSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IPythonSettings); /** PythonSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new PythonSettings instance using the specified properties. * @param [properties] Properties to set * @returns PythonSettings instance */ public static create(properties?: google.api.IPythonSettings): google.api.PythonSettings; /** * Encodes the specified PythonSettings message. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages. * @param message PythonSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified PythonSettings message, length delimited. Does not implicitly {@link google.api.PythonSettings.verify|verify} messages. * @param message PythonSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IPythonSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a PythonSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns PythonSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings; /** * Decodes a PythonSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns PythonSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings; /** * Verifies a PythonSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a PythonSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns PythonSettings */ public static fromObject(object: { [k: string]: any }): google.api.PythonSettings; /** * Creates a plain object from a PythonSettings message. Also converts values to other types if specified. * @param message PythonSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.PythonSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this PythonSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for PythonSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a NodeSettings. */ interface INodeSettings { /** NodeSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a NodeSettings. */ class NodeSettings implements INodeSettings { /** * Constructs a new NodeSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.INodeSettings); /** NodeSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new NodeSettings instance using the specified properties. * @param [properties] Properties to set * @returns NodeSettings instance */ public static create(properties?: google.api.INodeSettings): google.api.NodeSettings; /** * Encodes the specified NodeSettings message. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages. * @param message NodeSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified NodeSettings message, length delimited. Does not implicitly {@link google.api.NodeSettings.verify|verify} messages. * @param message NodeSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.INodeSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a NodeSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns NodeSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.NodeSettings; /** * Decodes a NodeSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns NodeSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.NodeSettings; /** * Verifies a NodeSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a NodeSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns NodeSettings */ public static fromObject(object: { [k: string]: any }): google.api.NodeSettings; /** * Creates a plain object from a NodeSettings message. Also converts values to other types if specified. * @param message NodeSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.NodeSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this NodeSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for NodeSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DotnetSettings. */ interface IDotnetSettings { /** DotnetSettings common */ common?: (google.api.ICommonLanguageSettings|null); /** DotnetSettings renamedServices */ renamedServices?: ({ [k: string]: string }|null); /** DotnetSettings renamedResources */ renamedResources?: ({ [k: string]: string }|null); /** DotnetSettings ignoredResources */ ignoredResources?: (string[]|null); /** DotnetSettings forcedNamespaceAliases */ forcedNamespaceAliases?: (string[]|null); /** DotnetSettings handwrittenSignatures */ handwrittenSignatures?: (string[]|null); } /** Represents a DotnetSettings. */ class DotnetSettings implements IDotnetSettings { /** * Constructs a new DotnetSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IDotnetSettings); /** DotnetSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** DotnetSettings renamedServices. */ public renamedServices: { [k: string]: string }; /** DotnetSettings renamedResources. */ public renamedResources: { [k: string]: string }; /** DotnetSettings ignoredResources. */ public ignoredResources: string[]; /** DotnetSettings forcedNamespaceAliases. */ public forcedNamespaceAliases: string[]; /** DotnetSettings handwrittenSignatures. */ public handwrittenSignatures: string[]; /** * Creates a new DotnetSettings instance using the specified properties. * @param [properties] Properties to set * @returns DotnetSettings instance */ public static create(properties?: google.api.IDotnetSettings): google.api.DotnetSettings; /** * Encodes the specified DotnetSettings message. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages. * @param message DotnetSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DotnetSettings message, length delimited. Does not implicitly {@link google.api.DotnetSettings.verify|verify} messages. * @param message DotnetSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IDotnetSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DotnetSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DotnetSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.DotnetSettings; /** * Decodes a DotnetSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DotnetSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.DotnetSettings; /** * Verifies a DotnetSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DotnetSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DotnetSettings */ public static fromObject(object: { [k: string]: any }): google.api.DotnetSettings; /** * Creates a plain object from a DotnetSettings message. Also converts values to other types if specified. * @param message DotnetSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.DotnetSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DotnetSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DotnetSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a RubySettings. */ interface IRubySettings { /** RubySettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a RubySettings. */ class RubySettings implements IRubySettings { /** * Constructs a new RubySettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IRubySettings); /** RubySettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new RubySettings instance using the specified properties. * @param [properties] Properties to set * @returns RubySettings instance */ public static create(properties?: google.api.IRubySettings): google.api.RubySettings; /** * Encodes the specified RubySettings message. Does not implicitly {@link google.api.RubySettings.verify|verify} messages. * @param message RubySettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified RubySettings message, length delimited. Does not implicitly {@link google.api.RubySettings.verify|verify} messages. * @param message RubySettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IRubySettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a RubySettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns RubySettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.RubySettings; /** * Decodes a RubySettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns RubySettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.RubySettings; /** * Verifies a RubySettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a RubySettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns RubySettings */ public static fromObject(object: { [k: string]: any }): google.api.RubySettings; /** * Creates a plain object from a RubySettings message. Also converts values to other types if specified. * @param message RubySettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.RubySettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this RubySettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for RubySettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GoSettings. */ interface IGoSettings { /** GoSettings common */ common?: (google.api.ICommonLanguageSettings|null); } /** Represents a GoSettings. */ class GoSettings implements IGoSettings { /** * Constructs a new GoSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IGoSettings); /** GoSettings common. */ public common?: (google.api.ICommonLanguageSettings|null); /** * Creates a new GoSettings instance using the specified properties. * @param [properties] Properties to set * @returns GoSettings instance */ public static create(properties?: google.api.IGoSettings): google.api.GoSettings; /** * Encodes the specified GoSettings message. Does not implicitly {@link google.api.GoSettings.verify|verify} messages. * @param message GoSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GoSettings message, length delimited. Does not implicitly {@link google.api.GoSettings.verify|verify} messages. * @param message GoSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IGoSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GoSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GoSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.GoSettings; /** * Decodes a GoSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GoSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.GoSettings; /** * Verifies a GoSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GoSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GoSettings */ public static fromObject(object: { [k: string]: any }): google.api.GoSettings; /** * Creates a plain object from a GoSettings message. Also converts values to other types if specified. * @param message GoSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.GoSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GoSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GoSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MethodSettings. */ interface IMethodSettings { /** MethodSettings selector */ selector?: (string|null); /** MethodSettings longRunning */ longRunning?: (google.api.MethodSettings.ILongRunning|null); /** MethodSettings autoPopulatedFields */ autoPopulatedFields?: (string[]|null); } /** Represents a MethodSettings. */ class MethodSettings implements IMethodSettings { /** * Constructs a new MethodSettings. * @param [properties] Properties to set */ constructor(properties?: google.api.IMethodSettings); /** MethodSettings selector. */ public selector: string; /** MethodSettings longRunning. */ public longRunning?: (google.api.MethodSettings.ILongRunning|null); /** MethodSettings autoPopulatedFields. */ public autoPopulatedFields: string[]; /** * Creates a new MethodSettings instance using the specified properties. * @param [properties] Properties to set * @returns MethodSettings instance */ public static create(properties?: google.api.IMethodSettings): google.api.MethodSettings; /** * Encodes the specified MethodSettings message. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages. * @param message MethodSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MethodSettings message, length delimited. Does not implicitly {@link google.api.MethodSettings.verify|verify} messages. * @param message MethodSettings message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IMethodSettings, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MethodSettings message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MethodSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings; /** * Decodes a MethodSettings message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MethodSettings * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings; /** * Verifies a MethodSettings message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MethodSettings message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MethodSettings */ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings; /** * Creates a plain object from a MethodSettings message. Also converts values to other types if specified. * @param message MethodSettings * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.MethodSettings, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MethodSettings to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MethodSettings * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace MethodSettings { /** Properties of a LongRunning. */ interface ILongRunning { /** LongRunning initialPollDelay */ initialPollDelay?: (google.protobuf.IDuration|null); /** LongRunning pollDelayMultiplier */ pollDelayMultiplier?: (number|null); /** LongRunning maxPollDelay */ maxPollDelay?: (google.protobuf.IDuration|null); /** LongRunning totalPollTimeout */ totalPollTimeout?: (google.protobuf.IDuration|null); } /** Represents a LongRunning. */ class LongRunning implements ILongRunning { /** * Constructs a new LongRunning. * @param [properties] Properties to set */ constructor(properties?: google.api.MethodSettings.ILongRunning); /** LongRunning initialPollDelay. */ public initialPollDelay?: (google.protobuf.IDuration|null); /** LongRunning pollDelayMultiplier. */ public pollDelayMultiplier: number; /** LongRunning maxPollDelay. */ public maxPollDelay?: (google.protobuf.IDuration|null); /** LongRunning totalPollTimeout. */ public totalPollTimeout?: (google.protobuf.IDuration|null); /** * Creates a new LongRunning instance using the specified properties. * @param [properties] Properties to set * @returns LongRunning instance */ public static create(properties?: google.api.MethodSettings.ILongRunning): google.api.MethodSettings.LongRunning; /** * Encodes the specified LongRunning message. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages. * @param message LongRunning message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified LongRunning message, length delimited. Does not implicitly {@link google.api.MethodSettings.LongRunning.verify|verify} messages. * @param message LongRunning message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.MethodSettings.ILongRunning, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a LongRunning message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns LongRunning * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.MethodSettings.LongRunning; /** * Decodes a LongRunning message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns LongRunning * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.MethodSettings.LongRunning; /** * Verifies a LongRunning message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a LongRunning message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns LongRunning */ public static fromObject(object: { [k: string]: any }): google.api.MethodSettings.LongRunning; /** * Creates a plain object from a LongRunning message. Also converts values to other types if specified. * @param message LongRunning * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.MethodSettings.LongRunning, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this LongRunning to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for LongRunning * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** ClientLibraryOrganization enum. */ enum ClientLibraryOrganization { CLIENT_LIBRARY_ORGANIZATION_UNSPECIFIED = 0, CLOUD = 1, ADS = 2, PHOTOS = 3, STREET_VIEW = 4, SHOPPING = 5, GEO = 6, GENERATIVE_AI = 7 } /** ClientLibraryDestination enum. */ enum ClientLibraryDestination { CLIENT_LIBRARY_DESTINATION_UNSPECIFIED = 0, GITHUB = 10, PACKAGE_MANAGER = 20 } /** LaunchStage enum. */ enum LaunchStage { LAUNCH_STAGE_UNSPECIFIED = 0, UNIMPLEMENTED = 6, PRELAUNCH = 7, EARLY_ACCESS = 1, ALPHA = 2, BETA = 3, GA = 4, DEPRECATED = 5 } /** Properties of a ResourceDescriptor. */ interface IResourceDescriptor { /** ResourceDescriptor type */ type?: (string|null); /** ResourceDescriptor pattern */ pattern?: (string[]|null); /** ResourceDescriptor nameField */ nameField?: (string|null); /** ResourceDescriptor history */ history?: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History|null); /** ResourceDescriptor plural */ plural?: (string|null); /** ResourceDescriptor singular */ singular?: (string|null); /** ResourceDescriptor style */ style?: (google.api.ResourceDescriptor.Style[]|null); } /** Represents a ResourceDescriptor. */ class ResourceDescriptor implements IResourceDescriptor { /** * Constructs a new ResourceDescriptor. * @param [properties] Properties to set */ constructor(properties?: google.api.IResourceDescriptor); /** ResourceDescriptor type. */ public type: string; /** ResourceDescriptor pattern. */ public pattern: string[]; /** ResourceDescriptor nameField. */ public nameField: string; /** ResourceDescriptor history. */ public history: (google.api.ResourceDescriptor.History|keyof typeof google.api.ResourceDescriptor.History); /** ResourceDescriptor plural. */ public plural: string; /** ResourceDescriptor singular. */ public singular: string; /** ResourceDescriptor style. */ public style: google.api.ResourceDescriptor.Style[]; /** * Creates a new ResourceDescriptor instance using the specified properties. * @param [properties] Properties to set * @returns ResourceDescriptor instance */ public static create(properties?: google.api.IResourceDescriptor): google.api.ResourceDescriptor; /** * Encodes the specified ResourceDescriptor message. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages. * @param message ResourceDescriptor message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ResourceDescriptor message, length delimited. Does not implicitly {@link google.api.ResourceDescriptor.verify|verify} messages. * @param message ResourceDescriptor message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IResourceDescriptor, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ResourceDescriptor message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ResourceDescriptor * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceDescriptor; /** * Decodes a ResourceDescriptor message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ResourceDescriptor * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceDescriptor; /** * Verifies a ResourceDescriptor message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ResourceDescriptor message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ResourceDescriptor */ public static fromObject(object: { [k: string]: any }): google.api.ResourceDescriptor; /** * Creates a plain object from a ResourceDescriptor message. Also converts values to other types if specified. * @param message ResourceDescriptor * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.ResourceDescriptor, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ResourceDescriptor to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ResourceDescriptor * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ResourceDescriptor { /** History enum. */ enum History { HISTORY_UNSPECIFIED = 0, ORIGINALLY_SINGLE_PATTERN = 1, FUTURE_MULTI_PATTERN = 2 } /** Style enum. */ enum Style { STYLE_UNSPECIFIED = 0, DECLARATIVE_FRIENDLY = 1 } } /** Properties of a ResourceReference. */ interface IResourceReference { /** ResourceReference type */ type?: (string|null); /** ResourceReference childType */ childType?: (string|null); } /** Represents a ResourceReference. */ class ResourceReference implements IResourceReference { /** * Constructs a new ResourceReference. * @param [properties] Properties to set */ constructor(properties?: google.api.IResourceReference); /** ResourceReference type. */ public type: string; /** ResourceReference childType. */ public childType: string; /** * Creates a new ResourceReference instance using the specified properties. * @param [properties] Properties to set * @returns ResourceReference instance */ public static create(properties?: google.api.IResourceReference): google.api.ResourceReference; /** * Encodes the specified ResourceReference message. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages. * @param message ResourceReference message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ResourceReference message, length delimited. Does not implicitly {@link google.api.ResourceReference.verify|verify} messages. * @param message ResourceReference message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.api.IResourceReference, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ResourceReference message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ResourceReference * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.ResourceReference; /** * Decodes a ResourceReference message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ResourceReference * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.ResourceReference; /** * Verifies a ResourceReference message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ResourceReference message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ResourceReference */ public static fromObject(object: { [k: string]: any }): google.api.ResourceReference; /** * Creates a plain object from a ResourceReference message. Also converts values to other types if specified. * @param message ResourceReference * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.api.ResourceReference, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ResourceReference to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ResourceReference * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace protobuf. */ namespace protobuf { /** Properties of a FileDescriptorSet. */ interface IFileDescriptorSet { /** FileDescriptorSet file */ file?: (google.protobuf.IFileDescriptorProto[]|null); } /** Represents a FileDescriptorSet. */ class FileDescriptorSet implements IFileDescriptorSet { /** * Constructs a new FileDescriptorSet. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFileDescriptorSet); /** FileDescriptorSet file. */ public file: google.protobuf.IFileDescriptorProto[]; /** * Creates a new FileDescriptorSet instance using the specified properties. * @param [properties] Properties to set * @returns FileDescriptorSet instance */ public static create(properties?: google.protobuf.IFileDescriptorSet): google.protobuf.FileDescriptorSet; /** * Encodes the specified FileDescriptorSet message. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages. * @param message FileDescriptorSet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileDescriptorSet message, length delimited. Does not implicitly {@link google.protobuf.FileDescriptorSet.verify|verify} messages. * @param message FileDescriptorSet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFileDescriptorSet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileDescriptorSet message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileDescriptorSet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorSet; /** * Decodes a FileDescriptorSet message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileDescriptorSet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileDescriptorSet; /** * Verifies a FileDescriptorSet message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileDescriptorSet message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileDescriptorSet */ public static fromObject(object: { [k: string]: any }): google.protobuf.FileDescriptorSet; /** * Creates a plain object from a FileDescriptorSet message. Also converts values to other types if specified. * @param message FileDescriptorSet * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FileDescriptorSet, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileDescriptorSet to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileDescriptorSet * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Edition enum. */ enum Edition { EDITION_UNKNOWN = 0, EDITION_PROTO2 = 998, EDITION_PROTO3 = 999, EDITION_2023 = 1000, EDITION_2024 = 1001, EDITION_1_TEST_ONLY = 1, EDITION_2_TEST_ONLY = 2, EDITION_99997_TEST_ONLY = 99997, EDITION_99998_TEST_ONLY = 99998, EDITION_99999_TEST_ONLY = 99999, EDITION_MAX = 2147483647 } /** Properties of a FileDescriptorProto. */ interface IFileDescriptorProto { /** FileDescriptorProto name */ name?: (string|null); /** FileDescriptorProto package */ "package"?: (string|null); /** FileDescriptorProto dependency */ dependency?: (string[]|null); /** FileDescriptorProto publicDependency */ publicDependency?: (number[]|null); /** FileDescriptorProto weakDependency */ weakDependency?: (number[]|null); /** FileDescriptorProto messageType */ messageType?: (google.protobuf.IDescriptorProto[]|null); /** FileDescriptorProto enumType */ enumType?: (google.protobuf.IEnumDescriptorProto[]|null); /** FileDescriptorProto service */ service?: (google.protobuf.IServiceDescriptorProto[]|null); /** FileDescriptorProto extension */ extension?: (google.protobuf.IFieldDescriptorProto[]|null); /** FileDescriptorProto options */ options?: (google.protobuf.IFileOptions|null); /** FileDescriptorProto sourceCodeInfo */ sourceCodeInfo?: (google.protobuf.ISourceCodeInfo|null); /** FileDescriptorProto syntax */ syntax?: (string|null); /** FileDescriptorProto edition */ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null); } /** Represents a FileDescriptorProto. */ class FileDescriptorProto implements IFileDescriptorProto { /** * Constructs a new FileDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFileDescriptorProto); /** FileDescriptorProto name. */ public name: string; /** FileDescriptorProto package. */ public package: string; /** FileDescriptorProto dependency. */ public dependency: string[]; /** FileDescriptorProto publicDependency. */ public publicDependency: number[]; /** FileDescriptorProto weakDependency. */ public weakDependency: number[]; /** FileDescriptorProto messageType. */ public messageType: google.protobuf.IDescriptorProto[]; /** FileDescriptorProto enumType. */ public enumType: google.protobuf.IEnumDescriptorProto[]; /** FileDescriptorProto service. */ public service: google.protobuf.IServiceDescriptorProto[]; /** FileDescriptorProto extension. */ public extension: google.protobuf.IFieldDescriptorProto[]; /** FileDescriptorProto options. */ public options?: (google.protobuf.IFileOptions|null); /** FileDescriptorProto sourceCodeInfo. */ public sourceCodeInfo?: (google.protobuf.ISourceCodeInfo|null); /** FileDescriptorProto syntax. */ public syntax: string; /** FileDescriptorProto edition. */ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition); /** * Creates a new FileDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns FileDescriptorProto instance */ public static create(properties?: google.protobuf.IFileDescriptorProto): google.protobuf.FileDescriptorProto; /** * Encodes the specified FileDescriptorProto message. Does not implicitly {@link google.protobuf.FileDescriptorProto.verify|verify} messages. * @param message FileDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFileDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.FileDescriptorProto.verify|verify} messages. * @param message FileDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFileDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileDescriptorProto; /** * Decodes a FileDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileDescriptorProto; /** * Verifies a FileDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.FileDescriptorProto; /** * Creates a plain object from a FileDescriptorProto message. Also converts values to other types if specified. * @param message FileDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FileDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DescriptorProto. */ interface IDescriptorProto { /** DescriptorProto name */ name?: (string|null); /** DescriptorProto field */ field?: (google.protobuf.IFieldDescriptorProto[]|null); /** DescriptorProto extension */ extension?: (google.protobuf.IFieldDescriptorProto[]|null); /** DescriptorProto nestedType */ nestedType?: (google.protobuf.IDescriptorProto[]|null); /** DescriptorProto enumType */ enumType?: (google.protobuf.IEnumDescriptorProto[]|null); /** DescriptorProto extensionRange */ extensionRange?: (google.protobuf.DescriptorProto.IExtensionRange[]|null); /** DescriptorProto oneofDecl */ oneofDecl?: (google.protobuf.IOneofDescriptorProto[]|null); /** DescriptorProto options */ options?: (google.protobuf.IMessageOptions|null); /** DescriptorProto reservedRange */ reservedRange?: (google.protobuf.DescriptorProto.IReservedRange[]|null); /** DescriptorProto reservedName */ reservedName?: (string[]|null); } /** Represents a DescriptorProto. */ class DescriptorProto implements IDescriptorProto { /** * Constructs a new DescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IDescriptorProto); /** DescriptorProto name. */ public name: string; /** DescriptorProto field. */ public field: google.protobuf.IFieldDescriptorProto[]; /** DescriptorProto extension. */ public extension: google.protobuf.IFieldDescriptorProto[]; /** DescriptorProto nestedType. */ public nestedType: google.protobuf.IDescriptorProto[]; /** DescriptorProto enumType. */ public enumType: google.protobuf.IEnumDescriptorProto[]; /** DescriptorProto extensionRange. */ public extensionRange: google.protobuf.DescriptorProto.IExtensionRange[]; /** DescriptorProto oneofDecl. */ public oneofDecl: google.protobuf.IOneofDescriptorProto[]; /** DescriptorProto options. */ public options?: (google.protobuf.IMessageOptions|null); /** DescriptorProto reservedRange. */ public reservedRange: google.protobuf.DescriptorProto.IReservedRange[]; /** DescriptorProto reservedName. */ public reservedName: string[]; /** * Creates a new DescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns DescriptorProto instance */ public static create(properties?: google.protobuf.IDescriptorProto): google.protobuf.DescriptorProto; /** * Encodes the specified DescriptorProto message. Does not implicitly {@link google.protobuf.DescriptorProto.verify|verify} messages. * @param message DescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.DescriptorProto.verify|verify} messages. * @param message DescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto; /** * Decodes a DescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.DescriptorProto; /** * Verifies a DescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.DescriptorProto; /** * Creates a plain object from a DescriptorProto message. Also converts values to other types if specified. * @param message DescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.DescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace DescriptorProto { /** Properties of an ExtensionRange. */ interface IExtensionRange { /** ExtensionRange start */ start?: (number|null); /** ExtensionRange end */ end?: (number|null); /** ExtensionRange options */ options?: (google.protobuf.IExtensionRangeOptions|null); } /** Represents an ExtensionRange. */ class ExtensionRange implements IExtensionRange { /** * Constructs a new ExtensionRange. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.DescriptorProto.IExtensionRange); /** ExtensionRange start. */ public start: number; /** ExtensionRange end. */ public end: number; /** ExtensionRange options. */ public options?: (google.protobuf.IExtensionRangeOptions|null); /** * Creates a new ExtensionRange instance using the specified properties. * @param [properties] Properties to set * @returns ExtensionRange instance */ public static create(properties?: google.protobuf.DescriptorProto.IExtensionRange): google.protobuf.DescriptorProto.ExtensionRange; /** * Encodes the specified ExtensionRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ExtensionRange.verify|verify} messages. * @param message ExtensionRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.DescriptorProto.IExtensionRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ExtensionRange message, length delimited. Does not implicitly {@link google.protobuf.DescriptorProto.ExtensionRange.verify|verify} messages. * @param message ExtensionRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.DescriptorProto.IExtensionRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ExtensionRange message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ExtensionRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto.ExtensionRange; /** * Decodes an ExtensionRange message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ExtensionRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.DescriptorProto.ExtensionRange; /** * Verifies an ExtensionRange message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ExtensionRange message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ExtensionRange */ public static fromObject(object: { [k: string]: any }): google.protobuf.DescriptorProto.ExtensionRange; /** * Creates a plain object from an ExtensionRange message. Also converts values to other types if specified. * @param message ExtensionRange * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.DescriptorProto.ExtensionRange, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ExtensionRange to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ExtensionRange * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ReservedRange. */ interface IReservedRange { /** ReservedRange start */ start?: (number|null); /** ReservedRange end */ end?: (number|null); } /** Represents a ReservedRange. */ class ReservedRange implements IReservedRange { /** * Constructs a new ReservedRange. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.DescriptorProto.IReservedRange); /** ReservedRange start. */ public start: number; /** ReservedRange end. */ public end: number; /** * Creates a new ReservedRange instance using the specified properties. * @param [properties] Properties to set * @returns ReservedRange instance */ public static create(properties?: google.protobuf.DescriptorProto.IReservedRange): google.protobuf.DescriptorProto.ReservedRange; /** * Encodes the specified ReservedRange message. Does not implicitly {@link google.protobuf.DescriptorProto.ReservedRange.verify|verify} messages. * @param message ReservedRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.DescriptorProto.IReservedRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ReservedRange message, length delimited. Does not implicitly {@link google.protobuf.DescriptorProto.ReservedRange.verify|verify} messages. * @param message ReservedRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.DescriptorProto.IReservedRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ReservedRange message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ReservedRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.DescriptorProto.ReservedRange; /** * Decodes a ReservedRange message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ReservedRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.DescriptorProto.ReservedRange; /** * Verifies a ReservedRange message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ReservedRange message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ReservedRange */ public static fromObject(object: { [k: string]: any }): google.protobuf.DescriptorProto.ReservedRange; /** * Creates a plain object from a ReservedRange message. Also converts values to other types if specified. * @param message ReservedRange * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.DescriptorProto.ReservedRange, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ReservedRange to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ReservedRange * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an ExtensionRangeOptions. */ interface IExtensionRangeOptions { /** ExtensionRangeOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** ExtensionRangeOptions declaration */ declaration?: (google.protobuf.ExtensionRangeOptions.IDeclaration[]|null); /** ExtensionRangeOptions features */ features?: (google.protobuf.IFeatureSet|null); /** ExtensionRangeOptions verification */ verification?: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState|null); } /** Represents an ExtensionRangeOptions. */ class ExtensionRangeOptions implements IExtensionRangeOptions { /** * Constructs a new ExtensionRangeOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IExtensionRangeOptions); /** ExtensionRangeOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** ExtensionRangeOptions declaration. */ public declaration: google.protobuf.ExtensionRangeOptions.IDeclaration[]; /** ExtensionRangeOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** ExtensionRangeOptions verification. */ public verification: (google.protobuf.ExtensionRangeOptions.VerificationState|keyof typeof google.protobuf.ExtensionRangeOptions.VerificationState); /** * Creates a new ExtensionRangeOptions instance using the specified properties. * @param [properties] Properties to set * @returns ExtensionRangeOptions instance */ public static create(properties?: google.protobuf.IExtensionRangeOptions): google.protobuf.ExtensionRangeOptions; /** * Encodes the specified ExtensionRangeOptions message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.verify|verify} messages. * @param message ExtensionRangeOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IExtensionRangeOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ExtensionRangeOptions message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.verify|verify} messages. * @param message ExtensionRangeOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IExtensionRangeOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an ExtensionRangeOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ExtensionRangeOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions; /** * Decodes an ExtensionRangeOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ExtensionRangeOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions; /** * Verifies an ExtensionRangeOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an ExtensionRangeOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ExtensionRangeOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions; /** * Creates a plain object from an ExtensionRangeOptions message. Also converts values to other types if specified. * @param message ExtensionRangeOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.ExtensionRangeOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ExtensionRangeOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ExtensionRangeOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace ExtensionRangeOptions { /** Properties of a Declaration. */ interface IDeclaration { /** Declaration number */ number?: (number|null); /** Declaration fullName */ fullName?: (string|null); /** Declaration type */ type?: (string|null); /** Declaration reserved */ reserved?: (boolean|null); /** Declaration repeated */ repeated?: (boolean|null); } /** Represents a Declaration. */ class Declaration implements IDeclaration { /** * Constructs a new Declaration. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration); /** Declaration number. */ public number: number; /** Declaration fullName. */ public fullName: string; /** Declaration type. */ public type: string; /** Declaration reserved. */ public reserved: boolean; /** Declaration repeated. */ public repeated: boolean; /** * Creates a new Declaration instance using the specified properties. * @param [properties] Properties to set * @returns Declaration instance */ public static create(properties?: google.protobuf.ExtensionRangeOptions.IDeclaration): google.protobuf.ExtensionRangeOptions.Declaration; /** * Encodes the specified Declaration message. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages. * @param message Declaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Declaration message, length delimited. Does not implicitly {@link google.protobuf.ExtensionRangeOptions.Declaration.verify|verify} messages. * @param message Declaration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.ExtensionRangeOptions.IDeclaration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Declaration message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Declaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ExtensionRangeOptions.Declaration; /** * Decodes a Declaration message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Declaration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ExtensionRangeOptions.Declaration; /** * Verifies a Declaration message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Declaration message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Declaration */ public static fromObject(object: { [k: string]: any }): google.protobuf.ExtensionRangeOptions.Declaration; /** * Creates a plain object from a Declaration message. Also converts values to other types if specified. * @param message Declaration * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.ExtensionRangeOptions.Declaration, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Declaration to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Declaration * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** VerificationState enum. */ enum VerificationState { DECLARATION = 0, UNVERIFIED = 1 } } /** Properties of a FieldDescriptorProto. */ interface IFieldDescriptorProto { /** FieldDescriptorProto name */ name?: (string|null); /** FieldDescriptorProto number */ number?: (number|null); /** FieldDescriptorProto label */ label?: (google.protobuf.FieldDescriptorProto.Label|keyof typeof google.protobuf.FieldDescriptorProto.Label|null); /** FieldDescriptorProto type */ type?: (google.protobuf.FieldDescriptorProto.Type|keyof typeof google.protobuf.FieldDescriptorProto.Type|null); /** FieldDescriptorProto typeName */ typeName?: (string|null); /** FieldDescriptorProto extendee */ extendee?: (string|null); /** FieldDescriptorProto defaultValue */ defaultValue?: (string|null); /** FieldDescriptorProto oneofIndex */ oneofIndex?: (number|null); /** FieldDescriptorProto jsonName */ jsonName?: (string|null); /** FieldDescriptorProto options */ options?: (google.protobuf.IFieldOptions|null); /** FieldDescriptorProto proto3Optional */ proto3Optional?: (boolean|null); } /** Represents a FieldDescriptorProto. */ class FieldDescriptorProto implements IFieldDescriptorProto { /** * Constructs a new FieldDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFieldDescriptorProto); /** FieldDescriptorProto name. */ public name: string; /** FieldDescriptorProto number. */ public number: number; /** FieldDescriptorProto label. */ public label: (google.protobuf.FieldDescriptorProto.Label|keyof typeof google.protobuf.FieldDescriptorProto.Label); /** FieldDescriptorProto type. */ public type: (google.protobuf.FieldDescriptorProto.Type|keyof typeof google.protobuf.FieldDescriptorProto.Type); /** FieldDescriptorProto typeName. */ public typeName: string; /** FieldDescriptorProto extendee. */ public extendee: string; /** FieldDescriptorProto defaultValue. */ public defaultValue: string; /** FieldDescriptorProto oneofIndex. */ public oneofIndex: number; /** FieldDescriptorProto jsonName. */ public jsonName: string; /** FieldDescriptorProto options. */ public options?: (google.protobuf.IFieldOptions|null); /** FieldDescriptorProto proto3Optional. */ public proto3Optional: boolean; /** * Creates a new FieldDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns FieldDescriptorProto instance */ public static create(properties?: google.protobuf.IFieldDescriptorProto): google.protobuf.FieldDescriptorProto; /** * Encodes the specified FieldDescriptorProto message. Does not implicitly {@link google.protobuf.FieldDescriptorProto.verify|verify} messages. * @param message FieldDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFieldDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FieldDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.FieldDescriptorProto.verify|verify} messages. * @param message FieldDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFieldDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FieldDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FieldDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldDescriptorProto; /** * Decodes a FieldDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FieldDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldDescriptorProto; /** * Verifies a FieldDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FieldDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FieldDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldDescriptorProto; /** * Creates a plain object from a FieldDescriptorProto message. Also converts values to other types if specified. * @param message FieldDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FieldDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FieldDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FieldDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FieldDescriptorProto { /** Type enum. */ enum Type { TYPE_DOUBLE = 1, TYPE_FLOAT = 2, TYPE_INT64 = 3, TYPE_UINT64 = 4, TYPE_INT32 = 5, TYPE_FIXED64 = 6, TYPE_FIXED32 = 7, TYPE_BOOL = 8, TYPE_STRING = 9, TYPE_GROUP = 10, TYPE_MESSAGE = 11, TYPE_BYTES = 12, TYPE_UINT32 = 13, TYPE_ENUM = 14, TYPE_SFIXED32 = 15, TYPE_SFIXED64 = 16, TYPE_SINT32 = 17, TYPE_SINT64 = 18 } /** Label enum. */ enum Label { LABEL_OPTIONAL = 1, LABEL_REPEATED = 3, LABEL_REQUIRED = 2 } } /** Properties of an OneofDescriptorProto. */ interface IOneofDescriptorProto { /** OneofDescriptorProto name */ name?: (string|null); /** OneofDescriptorProto options */ options?: (google.protobuf.IOneofOptions|null); } /** Represents an OneofDescriptorProto. */ class OneofDescriptorProto implements IOneofDescriptorProto { /** * Constructs a new OneofDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IOneofDescriptorProto); /** OneofDescriptorProto name. */ public name: string; /** OneofDescriptorProto options. */ public options?: (google.protobuf.IOneofOptions|null); /** * Creates a new OneofDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns OneofDescriptorProto instance */ public static create(properties?: google.protobuf.IOneofDescriptorProto): google.protobuf.OneofDescriptorProto; /** * Encodes the specified OneofDescriptorProto message. Does not implicitly {@link google.protobuf.OneofDescriptorProto.verify|verify} messages. * @param message OneofDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IOneofDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified OneofDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.OneofDescriptorProto.verify|verify} messages. * @param message OneofDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IOneofDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an OneofDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns OneofDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.OneofDescriptorProto; /** * Decodes an OneofDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns OneofDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.OneofDescriptorProto; /** * Verifies an OneofDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an OneofDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns OneofDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.OneofDescriptorProto; /** * Creates a plain object from an OneofDescriptorProto message. Also converts values to other types if specified. * @param message OneofDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.OneofDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this OneofDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for OneofDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EnumDescriptorProto. */ interface IEnumDescriptorProto { /** EnumDescriptorProto name */ name?: (string|null); /** EnumDescriptorProto value */ value?: (google.protobuf.IEnumValueDescriptorProto[]|null); /** EnumDescriptorProto options */ options?: (google.protobuf.IEnumOptions|null); /** EnumDescriptorProto reservedRange */ reservedRange?: (google.protobuf.EnumDescriptorProto.IEnumReservedRange[]|null); /** EnumDescriptorProto reservedName */ reservedName?: (string[]|null); } /** Represents an EnumDescriptorProto. */ class EnumDescriptorProto implements IEnumDescriptorProto { /** * Constructs a new EnumDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IEnumDescriptorProto); /** EnumDescriptorProto name. */ public name: string; /** EnumDescriptorProto value. */ public value: google.protobuf.IEnumValueDescriptorProto[]; /** EnumDescriptorProto options. */ public options?: (google.protobuf.IEnumOptions|null); /** EnumDescriptorProto reservedRange. */ public reservedRange: google.protobuf.EnumDescriptorProto.IEnumReservedRange[]; /** EnumDescriptorProto reservedName. */ public reservedName: string[]; /** * Creates a new EnumDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns EnumDescriptorProto instance */ public static create(properties?: google.protobuf.IEnumDescriptorProto): google.protobuf.EnumDescriptorProto; /** * Encodes the specified EnumDescriptorProto message. Does not implicitly {@link google.protobuf.EnumDescriptorProto.verify|verify} messages. * @param message EnumDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IEnumDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EnumDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.EnumDescriptorProto.verify|verify} messages. * @param message EnumDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IEnumDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EnumDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EnumDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumDescriptorProto; /** * Decodes an EnumDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EnumDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.EnumDescriptorProto; /** * Verifies an EnumDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EnumDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EnumDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.EnumDescriptorProto; /** * Creates a plain object from an EnumDescriptorProto message. Also converts values to other types if specified. * @param message EnumDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.EnumDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EnumDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EnumDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace EnumDescriptorProto { /** Properties of an EnumReservedRange. */ interface IEnumReservedRange { /** EnumReservedRange start */ start?: (number|null); /** EnumReservedRange end */ end?: (number|null); } /** Represents an EnumReservedRange. */ class EnumReservedRange implements IEnumReservedRange { /** * Constructs a new EnumReservedRange. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.EnumDescriptorProto.IEnumReservedRange); /** EnumReservedRange start. */ public start: number; /** EnumReservedRange end. */ public end: number; /** * Creates a new EnumReservedRange instance using the specified properties. * @param [properties] Properties to set * @returns EnumReservedRange instance */ public static create(properties?: google.protobuf.EnumDescriptorProto.IEnumReservedRange): google.protobuf.EnumDescriptorProto.EnumReservedRange; /** * Encodes the specified EnumReservedRange message. Does not implicitly {@link google.protobuf.EnumDescriptorProto.EnumReservedRange.verify|verify} messages. * @param message EnumReservedRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.EnumDescriptorProto.IEnumReservedRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EnumReservedRange message, length delimited. Does not implicitly {@link google.protobuf.EnumDescriptorProto.EnumReservedRange.verify|verify} messages. * @param message EnumReservedRange message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.EnumDescriptorProto.IEnumReservedRange, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EnumReservedRange message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EnumReservedRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumDescriptorProto.EnumReservedRange; /** * Decodes an EnumReservedRange message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EnumReservedRange * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.EnumDescriptorProto.EnumReservedRange; /** * Verifies an EnumReservedRange message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EnumReservedRange message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EnumReservedRange */ public static fromObject(object: { [k: string]: any }): google.protobuf.EnumDescriptorProto.EnumReservedRange; /** * Creates a plain object from an EnumReservedRange message. Also converts values to other types if specified. * @param message EnumReservedRange * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.EnumDescriptorProto.EnumReservedRange, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EnumReservedRange to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EnumReservedRange * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an EnumValueDescriptorProto. */ interface IEnumValueDescriptorProto { /** EnumValueDescriptorProto name */ name?: (string|null); /** EnumValueDescriptorProto number */ number?: (number|null); /** EnumValueDescriptorProto options */ options?: (google.protobuf.IEnumValueOptions|null); } /** Represents an EnumValueDescriptorProto. */ class EnumValueDescriptorProto implements IEnumValueDescriptorProto { /** * Constructs a new EnumValueDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IEnumValueDescriptorProto); /** EnumValueDescriptorProto name. */ public name: string; /** EnumValueDescriptorProto number. */ public number: number; /** EnumValueDescriptorProto options. */ public options?: (google.protobuf.IEnumValueOptions|null); /** * Creates a new EnumValueDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns EnumValueDescriptorProto instance */ public static create(properties?: google.protobuf.IEnumValueDescriptorProto): google.protobuf.EnumValueDescriptorProto; /** * Encodes the specified EnumValueDescriptorProto message. Does not implicitly {@link google.protobuf.EnumValueDescriptorProto.verify|verify} messages. * @param message EnumValueDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IEnumValueDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EnumValueDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.EnumValueDescriptorProto.verify|verify} messages. * @param message EnumValueDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IEnumValueDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EnumValueDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EnumValueDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumValueDescriptorProto; /** * Decodes an EnumValueDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EnumValueDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.EnumValueDescriptorProto; /** * Verifies an EnumValueDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EnumValueDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EnumValueDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.EnumValueDescriptorProto; /** * Creates a plain object from an EnumValueDescriptorProto message. Also converts values to other types if specified. * @param message EnumValueDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.EnumValueDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EnumValueDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EnumValueDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ServiceDescriptorProto. */ interface IServiceDescriptorProto { /** ServiceDescriptorProto name */ name?: (string|null); /** ServiceDescriptorProto method */ method?: (google.protobuf.IMethodDescriptorProto[]|null); /** ServiceDescriptorProto options */ options?: (google.protobuf.IServiceOptions|null); } /** Represents a ServiceDescriptorProto. */ class ServiceDescriptorProto implements IServiceDescriptorProto { /** * Constructs a new ServiceDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IServiceDescriptorProto); /** ServiceDescriptorProto name. */ public name: string; /** ServiceDescriptorProto method. */ public method: google.protobuf.IMethodDescriptorProto[]; /** ServiceDescriptorProto options. */ public options?: (google.protobuf.IServiceOptions|null); /** * Creates a new ServiceDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns ServiceDescriptorProto instance */ public static create(properties?: google.protobuf.IServiceDescriptorProto): google.protobuf.ServiceDescriptorProto; /** * Encodes the specified ServiceDescriptorProto message. Does not implicitly {@link google.protobuf.ServiceDescriptorProto.verify|verify} messages. * @param message ServiceDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IServiceDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ServiceDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.ServiceDescriptorProto.verify|verify} messages. * @param message ServiceDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IServiceDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ServiceDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ServiceDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ServiceDescriptorProto; /** * Decodes a ServiceDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ServiceDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ServiceDescriptorProto; /** * Verifies a ServiceDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ServiceDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ServiceDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.ServiceDescriptorProto; /** * Creates a plain object from a ServiceDescriptorProto message. Also converts values to other types if specified. * @param message ServiceDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.ServiceDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ServiceDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ServiceDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MethodDescriptorProto. */ interface IMethodDescriptorProto { /** MethodDescriptorProto name */ name?: (string|null); /** MethodDescriptorProto inputType */ inputType?: (string|null); /** MethodDescriptorProto outputType */ outputType?: (string|null); /** MethodDescriptorProto options */ options?: (google.protobuf.IMethodOptions|null); /** MethodDescriptorProto clientStreaming */ clientStreaming?: (boolean|null); /** MethodDescriptorProto serverStreaming */ serverStreaming?: (boolean|null); } /** Represents a MethodDescriptorProto. */ class MethodDescriptorProto implements IMethodDescriptorProto { /** * Constructs a new MethodDescriptorProto. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IMethodDescriptorProto); /** MethodDescriptorProto name. */ public name: string; /** MethodDescriptorProto inputType. */ public inputType: string; /** MethodDescriptorProto outputType. */ public outputType: string; /** MethodDescriptorProto options. */ public options?: (google.protobuf.IMethodOptions|null); /** MethodDescriptorProto clientStreaming. */ public clientStreaming: boolean; /** MethodDescriptorProto serverStreaming. */ public serverStreaming: boolean; /** * Creates a new MethodDescriptorProto instance using the specified properties. * @param [properties] Properties to set * @returns MethodDescriptorProto instance */ public static create(properties?: google.protobuf.IMethodDescriptorProto): google.protobuf.MethodDescriptorProto; /** * Encodes the specified MethodDescriptorProto message. Does not implicitly {@link google.protobuf.MethodDescriptorProto.verify|verify} messages. * @param message MethodDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IMethodDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MethodDescriptorProto message, length delimited. Does not implicitly {@link google.protobuf.MethodDescriptorProto.verify|verify} messages. * @param message MethodDescriptorProto message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IMethodDescriptorProto, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MethodDescriptorProto message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MethodDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MethodDescriptorProto; /** * Decodes a MethodDescriptorProto message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MethodDescriptorProto * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.MethodDescriptorProto; /** * Verifies a MethodDescriptorProto message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MethodDescriptorProto message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MethodDescriptorProto */ public static fromObject(object: { [k: string]: any }): google.protobuf.MethodDescriptorProto; /** * Creates a plain object from a MethodDescriptorProto message. Also converts values to other types if specified. * @param message MethodDescriptorProto * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.MethodDescriptorProto, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MethodDescriptorProto to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MethodDescriptorProto * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FileOptions. */ interface IFileOptions { /** FileOptions javaPackage */ javaPackage?: (string|null); /** FileOptions javaOuterClassname */ javaOuterClassname?: (string|null); /** FileOptions javaMultipleFiles */ javaMultipleFiles?: (boolean|null); /** FileOptions javaGenerateEqualsAndHash */ javaGenerateEqualsAndHash?: (boolean|null); /** FileOptions javaStringCheckUtf8 */ javaStringCheckUtf8?: (boolean|null); /** FileOptions optimizeFor */ optimizeFor?: (google.protobuf.FileOptions.OptimizeMode|keyof typeof google.protobuf.FileOptions.OptimizeMode|null); /** FileOptions goPackage */ goPackage?: (string|null); /** FileOptions ccGenericServices */ ccGenericServices?: (boolean|null); /** FileOptions javaGenericServices */ javaGenericServices?: (boolean|null); /** FileOptions pyGenericServices */ pyGenericServices?: (boolean|null); /** FileOptions deprecated */ deprecated?: (boolean|null); /** FileOptions ccEnableArenas */ ccEnableArenas?: (boolean|null); /** FileOptions objcClassPrefix */ objcClassPrefix?: (string|null); /** FileOptions csharpNamespace */ csharpNamespace?: (string|null); /** FileOptions swiftPrefix */ swiftPrefix?: (string|null); /** FileOptions phpClassPrefix */ phpClassPrefix?: (string|null); /** FileOptions phpNamespace */ phpNamespace?: (string|null); /** FileOptions phpMetadataNamespace */ phpMetadataNamespace?: (string|null); /** FileOptions rubyPackage */ rubyPackage?: (string|null); /** FileOptions features */ features?: (google.protobuf.IFeatureSet|null); /** FileOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** FileOptions .google.api.resourceDefinition */ ".google.api.resourceDefinition"?: (google.api.IResourceDescriptor[]|null); } /** Represents a FileOptions. */ class FileOptions implements IFileOptions { /** * Constructs a new FileOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFileOptions); /** FileOptions javaPackage. */ public javaPackage: string; /** FileOptions javaOuterClassname. */ public javaOuterClassname: string; /** FileOptions javaMultipleFiles. */ public javaMultipleFiles: boolean; /** FileOptions javaGenerateEqualsAndHash. */ public javaGenerateEqualsAndHash: boolean; /** FileOptions javaStringCheckUtf8. */ public javaStringCheckUtf8: boolean; /** FileOptions optimizeFor. */ public optimizeFor: (google.protobuf.FileOptions.OptimizeMode|keyof typeof google.protobuf.FileOptions.OptimizeMode); /** FileOptions goPackage. */ public goPackage: string; /** FileOptions ccGenericServices. */ public ccGenericServices: boolean; /** FileOptions javaGenericServices. */ public javaGenericServices: boolean; /** FileOptions pyGenericServices. */ public pyGenericServices: boolean; /** FileOptions deprecated. */ public deprecated: boolean; /** FileOptions ccEnableArenas. */ public ccEnableArenas: boolean; /** FileOptions objcClassPrefix. */ public objcClassPrefix: string; /** FileOptions csharpNamespace. */ public csharpNamespace: string; /** FileOptions swiftPrefix. */ public swiftPrefix: string; /** FileOptions phpClassPrefix. */ public phpClassPrefix: string; /** FileOptions phpNamespace. */ public phpNamespace: string; /** FileOptions phpMetadataNamespace. */ public phpMetadataNamespace: string; /** FileOptions rubyPackage. */ public rubyPackage: string; /** FileOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** FileOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new FileOptions instance using the specified properties. * @param [properties] Properties to set * @returns FileOptions instance */ public static create(properties?: google.protobuf.IFileOptions): google.protobuf.FileOptions; /** * Encodes the specified FileOptions message. Does not implicitly {@link google.protobuf.FileOptions.verify|verify} messages. * @param message FileOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFileOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FileOptions message, length delimited. Does not implicitly {@link google.protobuf.FileOptions.verify|verify} messages. * @param message FileOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFileOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FileOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FileOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FileOptions; /** * Decodes a FileOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FileOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FileOptions; /** * Verifies a FileOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FileOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FileOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.FileOptions; /** * Creates a plain object from a FileOptions message. Also converts values to other types if specified. * @param message FileOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FileOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FileOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FileOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FileOptions { /** OptimizeMode enum. */ enum OptimizeMode { SPEED = 1, CODE_SIZE = 2, LITE_RUNTIME = 3 } } /** Properties of a MessageOptions. */ interface IMessageOptions { /** MessageOptions messageSetWireFormat */ messageSetWireFormat?: (boolean|null); /** MessageOptions noStandardDescriptorAccessor */ noStandardDescriptorAccessor?: (boolean|null); /** MessageOptions deprecated */ deprecated?: (boolean|null); /** MessageOptions mapEntry */ mapEntry?: (boolean|null); /** MessageOptions deprecatedLegacyJsonFieldConflicts */ deprecatedLegacyJsonFieldConflicts?: (boolean|null); /** MessageOptions features */ features?: (google.protobuf.IFeatureSet|null); /** MessageOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** MessageOptions .google.api.resource */ ".google.api.resource"?: (google.api.IResourceDescriptor|null); } /** Represents a MessageOptions. */ class MessageOptions implements IMessageOptions { /** * Constructs a new MessageOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IMessageOptions); /** MessageOptions messageSetWireFormat. */ public messageSetWireFormat: boolean; /** MessageOptions noStandardDescriptorAccessor. */ public noStandardDescriptorAccessor: boolean; /** MessageOptions deprecated. */ public deprecated: boolean; /** MessageOptions mapEntry. */ public mapEntry: boolean; /** MessageOptions deprecatedLegacyJsonFieldConflicts. */ public deprecatedLegacyJsonFieldConflicts: boolean; /** MessageOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** MessageOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new MessageOptions instance using the specified properties. * @param [properties] Properties to set * @returns MessageOptions instance */ public static create(properties?: google.protobuf.IMessageOptions): google.protobuf.MessageOptions; /** * Encodes the specified MessageOptions message. Does not implicitly {@link google.protobuf.MessageOptions.verify|verify} messages. * @param message MessageOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IMessageOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MessageOptions message, length delimited. Does not implicitly {@link google.protobuf.MessageOptions.verify|verify} messages. * @param message MessageOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IMessageOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MessageOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MessageOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MessageOptions; /** * Decodes a MessageOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MessageOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.MessageOptions; /** * Verifies a MessageOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MessageOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MessageOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.MessageOptions; /** * Creates a plain object from a MessageOptions message. Also converts values to other types if specified. * @param message MessageOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.MessageOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MessageOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MessageOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FieldOptions. */ interface IFieldOptions { /** FieldOptions ctype */ ctype?: (google.protobuf.FieldOptions.CType|keyof typeof google.protobuf.FieldOptions.CType|null); /** FieldOptions packed */ packed?: (boolean|null); /** FieldOptions jstype */ jstype?: (google.protobuf.FieldOptions.JSType|keyof typeof google.protobuf.FieldOptions.JSType|null); /** FieldOptions lazy */ lazy?: (boolean|null); /** FieldOptions unverifiedLazy */ unverifiedLazy?: (boolean|null); /** FieldOptions deprecated */ deprecated?: (boolean|null); /** FieldOptions weak */ weak?: (boolean|null); /** FieldOptions debugRedact */ debugRedact?: (boolean|null); /** FieldOptions retention */ retention?: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention|null); /** FieldOptions targets */ targets?: (google.protobuf.FieldOptions.OptionTargetType[]|null); /** FieldOptions editionDefaults */ editionDefaults?: (google.protobuf.FieldOptions.IEditionDefault[]|null); /** FieldOptions features */ features?: (google.protobuf.IFeatureSet|null); /** FieldOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** FieldOptions .google.api.fieldBehavior */ ".google.api.fieldBehavior"?: (google.api.FieldBehavior[]|null); /** FieldOptions .google.api.resourceReference */ ".google.api.resourceReference"?: (google.api.IResourceReference|null); } /** Represents a FieldOptions. */ class FieldOptions implements IFieldOptions { /** * Constructs a new FieldOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFieldOptions); /** FieldOptions ctype. */ public ctype: (google.protobuf.FieldOptions.CType|keyof typeof google.protobuf.FieldOptions.CType); /** FieldOptions packed. */ public packed: boolean; /** FieldOptions jstype. */ public jstype: (google.protobuf.FieldOptions.JSType|keyof typeof google.protobuf.FieldOptions.JSType); /** FieldOptions lazy. */ public lazy: boolean; /** FieldOptions unverifiedLazy. */ public unverifiedLazy: boolean; /** FieldOptions deprecated. */ public deprecated: boolean; /** FieldOptions weak. */ public weak: boolean; /** FieldOptions debugRedact. */ public debugRedact: boolean; /** FieldOptions retention. */ public retention: (google.protobuf.FieldOptions.OptionRetention|keyof typeof google.protobuf.FieldOptions.OptionRetention); /** FieldOptions targets. */ public targets: google.protobuf.FieldOptions.OptionTargetType[]; /** FieldOptions editionDefaults. */ public editionDefaults: google.protobuf.FieldOptions.IEditionDefault[]; /** FieldOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** FieldOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new FieldOptions instance using the specified properties. * @param [properties] Properties to set * @returns FieldOptions instance */ public static create(properties?: google.protobuf.IFieldOptions): google.protobuf.FieldOptions; /** * Encodes the specified FieldOptions message. Does not implicitly {@link google.protobuf.FieldOptions.verify|verify} messages. * @param message FieldOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFieldOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FieldOptions message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.verify|verify} messages. * @param message FieldOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFieldOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FieldOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FieldOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions; /** * Decodes a FieldOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FieldOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions; /** * Verifies a FieldOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FieldOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FieldOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions; /** * Creates a plain object from a FieldOptions message. Also converts values to other types if specified. * @param message FieldOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FieldOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FieldOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FieldOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FieldOptions { /** CType enum. */ enum CType { STRING = 0, CORD = 1, STRING_PIECE = 2 } /** JSType enum. */ enum JSType { JS_NORMAL = 0, JS_STRING = 1, JS_NUMBER = 2 } /** OptionRetention enum. */ enum OptionRetention { RETENTION_UNKNOWN = 0, RETENTION_RUNTIME = 1, RETENTION_SOURCE = 2 } /** OptionTargetType enum. */ enum OptionTargetType { TARGET_TYPE_UNKNOWN = 0, TARGET_TYPE_FILE = 1, TARGET_TYPE_EXTENSION_RANGE = 2, TARGET_TYPE_MESSAGE = 3, TARGET_TYPE_FIELD = 4, TARGET_TYPE_ONEOF = 5, TARGET_TYPE_ENUM = 6, TARGET_TYPE_ENUM_ENTRY = 7, TARGET_TYPE_SERVICE = 8, TARGET_TYPE_METHOD = 9 } /** Properties of an EditionDefault. */ interface IEditionDefault { /** EditionDefault edition */ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null); /** EditionDefault value */ value?: (string|null); } /** Represents an EditionDefault. */ class EditionDefault implements IEditionDefault { /** * Constructs a new EditionDefault. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.FieldOptions.IEditionDefault); /** EditionDefault edition. */ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition); /** EditionDefault value. */ public value: string; /** * Creates a new EditionDefault instance using the specified properties. * @param [properties] Properties to set * @returns EditionDefault instance */ public static create(properties?: google.protobuf.FieldOptions.IEditionDefault): google.protobuf.FieldOptions.EditionDefault; /** * Encodes the specified EditionDefault message. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages. * @param message EditionDefault message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.EditionDefault.verify|verify} messages. * @param message EditionDefault message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.FieldOptions.IEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EditionDefault message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EditionDefault * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.EditionDefault; /** * Decodes an EditionDefault message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EditionDefault * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.EditionDefault; /** * Verifies an EditionDefault message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EditionDefault message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EditionDefault */ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.EditionDefault; /** * Creates a plain object from an EditionDefault message. Also converts values to other types if specified. * @param message EditionDefault * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FieldOptions.EditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EditionDefault to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EditionDefault * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of an OneofOptions. */ interface IOneofOptions { /** OneofOptions features */ features?: (google.protobuf.IFeatureSet|null); /** OneofOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); } /** Represents an OneofOptions. */ class OneofOptions implements IOneofOptions { /** * Constructs a new OneofOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IOneofOptions); /** OneofOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** OneofOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new OneofOptions instance using the specified properties. * @param [properties] Properties to set * @returns OneofOptions instance */ public static create(properties?: google.protobuf.IOneofOptions): google.protobuf.OneofOptions; /** * Encodes the specified OneofOptions message. Does not implicitly {@link google.protobuf.OneofOptions.verify|verify} messages. * @param message OneofOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IOneofOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified OneofOptions message, length delimited. Does not implicitly {@link google.protobuf.OneofOptions.verify|verify} messages. * @param message OneofOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IOneofOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an OneofOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns OneofOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.OneofOptions; /** * Decodes an OneofOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns OneofOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.OneofOptions; /** * Verifies an OneofOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an OneofOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns OneofOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.OneofOptions; /** * Creates a plain object from an OneofOptions message. Also converts values to other types if specified. * @param message OneofOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.OneofOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this OneofOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for OneofOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EnumOptions. */ interface IEnumOptions { /** EnumOptions allowAlias */ allowAlias?: (boolean|null); /** EnumOptions deprecated */ deprecated?: (boolean|null); /** EnumOptions deprecatedLegacyJsonFieldConflicts */ deprecatedLegacyJsonFieldConflicts?: (boolean|null); /** EnumOptions features */ features?: (google.protobuf.IFeatureSet|null); /** EnumOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); } /** Represents an EnumOptions. */ class EnumOptions implements IEnumOptions { /** * Constructs a new EnumOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IEnumOptions); /** EnumOptions allowAlias. */ public allowAlias: boolean; /** EnumOptions deprecated. */ public deprecated: boolean; /** EnumOptions deprecatedLegacyJsonFieldConflicts. */ public deprecatedLegacyJsonFieldConflicts: boolean; /** EnumOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** EnumOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new EnumOptions instance using the specified properties. * @param [properties] Properties to set * @returns EnumOptions instance */ public static create(properties?: google.protobuf.IEnumOptions): google.protobuf.EnumOptions; /** * Encodes the specified EnumOptions message. Does not implicitly {@link google.protobuf.EnumOptions.verify|verify} messages. * @param message EnumOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IEnumOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EnumOptions message, length delimited. Does not implicitly {@link google.protobuf.EnumOptions.verify|verify} messages. * @param message EnumOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IEnumOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EnumOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EnumOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumOptions; /** * Decodes an EnumOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EnumOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.EnumOptions; /** * Verifies an EnumOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EnumOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EnumOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.EnumOptions; /** * Creates a plain object from an EnumOptions message. Also converts values to other types if specified. * @param message EnumOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.EnumOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EnumOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EnumOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an EnumValueOptions. */ interface IEnumValueOptions { /** EnumValueOptions deprecated */ deprecated?: (boolean|null); /** EnumValueOptions features */ features?: (google.protobuf.IFeatureSet|null); /** EnumValueOptions debugRedact */ debugRedact?: (boolean|null); /** EnumValueOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); } /** Represents an EnumValueOptions. */ class EnumValueOptions implements IEnumValueOptions { /** * Constructs a new EnumValueOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IEnumValueOptions); /** EnumValueOptions deprecated. */ public deprecated: boolean; /** EnumValueOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** EnumValueOptions debugRedact. */ public debugRedact: boolean; /** EnumValueOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new EnumValueOptions instance using the specified properties. * @param [properties] Properties to set * @returns EnumValueOptions instance */ public static create(properties?: google.protobuf.IEnumValueOptions): google.protobuf.EnumValueOptions; /** * Encodes the specified EnumValueOptions message. Does not implicitly {@link google.protobuf.EnumValueOptions.verify|verify} messages. * @param message EnumValueOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IEnumValueOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified EnumValueOptions message, length delimited. Does not implicitly {@link google.protobuf.EnumValueOptions.verify|verify} messages. * @param message EnumValueOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IEnumValueOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an EnumValueOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns EnumValueOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.EnumValueOptions; /** * Decodes an EnumValueOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns EnumValueOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.EnumValueOptions; /** * Verifies an EnumValueOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an EnumValueOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns EnumValueOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.EnumValueOptions; /** * Creates a plain object from an EnumValueOptions message. Also converts values to other types if specified. * @param message EnumValueOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.EnumValueOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this EnumValueOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for EnumValueOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ServiceOptions. */ interface IServiceOptions { /** ServiceOptions features */ features?: (google.protobuf.IFeatureSet|null); /** ServiceOptions deprecated */ deprecated?: (boolean|null); /** ServiceOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** ServiceOptions .google.api.defaultHost */ ".google.api.defaultHost"?: (string|null); /** ServiceOptions .google.api.oauthScopes */ ".google.api.oauthScopes"?: (string|null); /** ServiceOptions .google.api.apiVersion */ ".google.api.apiVersion"?: (string|null); } /** Represents a ServiceOptions. */ class ServiceOptions implements IServiceOptions { /** * Constructs a new ServiceOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IServiceOptions); /** ServiceOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** ServiceOptions deprecated. */ public deprecated: boolean; /** ServiceOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new ServiceOptions instance using the specified properties. * @param [properties] Properties to set * @returns ServiceOptions instance */ public static create(properties?: google.protobuf.IServiceOptions): google.protobuf.ServiceOptions; /** * Encodes the specified ServiceOptions message. Does not implicitly {@link google.protobuf.ServiceOptions.verify|verify} messages. * @param message ServiceOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IServiceOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ServiceOptions message, length delimited. Does not implicitly {@link google.protobuf.ServiceOptions.verify|verify} messages. * @param message ServiceOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IServiceOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ServiceOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ServiceOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ServiceOptions; /** * Decodes a ServiceOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ServiceOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ServiceOptions; /** * Verifies a ServiceOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ServiceOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ServiceOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.ServiceOptions; /** * Creates a plain object from a ServiceOptions message. Also converts values to other types if specified. * @param message ServiceOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.ServiceOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ServiceOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ServiceOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a MethodOptions. */ interface IMethodOptions { /** MethodOptions deprecated */ deprecated?: (boolean|null); /** MethodOptions idempotencyLevel */ idempotencyLevel?: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel|null); /** MethodOptions features */ features?: (google.protobuf.IFeatureSet|null); /** MethodOptions uninterpretedOption */ uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null); /** MethodOptions .google.api.http */ ".google.api.http"?: (google.api.IHttpRule|null); /** MethodOptions .google.api.methodSignature */ ".google.api.methodSignature"?: (string[]|null); /** MethodOptions .google.longrunning.operationInfo */ ".google.longrunning.operationInfo"?: (google.longrunning.IOperationInfo|null); } /** Represents a MethodOptions. */ class MethodOptions implements IMethodOptions { /** * Constructs a new MethodOptions. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IMethodOptions); /** MethodOptions deprecated. */ public deprecated: boolean; /** MethodOptions idempotencyLevel. */ public idempotencyLevel: (google.protobuf.MethodOptions.IdempotencyLevel|keyof typeof google.protobuf.MethodOptions.IdempotencyLevel); /** MethodOptions features. */ public features?: (google.protobuf.IFeatureSet|null); /** MethodOptions uninterpretedOption. */ public uninterpretedOption: google.protobuf.IUninterpretedOption[]; /** * Creates a new MethodOptions instance using the specified properties. * @param [properties] Properties to set * @returns MethodOptions instance */ public static create(properties?: google.protobuf.IMethodOptions): google.protobuf.MethodOptions; /** * Encodes the specified MethodOptions message. Does not implicitly {@link google.protobuf.MethodOptions.verify|verify} messages. * @param message MethodOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IMethodOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified MethodOptions message, length delimited. Does not implicitly {@link google.protobuf.MethodOptions.verify|verify} messages. * @param message MethodOptions message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IMethodOptions, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a MethodOptions message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns MethodOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.MethodOptions; /** * Decodes a MethodOptions message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns MethodOptions * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.MethodOptions; /** * Verifies a MethodOptions message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a MethodOptions message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns MethodOptions */ public static fromObject(object: { [k: string]: any }): google.protobuf.MethodOptions; /** * Creates a plain object from a MethodOptions message. Also converts values to other types if specified. * @param message MethodOptions * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.MethodOptions, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this MethodOptions to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for MethodOptions * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace MethodOptions { /** IdempotencyLevel enum. */ enum IdempotencyLevel { IDEMPOTENCY_UNKNOWN = 0, NO_SIDE_EFFECTS = 1, IDEMPOTENT = 2 } } /** Properties of an UninterpretedOption. */ interface IUninterpretedOption { /** UninterpretedOption name */ name?: (google.protobuf.UninterpretedOption.INamePart[]|null); /** UninterpretedOption identifierValue */ identifierValue?: (string|null); /** UninterpretedOption positiveIntValue */ positiveIntValue?: (number|Long|string|null); /** UninterpretedOption negativeIntValue */ negativeIntValue?: (number|Long|string|null); /** UninterpretedOption doubleValue */ doubleValue?: (number|null); /** UninterpretedOption stringValue */ stringValue?: (Uint8Array|Buffer|string|null); /** UninterpretedOption aggregateValue */ aggregateValue?: (string|null); } /** Represents an UninterpretedOption. */ class UninterpretedOption implements IUninterpretedOption { /** * Constructs a new UninterpretedOption. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IUninterpretedOption); /** UninterpretedOption name. */ public name: google.protobuf.UninterpretedOption.INamePart[]; /** UninterpretedOption identifierValue. */ public identifierValue: string; /** UninterpretedOption positiveIntValue. */ public positiveIntValue: (number|Long|string); /** UninterpretedOption negativeIntValue. */ public negativeIntValue: (number|Long|string); /** UninterpretedOption doubleValue. */ public doubleValue: number; /** UninterpretedOption stringValue. */ public stringValue: (Uint8Array|Buffer|string); /** UninterpretedOption aggregateValue. */ public aggregateValue: string; /** * Creates a new UninterpretedOption instance using the specified properties. * @param [properties] Properties to set * @returns UninterpretedOption instance */ public static create(properties?: google.protobuf.IUninterpretedOption): google.protobuf.UninterpretedOption; /** * Encodes the specified UninterpretedOption message. Does not implicitly {@link google.protobuf.UninterpretedOption.verify|verify} messages. * @param message UninterpretedOption message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IUninterpretedOption, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified UninterpretedOption message, length delimited. Does not implicitly {@link google.protobuf.UninterpretedOption.verify|verify} messages. * @param message UninterpretedOption message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IUninterpretedOption, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an UninterpretedOption message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns UninterpretedOption * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UninterpretedOption; /** * Decodes an UninterpretedOption message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns UninterpretedOption * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.UninterpretedOption; /** * Verifies an UninterpretedOption message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an UninterpretedOption message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns UninterpretedOption */ public static fromObject(object: { [k: string]: any }): google.protobuf.UninterpretedOption; /** * Creates a plain object from an UninterpretedOption message. Also converts values to other types if specified. * @param message UninterpretedOption * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.UninterpretedOption, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this UninterpretedOption to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for UninterpretedOption * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace UninterpretedOption { /** Properties of a NamePart. */ interface INamePart { /** NamePart namePart */ namePart: string; /** NamePart isExtension */ isExtension: boolean; } /** Represents a NamePart. */ class NamePart implements INamePart { /** * Constructs a new NamePart. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.UninterpretedOption.INamePart); /** NamePart namePart. */ public namePart: string; /** NamePart isExtension. */ public isExtension: boolean; /** * Creates a new NamePart instance using the specified properties. * @param [properties] Properties to set * @returns NamePart instance */ public static create(properties?: google.protobuf.UninterpretedOption.INamePart): google.protobuf.UninterpretedOption.NamePart; /** * Encodes the specified NamePart message. Does not implicitly {@link google.protobuf.UninterpretedOption.NamePart.verify|verify} messages. * @param message NamePart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.UninterpretedOption.INamePart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified NamePart message, length delimited. Does not implicitly {@link google.protobuf.UninterpretedOption.NamePart.verify|verify} messages. * @param message NamePart message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.UninterpretedOption.INamePart, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a NamePart message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns NamePart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.UninterpretedOption.NamePart; /** * Decodes a NamePart message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns NamePart * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.UninterpretedOption.NamePart; /** * Verifies a NamePart message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a NamePart message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns NamePart */ public static fromObject(object: { [k: string]: any }): google.protobuf.UninterpretedOption.NamePart; /** * Creates a plain object from a NamePart message. Also converts values to other types if specified. * @param message NamePart * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.UninterpretedOption.NamePart, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this NamePart to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for NamePart * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a FeatureSet. */ interface IFeatureSet { /** FeatureSet fieldPresence */ fieldPresence?: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence|null); /** FeatureSet enumType */ enumType?: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType|null); /** FeatureSet repeatedFieldEncoding */ repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null); /** FeatureSet utf8Validation */ utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null); /** FeatureSet messageEncoding */ messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null); /** FeatureSet jsonFormat */ jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null); } /** Represents a FeatureSet. */ class FeatureSet implements IFeatureSet { /** * Constructs a new FeatureSet. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFeatureSet); /** FeatureSet fieldPresence. */ public fieldPresence: (google.protobuf.FeatureSet.FieldPresence|keyof typeof google.protobuf.FeatureSet.FieldPresence); /** FeatureSet enumType. */ public enumType: (google.protobuf.FeatureSet.EnumType|keyof typeof google.protobuf.FeatureSet.EnumType); /** FeatureSet repeatedFieldEncoding. */ public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding); /** FeatureSet utf8Validation. */ public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation); /** FeatureSet messageEncoding. */ public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding); /** FeatureSet jsonFormat. */ public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat); /** * Creates a new FeatureSet instance using the specified properties. * @param [properties] Properties to set * @returns FeatureSet instance */ public static create(properties?: google.protobuf.IFeatureSet): google.protobuf.FeatureSet; /** * Encodes the specified FeatureSet message. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages. * @param message FeatureSet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FeatureSet message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.verify|verify} messages. * @param message FeatureSet message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFeatureSet, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FeatureSet message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FeatureSet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet; /** * Decodes a FeatureSet message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FeatureSet * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet; /** * Verifies a FeatureSet message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FeatureSet message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FeatureSet */ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet; /** * Creates a plain object from a FeatureSet message. Also converts values to other types if specified. * @param message FeatureSet * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FeatureSet, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FeatureSet to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FeatureSet * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FeatureSet { /** FieldPresence enum. */ enum FieldPresence { FIELD_PRESENCE_UNKNOWN = 0, EXPLICIT = 1, IMPLICIT = 2, LEGACY_REQUIRED = 3 } /** EnumType enum. */ enum EnumType { ENUM_TYPE_UNKNOWN = 0, OPEN = 1, CLOSED = 2 } /** RepeatedFieldEncoding enum. */ enum RepeatedFieldEncoding { REPEATED_FIELD_ENCODING_UNKNOWN = 0, PACKED = 1, EXPANDED = 2 } /** Utf8Validation enum. */ enum Utf8Validation { UTF8_VALIDATION_UNKNOWN = 0, VERIFY = 2, NONE = 3 } /** MessageEncoding enum. */ enum MessageEncoding { MESSAGE_ENCODING_UNKNOWN = 0, LENGTH_PREFIXED = 1, DELIMITED = 2 } /** JsonFormat enum. */ enum JsonFormat { JSON_FORMAT_UNKNOWN = 0, ALLOW = 1, LEGACY_BEST_EFFORT = 2 } } /** Properties of a FeatureSetDefaults. */ interface IFeatureSetDefaults { /** FeatureSetDefaults defaults */ defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null); /** FeatureSetDefaults minimumEdition */ minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null); /** FeatureSetDefaults maximumEdition */ maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null); } /** Represents a FeatureSetDefaults. */ class FeatureSetDefaults implements IFeatureSetDefaults { /** * Constructs a new FeatureSetDefaults. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFeatureSetDefaults); /** FeatureSetDefaults defaults. */ public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]; /** FeatureSetDefaults minimumEdition. */ public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition); /** FeatureSetDefaults maximumEdition. */ public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition); /** * Creates a new FeatureSetDefaults instance using the specified properties. * @param [properties] Properties to set * @returns FeatureSetDefaults instance */ public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults; /** * Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages. * @param message FeatureSetDefaults message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages. * @param message FeatureSetDefaults message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FeatureSetDefaults message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FeatureSetDefaults * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults; /** * Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FeatureSetDefaults * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults; /** * Verifies a FeatureSetDefaults message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FeatureSetDefaults */ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults; /** * Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified. * @param message FeatureSetDefaults * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FeatureSetDefaults to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FeatureSetDefaults * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace FeatureSetDefaults { /** Properties of a FeatureSetEditionDefault. */ interface IFeatureSetEditionDefault { /** FeatureSetEditionDefault edition */ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null); /** FeatureSetEditionDefault features */ features?: (google.protobuf.IFeatureSet|null); } /** Represents a FeatureSetEditionDefault. */ class FeatureSetEditionDefault implements IFeatureSetEditionDefault { /** * Constructs a new FeatureSetEditionDefault. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault); /** FeatureSetEditionDefault edition. */ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition); /** FeatureSetEditionDefault features. */ public features?: (google.protobuf.IFeatureSet|null); /** * Creates a new FeatureSetEditionDefault instance using the specified properties. * @param [properties] Properties to set * @returns FeatureSetEditionDefault instance */ public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault; /** * Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages. * @param message FeatureSetEditionDefault message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages. * @param message FeatureSetEditionDefault message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FeatureSetEditionDefault message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FeatureSetEditionDefault * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault; /** * Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FeatureSetEditionDefault * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault; /** * Verifies a FeatureSetEditionDefault message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FeatureSetEditionDefault */ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault; /** * Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified. * @param message FeatureSetEditionDefault * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FeatureSetEditionDefault to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FeatureSetEditionDefault * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a SourceCodeInfo. */ interface ISourceCodeInfo { /** SourceCodeInfo location */ location?: (google.protobuf.SourceCodeInfo.ILocation[]|null); } /** Represents a SourceCodeInfo. */ class SourceCodeInfo implements ISourceCodeInfo { /** * Constructs a new SourceCodeInfo. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.ISourceCodeInfo); /** SourceCodeInfo location. */ public location: google.protobuf.SourceCodeInfo.ILocation[]; /** * Creates a new SourceCodeInfo instance using the specified properties. * @param [properties] Properties to set * @returns SourceCodeInfo instance */ public static create(properties?: google.protobuf.ISourceCodeInfo): google.protobuf.SourceCodeInfo; /** * Encodes the specified SourceCodeInfo message. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages. * @param message SourceCodeInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified SourceCodeInfo message, length delimited. Does not implicitly {@link google.protobuf.SourceCodeInfo.verify|verify} messages. * @param message SourceCodeInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.ISourceCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a SourceCodeInfo message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns SourceCodeInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo; /** * Decodes a SourceCodeInfo message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns SourceCodeInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.SourceCodeInfo; /** * Verifies a SourceCodeInfo message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a SourceCodeInfo message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns SourceCodeInfo */ public static fromObject(object: { [k: string]: any }): google.protobuf.SourceCodeInfo; /** * Creates a plain object from a SourceCodeInfo message. Also converts values to other types if specified. * @param message SourceCodeInfo * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.SourceCodeInfo, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this SourceCodeInfo to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for SourceCodeInfo * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace SourceCodeInfo { /** Properties of a Location. */ interface ILocation { /** Location path */ path?: (number[]|null); /** Location span */ span?: (number[]|null); /** Location leadingComments */ leadingComments?: (string|null); /** Location trailingComments */ trailingComments?: (string|null); /** Location leadingDetachedComments */ leadingDetachedComments?: (string[]|null); } /** Represents a Location. */ class Location implements ILocation { /** * Constructs a new Location. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.SourceCodeInfo.ILocation); /** Location path. */ public path: number[]; /** Location span. */ public span: number[]; /** Location leadingComments. */ public leadingComments: string; /** Location trailingComments. */ public trailingComments: string; /** Location leadingDetachedComments. */ public leadingDetachedComments: string[]; /** * Creates a new Location instance using the specified properties. * @param [properties] Properties to set * @returns Location instance */ public static create(properties?: google.protobuf.SourceCodeInfo.ILocation): google.protobuf.SourceCodeInfo.Location; /** * Encodes the specified Location message. Does not implicitly {@link google.protobuf.SourceCodeInfo.Location.verify|verify} messages. * @param message Location message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.SourceCodeInfo.ILocation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Location message, length delimited. Does not implicitly {@link google.protobuf.SourceCodeInfo.Location.verify|verify} messages. * @param message Location message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.SourceCodeInfo.ILocation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Location message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Location * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.SourceCodeInfo.Location; /** * Decodes a Location message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Location * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.SourceCodeInfo.Location; /** * Verifies a Location message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Location message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Location */ public static fromObject(object: { [k: string]: any }): google.protobuf.SourceCodeInfo.Location; /** * Creates a plain object from a Location message. Also converts values to other types if specified. * @param message Location * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.SourceCodeInfo.Location, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Location to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Location * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Properties of a GeneratedCodeInfo. */ interface IGeneratedCodeInfo { /** GeneratedCodeInfo annotation */ annotation?: (google.protobuf.GeneratedCodeInfo.IAnnotation[]|null); } /** Represents a GeneratedCodeInfo. */ class GeneratedCodeInfo implements IGeneratedCodeInfo { /** * Constructs a new GeneratedCodeInfo. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IGeneratedCodeInfo); /** GeneratedCodeInfo annotation. */ public annotation: google.protobuf.GeneratedCodeInfo.IAnnotation[]; /** * Creates a new GeneratedCodeInfo instance using the specified properties. * @param [properties] Properties to set * @returns GeneratedCodeInfo instance */ public static create(properties?: google.protobuf.IGeneratedCodeInfo): google.protobuf.GeneratedCodeInfo; /** * Encodes the specified GeneratedCodeInfo message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.verify|verify} messages. * @param message GeneratedCodeInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IGeneratedCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GeneratedCodeInfo message, length delimited. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.verify|verify} messages. * @param message GeneratedCodeInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IGeneratedCodeInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GeneratedCodeInfo message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GeneratedCodeInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.GeneratedCodeInfo; /** * Decodes a GeneratedCodeInfo message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GeneratedCodeInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.GeneratedCodeInfo; /** * Verifies a GeneratedCodeInfo message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GeneratedCodeInfo message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GeneratedCodeInfo */ public static fromObject(object: { [k: string]: any }): google.protobuf.GeneratedCodeInfo; /** * Creates a plain object from a GeneratedCodeInfo message. Also converts values to other types if specified. * @param message GeneratedCodeInfo * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.GeneratedCodeInfo, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GeneratedCodeInfo to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GeneratedCodeInfo * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace GeneratedCodeInfo { /** Properties of an Annotation. */ interface IAnnotation { /** Annotation path */ path?: (number[]|null); /** Annotation sourceFile */ sourceFile?: (string|null); /** Annotation begin */ begin?: (number|null); /** Annotation end */ end?: (number|null); /** Annotation semantic */ semantic?: (google.protobuf.GeneratedCodeInfo.Annotation.Semantic|keyof typeof google.protobuf.GeneratedCodeInfo.Annotation.Semantic|null); } /** Represents an Annotation. */ class Annotation implements IAnnotation { /** * Constructs a new Annotation. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.GeneratedCodeInfo.IAnnotation); /** Annotation path. */ public path: number[]; /** Annotation sourceFile. */ public sourceFile: string; /** Annotation begin. */ public begin: number; /** Annotation end. */ public end: number; /** Annotation semantic. */ public semantic: (google.protobuf.GeneratedCodeInfo.Annotation.Semantic|keyof typeof google.protobuf.GeneratedCodeInfo.Annotation.Semantic); /** * Creates a new Annotation instance using the specified properties. * @param [properties] Properties to set * @returns Annotation instance */ public static create(properties?: google.protobuf.GeneratedCodeInfo.IAnnotation): google.protobuf.GeneratedCodeInfo.Annotation; /** * Encodes the specified Annotation message. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.Annotation.verify|verify} messages. * @param message Annotation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.GeneratedCodeInfo.IAnnotation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Annotation message, length delimited. Does not implicitly {@link google.protobuf.GeneratedCodeInfo.Annotation.verify|verify} messages. * @param message Annotation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.GeneratedCodeInfo.IAnnotation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Annotation message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Annotation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.GeneratedCodeInfo.Annotation; /** * Decodes an Annotation message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Annotation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.GeneratedCodeInfo.Annotation; /** * Verifies an Annotation message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Annotation message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Annotation */ public static fromObject(object: { [k: string]: any }): google.protobuf.GeneratedCodeInfo.Annotation; /** * Creates a plain object from an Annotation message. Also converts values to other types if specified. * @param message Annotation * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.GeneratedCodeInfo.Annotation, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Annotation to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Annotation * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } namespace Annotation { /** Semantic enum. */ enum Semantic { NONE = 0, SET = 1, ALIAS = 2 } } } /** Properties of a Duration. */ interface IDuration { /** Duration seconds */ seconds?: (number|Long|string|null); /** Duration nanos */ nanos?: (number|null); } /** Represents a Duration. */ class Duration implements IDuration { /** * Constructs a new Duration. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IDuration); /** Duration seconds. */ public seconds: (number|Long|string); /** Duration nanos. */ public nanos: number; /** * Creates a new Duration instance using the specified properties. * @param [properties] Properties to set * @returns Duration instance */ public static create(properties?: google.protobuf.IDuration): google.protobuf.Duration; /** * Encodes the specified Duration message. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages. * @param message Duration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Duration message, length delimited. Does not implicitly {@link google.protobuf.Duration.verify|verify} messages. * @param message Duration message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IDuration, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Duration message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Duration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Duration; /** * Decodes a Duration message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Duration * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Duration; /** * Verifies a Duration message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Duration message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Duration */ public static fromObject(object: { [k: string]: any }): google.protobuf.Duration; /** * Creates a plain object from a Duration message. Also converts values to other types if specified. * @param message Duration * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Duration, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Duration to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Duration * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Struct. */ interface IStruct { /** Struct fields */ fields?: ({ [k: string]: google.protobuf.IValue }|null); } /** Represents a Struct. */ class Struct implements IStruct { /** * Constructs a new Struct. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IStruct); /** Struct fields. */ public fields: { [k: string]: google.protobuf.IValue }; /** * Creates a new Struct instance using the specified properties. * @param [properties] Properties to set * @returns Struct instance */ public static create(properties?: google.protobuf.IStruct): google.protobuf.Struct; /** * Encodes the specified Struct message. Does not implicitly {@link google.protobuf.Struct.verify|verify} messages. * @param message Struct message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IStruct, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Struct message, length delimited. Does not implicitly {@link google.protobuf.Struct.verify|verify} messages. * @param message Struct message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IStruct, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Struct message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Struct * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Struct; /** * Decodes a Struct message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Struct * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Struct; /** * Verifies a Struct message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Struct message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Struct */ public static fromObject(object: { [k: string]: any }): google.protobuf.Struct; /** * Creates a plain object from a Struct message. Also converts values to other types if specified. * @param message Struct * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Struct, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Struct to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Struct * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Value. */ interface IValue { /** Value nullValue */ nullValue?: (google.protobuf.NullValue|keyof typeof google.protobuf.NullValue|null); /** Value numberValue */ numberValue?: (number|null); /** Value stringValue */ stringValue?: (string|null); /** Value boolValue */ boolValue?: (boolean|null); /** Value structValue */ structValue?: (google.protobuf.IStruct|null); /** Value listValue */ listValue?: (google.protobuf.IListValue|null); } /** Represents a Value. */ class Value implements IValue { /** * Constructs a new Value. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IValue); /** Value nullValue. */ public nullValue?: (google.protobuf.NullValue|keyof typeof google.protobuf.NullValue|null); /** Value numberValue. */ public numberValue?: (number|null); /** Value stringValue. */ public stringValue?: (string|null); /** Value boolValue. */ public boolValue?: (boolean|null); /** Value structValue. */ public structValue?: (google.protobuf.IStruct|null); /** Value listValue. */ public listValue?: (google.protobuf.IListValue|null); /** Value kind. */ public kind?: ("nullValue"|"numberValue"|"stringValue"|"boolValue"|"structValue"|"listValue"); /** * Creates a new Value instance using the specified properties. * @param [properties] Properties to set * @returns Value instance */ public static create(properties?: google.protobuf.IValue): google.protobuf.Value; /** * Encodes the specified Value message. Does not implicitly {@link google.protobuf.Value.verify|verify} messages. * @param message Value message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Value message, length delimited. Does not implicitly {@link google.protobuf.Value.verify|verify} messages. * @param message Value message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Value message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Value * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Value; /** * Decodes a Value message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Value * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Value; /** * Verifies a Value message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Value message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Value */ public static fromObject(object: { [k: string]: any }): google.protobuf.Value; /** * Creates a plain object from a Value message. Also converts values to other types if specified. * @param message Value * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Value, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Value to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Value * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** NullValue enum. */ enum NullValue { NULL_VALUE = 0 } /** Properties of a ListValue. */ interface IListValue { /** ListValue values */ values?: (google.protobuf.IValue[]|null); } /** Represents a ListValue. */ class ListValue implements IListValue { /** * Constructs a new ListValue. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IListValue); /** ListValue values. */ public values: google.protobuf.IValue[]; /** * Creates a new ListValue instance using the specified properties. * @param [properties] Properties to set * @returns ListValue instance */ public static create(properties?: google.protobuf.IListValue): google.protobuf.ListValue; /** * Encodes the specified ListValue message. Does not implicitly {@link google.protobuf.ListValue.verify|verify} messages. * @param message ListValue message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IListValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListValue message, length delimited. Does not implicitly {@link google.protobuf.ListValue.verify|verify} messages. * @param message ListValue message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IListValue, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListValue message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListValue * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.ListValue; /** * Decodes a ListValue message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListValue * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.ListValue; /** * Verifies a ListValue message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListValue message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListValue */ public static fromObject(object: { [k: string]: any }): google.protobuf.ListValue; /** * Creates a plain object from a ListValue message. Also converts values to other types if specified. * @param message ListValue * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.ListValue, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListValue to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListValue * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a Timestamp. */ interface ITimestamp { /** Timestamp seconds */ seconds?: (number|Long|string|null); /** Timestamp nanos */ nanos?: (number|null); } /** Represents a Timestamp. */ class Timestamp implements ITimestamp { /** * Constructs a new Timestamp. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.ITimestamp); /** Timestamp seconds. */ public seconds: (number|Long|string); /** Timestamp nanos. */ public nanos: number; /** * Creates a new Timestamp instance using the specified properties. * @param [properties] Properties to set * @returns Timestamp instance */ public static create(properties?: google.protobuf.ITimestamp): google.protobuf.Timestamp; /** * Encodes the specified Timestamp message. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages. * @param message Timestamp message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Timestamp message, length delimited. Does not implicitly {@link google.protobuf.Timestamp.verify|verify} messages. * @param message Timestamp message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.ITimestamp, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Timestamp message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Timestamp * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Timestamp; /** * Decodes a Timestamp message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Timestamp * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Timestamp; /** * Verifies a Timestamp message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Timestamp message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Timestamp */ public static fromObject(object: { [k: string]: any }): google.protobuf.Timestamp; /** * Creates a plain object from a Timestamp message. Also converts values to other types if specified. * @param message Timestamp * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Timestamp, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Timestamp to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Timestamp * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Empty. */ interface IEmpty { } /** Represents an Empty. */ class Empty implements IEmpty { /** * Constructs a new Empty. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IEmpty); /** * Creates a new Empty instance using the specified properties. * @param [properties] Properties to set * @returns Empty instance */ public static create(properties?: google.protobuf.IEmpty): google.protobuf.Empty; /** * Encodes the specified Empty message. Does not implicitly {@link google.protobuf.Empty.verify|verify} messages. * @param message Empty message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IEmpty, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Empty message, length delimited. Does not implicitly {@link google.protobuf.Empty.verify|verify} messages. * @param message Empty message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IEmpty, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Empty message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Empty * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Empty; /** * Decodes an Empty message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Empty * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Empty; /** * Verifies an Empty message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Empty message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Empty */ public static fromObject(object: { [k: string]: any }): google.protobuf.Empty; /** * Creates a plain object from an Empty message. Also converts values to other types if specified. * @param message Empty * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Empty, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Empty to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Empty * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a FieldMask. */ interface IFieldMask { /** FieldMask paths */ paths?: (string[]|null); } /** Represents a FieldMask. */ class FieldMask implements IFieldMask { /** * Constructs a new FieldMask. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IFieldMask); /** FieldMask paths. */ public paths: string[]; /** * Creates a new FieldMask instance using the specified properties. * @param [properties] Properties to set * @returns FieldMask instance */ public static create(properties?: google.protobuf.IFieldMask): google.protobuf.FieldMask; /** * Encodes the specified FieldMask message. Does not implicitly {@link google.protobuf.FieldMask.verify|verify} messages. * @param message FieldMask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IFieldMask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified FieldMask message, length delimited. Does not implicitly {@link google.protobuf.FieldMask.verify|verify} messages. * @param message FieldMask message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IFieldMask, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a FieldMask message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns FieldMask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldMask; /** * Decodes a FieldMask message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns FieldMask * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldMask; /** * Verifies a FieldMask message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a FieldMask message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns FieldMask */ public static fromObject(object: { [k: string]: any }): google.protobuf.FieldMask; /** * Creates a plain object from a FieldMask message. Also converts values to other types if specified. * @param message FieldMask * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.FieldMask, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this FieldMask to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for FieldMask * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an Any. */ interface IAny { /** Any type_url */ type_url?: (string|null); /** Any value */ value?: (Uint8Array|Buffer|string|null); } /** Represents an Any. */ class Any implements IAny { /** * Constructs a new Any. * @param [properties] Properties to set */ constructor(properties?: google.protobuf.IAny); /** Any type_url. */ public type_url: string; /** Any value. */ public value: (Uint8Array|Buffer|string); /** * Creates a new Any instance using the specified properties. * @param [properties] Properties to set * @returns Any instance */ public static create(properties?: google.protobuf.IAny): google.protobuf.Any; /** * Encodes the specified Any message. Does not implicitly {@link google.protobuf.Any.verify|verify} messages. * @param message Any message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.protobuf.IAny, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Any message, length delimited. Does not implicitly {@link google.protobuf.Any.verify|verify} messages. * @param message Any message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.protobuf.IAny, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Any message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Any * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.Any; /** * Decodes an Any message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Any * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.Any; /** * Verifies an Any message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Any message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Any */ public static fromObject(object: { [k: string]: any }): google.protobuf.Any; /** * Creates a plain object from an Any message. Also converts values to other types if specified. * @param message Any * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.protobuf.Any, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Any to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Any * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace rpc. */ namespace rpc { /** Properties of a Status. */ interface IStatus { /** Status code */ code?: (number|null); /** Status message */ message?: (string|null); /** Status details */ details?: (google.protobuf.IAny[]|null); } /** Represents a Status. */ class Status implements IStatus { /** * Constructs a new Status. * @param [properties] Properties to set */ constructor(properties?: google.rpc.IStatus); /** Status code. */ public code: number; /** Status message. */ public message: string; /** Status details. */ public details: google.protobuf.IAny[]; /** * Creates a new Status instance using the specified properties. * @param [properties] Properties to set * @returns Status instance */ public static create(properties?: google.rpc.IStatus): google.rpc.Status; /** * Encodes the specified Status message. Does not implicitly {@link google.rpc.Status.verify|verify} messages. * @param message Status message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.rpc.IStatus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Status message, length delimited. Does not implicitly {@link google.rpc.Status.verify|verify} messages. * @param message Status message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.rpc.IStatus, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a Status message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Status * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.rpc.Status; /** * Decodes a Status message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Status * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.rpc.Status; /** * Verifies a Status message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a Status message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Status */ public static fromObject(object: { [k: string]: any }): google.rpc.Status; /** * Creates a plain object from a Status message. Also converts values to other types if specified. * @param message Status * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.rpc.Status, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Status to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Status * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace longrunning. */ namespace longrunning { /** Represents an Operations */ class Operations extends $protobuf.rpc.Service { /** * Constructs a new Operations service. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited */ constructor(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean); /** * Creates new Operations service using the specified rpc implementation. * @param rpcImpl RPC implementation * @param [requestDelimited=false] Whether requests are length-delimited * @param [responseDelimited=false] Whether responses are length-delimited * @returns RPC service. Useful where requests and/or responses are streamed. */ public static create(rpcImpl: $protobuf.RPCImpl, requestDelimited?: boolean, responseDelimited?: boolean): Operations; /** * Calls ListOperations. * @param request ListOperationsRequest message or plain object * @param callback Node-style callback called with the error, if any, and ListOperationsResponse */ public listOperations(request: google.longrunning.IListOperationsRequest, callback: google.longrunning.Operations.ListOperationsCallback): void; /** * Calls ListOperations. * @param request ListOperationsRequest message or plain object * @returns Promise */ public listOperations(request: google.longrunning.IListOperationsRequest): Promise; /** * Calls GetOperation. * @param request GetOperationRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public getOperation(request: google.longrunning.IGetOperationRequest, callback: google.longrunning.Operations.GetOperationCallback): void; /** * Calls GetOperation. * @param request GetOperationRequest message or plain object * @returns Promise */ public getOperation(request: google.longrunning.IGetOperationRequest): Promise; /** * Calls DeleteOperation. * @param request DeleteOperationRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public deleteOperation(request: google.longrunning.IDeleteOperationRequest, callback: google.longrunning.Operations.DeleteOperationCallback): void; /** * Calls DeleteOperation. * @param request DeleteOperationRequest message or plain object * @returns Promise */ public deleteOperation(request: google.longrunning.IDeleteOperationRequest): Promise; /** * Calls CancelOperation. * @param request CancelOperationRequest message or plain object * @param callback Node-style callback called with the error, if any, and Empty */ public cancelOperation(request: google.longrunning.ICancelOperationRequest, callback: google.longrunning.Operations.CancelOperationCallback): void; /** * Calls CancelOperation. * @param request CancelOperationRequest message or plain object * @returns Promise */ public cancelOperation(request: google.longrunning.ICancelOperationRequest): Promise; /** * Calls WaitOperation. * @param request WaitOperationRequest message or plain object * @param callback Node-style callback called with the error, if any, and Operation */ public waitOperation(request: google.longrunning.IWaitOperationRequest, callback: google.longrunning.Operations.WaitOperationCallback): void; /** * Calls WaitOperation. * @param request WaitOperationRequest message or plain object * @returns Promise */ public waitOperation(request: google.longrunning.IWaitOperationRequest): Promise; } namespace Operations { /** * Callback as used by {@link google.longrunning.Operations|listOperations}. * @param error Error, if any * @param [response] ListOperationsResponse */ type ListOperationsCallback = (error: (Error|null), response?: google.longrunning.ListOperationsResponse) => void; /** * Callback as used by {@link google.longrunning.Operations|getOperation}. * @param error Error, if any * @param [response] Operation */ type GetOperationCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; /** * Callback as used by {@link google.longrunning.Operations|deleteOperation}. * @param error Error, if any * @param [response] Empty */ type DeleteOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.longrunning.Operations|cancelOperation}. * @param error Error, if any * @param [response] Empty */ type CancelOperationCallback = (error: (Error|null), response?: google.protobuf.Empty) => void; /** * Callback as used by {@link google.longrunning.Operations|waitOperation}. * @param error Error, if any * @param [response] Operation */ type WaitOperationCallback = (error: (Error|null), response?: google.longrunning.Operation) => void; } /** Properties of an Operation. */ interface IOperation { /** Operation name */ name?: (string|null); /** Operation metadata */ metadata?: (google.protobuf.IAny|null); /** Operation done */ done?: (boolean|null); /** Operation error */ error?: (google.rpc.IStatus|null); /** Operation response */ response?: (google.protobuf.IAny|null); } /** Represents an Operation. */ class Operation implements IOperation { /** * Constructs a new Operation. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IOperation); /** Operation name. */ public name: string; /** Operation metadata. */ public metadata?: (google.protobuf.IAny|null); /** Operation done. */ public done: boolean; /** Operation error. */ public error?: (google.rpc.IStatus|null); /** Operation response. */ public response?: (google.protobuf.IAny|null); /** Operation result. */ public result?: ("error"|"response"); /** * Creates a new Operation instance using the specified properties. * @param [properties] Properties to set * @returns Operation instance */ public static create(properties?: google.longrunning.IOperation): google.longrunning.Operation; /** * Encodes the specified Operation message. Does not implicitly {@link google.longrunning.Operation.verify|verify} messages. * @param message Operation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IOperation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Operation message, length delimited. Does not implicitly {@link google.longrunning.Operation.verify|verify} messages. * @param message Operation message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IOperation, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Operation message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Operation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.Operation; /** * Decodes an Operation message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Operation * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.Operation; /** * Verifies an Operation message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Operation message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Operation */ public static fromObject(object: { [k: string]: any }): google.longrunning.Operation; /** * Creates a plain object from an Operation message. Also converts values to other types if specified. * @param message Operation * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.Operation, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Operation to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Operation * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a GetOperationRequest. */ interface IGetOperationRequest { /** GetOperationRequest name */ name?: (string|null); } /** Represents a GetOperationRequest. */ class GetOperationRequest implements IGetOperationRequest { /** * Constructs a new GetOperationRequest. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IGetOperationRequest); /** GetOperationRequest name. */ public name: string; /** * Creates a new GetOperationRequest instance using the specified properties. * @param [properties] Properties to set * @returns GetOperationRequest instance */ public static create(properties?: google.longrunning.IGetOperationRequest): google.longrunning.GetOperationRequest; /** * Encodes the specified GetOperationRequest message. Does not implicitly {@link google.longrunning.GetOperationRequest.verify|verify} messages. * @param message GetOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IGetOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified GetOperationRequest message, length delimited. Does not implicitly {@link google.longrunning.GetOperationRequest.verify|verify} messages. * @param message GetOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IGetOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a GetOperationRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns GetOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.GetOperationRequest; /** * Decodes a GetOperationRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns GetOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.GetOperationRequest; /** * Verifies a GetOperationRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a GetOperationRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns GetOperationRequest */ public static fromObject(object: { [k: string]: any }): google.longrunning.GetOperationRequest; /** * Creates a plain object from a GetOperationRequest message. Also converts values to other types if specified. * @param message GetOperationRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.GetOperationRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this GetOperationRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for GetOperationRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListOperationsRequest. */ interface IListOperationsRequest { /** ListOperationsRequest name */ name?: (string|null); /** ListOperationsRequest filter */ filter?: (string|null); /** ListOperationsRequest pageSize */ pageSize?: (number|null); /** ListOperationsRequest pageToken */ pageToken?: (string|null); } /** Represents a ListOperationsRequest. */ class ListOperationsRequest implements IListOperationsRequest { /** * Constructs a new ListOperationsRequest. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IListOperationsRequest); /** ListOperationsRequest name. */ public name: string; /** ListOperationsRequest filter. */ public filter: string; /** ListOperationsRequest pageSize. */ public pageSize: number; /** ListOperationsRequest pageToken. */ public pageToken: string; /** * Creates a new ListOperationsRequest instance using the specified properties. * @param [properties] Properties to set * @returns ListOperationsRequest instance */ public static create(properties?: google.longrunning.IListOperationsRequest): google.longrunning.ListOperationsRequest; /** * Encodes the specified ListOperationsRequest message. Does not implicitly {@link google.longrunning.ListOperationsRequest.verify|verify} messages. * @param message ListOperationsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IListOperationsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListOperationsRequest message, length delimited. Does not implicitly {@link google.longrunning.ListOperationsRequest.verify|verify} messages. * @param message ListOperationsRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IListOperationsRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListOperationsRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListOperationsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.ListOperationsRequest; /** * Decodes a ListOperationsRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListOperationsRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.ListOperationsRequest; /** * Verifies a ListOperationsRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListOperationsRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListOperationsRequest */ public static fromObject(object: { [k: string]: any }): google.longrunning.ListOperationsRequest; /** * Creates a plain object from a ListOperationsRequest message. Also converts values to other types if specified. * @param message ListOperationsRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.ListOperationsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListOperationsRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListOperationsRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a ListOperationsResponse. */ interface IListOperationsResponse { /** ListOperationsResponse operations */ operations?: (google.longrunning.IOperation[]|null); /** ListOperationsResponse nextPageToken */ nextPageToken?: (string|null); } /** Represents a ListOperationsResponse. */ class ListOperationsResponse implements IListOperationsResponse { /** * Constructs a new ListOperationsResponse. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IListOperationsResponse); /** ListOperationsResponse operations. */ public operations: google.longrunning.IOperation[]; /** ListOperationsResponse nextPageToken. */ public nextPageToken: string; /** * Creates a new ListOperationsResponse instance using the specified properties. * @param [properties] Properties to set * @returns ListOperationsResponse instance */ public static create(properties?: google.longrunning.IListOperationsResponse): google.longrunning.ListOperationsResponse; /** * Encodes the specified ListOperationsResponse message. Does not implicitly {@link google.longrunning.ListOperationsResponse.verify|verify} messages. * @param message ListOperationsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IListOperationsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified ListOperationsResponse message, length delimited. Does not implicitly {@link google.longrunning.ListOperationsResponse.verify|verify} messages. * @param message ListOperationsResponse message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IListOperationsResponse, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a ListOperationsResponse message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns ListOperationsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.ListOperationsResponse; /** * Decodes a ListOperationsResponse message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns ListOperationsResponse * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.ListOperationsResponse; /** * Verifies a ListOperationsResponse message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a ListOperationsResponse message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns ListOperationsResponse */ public static fromObject(object: { [k: string]: any }): google.longrunning.ListOperationsResponse; /** * Creates a plain object from a ListOperationsResponse message. Also converts values to other types if specified. * @param message ListOperationsResponse * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.ListOperationsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this ListOperationsResponse to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for ListOperationsResponse * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a CancelOperationRequest. */ interface ICancelOperationRequest { /** CancelOperationRequest name */ name?: (string|null); } /** Represents a CancelOperationRequest. */ class CancelOperationRequest implements ICancelOperationRequest { /** * Constructs a new CancelOperationRequest. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.ICancelOperationRequest); /** CancelOperationRequest name. */ public name: string; /** * Creates a new CancelOperationRequest instance using the specified properties. * @param [properties] Properties to set * @returns CancelOperationRequest instance */ public static create(properties?: google.longrunning.ICancelOperationRequest): google.longrunning.CancelOperationRequest; /** * Encodes the specified CancelOperationRequest message. Does not implicitly {@link google.longrunning.CancelOperationRequest.verify|verify} messages. * @param message CancelOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.ICancelOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified CancelOperationRequest message, length delimited. Does not implicitly {@link google.longrunning.CancelOperationRequest.verify|verify} messages. * @param message CancelOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.ICancelOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a CancelOperationRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns CancelOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.CancelOperationRequest; /** * Decodes a CancelOperationRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns CancelOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.CancelOperationRequest; /** * Verifies a CancelOperationRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a CancelOperationRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns CancelOperationRequest */ public static fromObject(object: { [k: string]: any }): google.longrunning.CancelOperationRequest; /** * Creates a plain object from a CancelOperationRequest message. Also converts values to other types if specified. * @param message CancelOperationRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.CancelOperationRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this CancelOperationRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for CancelOperationRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a DeleteOperationRequest. */ interface IDeleteOperationRequest { /** DeleteOperationRequest name */ name?: (string|null); } /** Represents a DeleteOperationRequest. */ class DeleteOperationRequest implements IDeleteOperationRequest { /** * Constructs a new DeleteOperationRequest. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IDeleteOperationRequest); /** DeleteOperationRequest name. */ public name: string; /** * Creates a new DeleteOperationRequest instance using the specified properties. * @param [properties] Properties to set * @returns DeleteOperationRequest instance */ public static create(properties?: google.longrunning.IDeleteOperationRequest): google.longrunning.DeleteOperationRequest; /** * Encodes the specified DeleteOperationRequest message. Does not implicitly {@link google.longrunning.DeleteOperationRequest.verify|verify} messages. * @param message DeleteOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IDeleteOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified DeleteOperationRequest message, length delimited. Does not implicitly {@link google.longrunning.DeleteOperationRequest.verify|verify} messages. * @param message DeleteOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IDeleteOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a DeleteOperationRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns DeleteOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.DeleteOperationRequest; /** * Decodes a DeleteOperationRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns DeleteOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.DeleteOperationRequest; /** * Verifies a DeleteOperationRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a DeleteOperationRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns DeleteOperationRequest */ public static fromObject(object: { [k: string]: any }): google.longrunning.DeleteOperationRequest; /** * Creates a plain object from a DeleteOperationRequest message. Also converts values to other types if specified. * @param message DeleteOperationRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.DeleteOperationRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this DeleteOperationRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for DeleteOperationRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a WaitOperationRequest. */ interface IWaitOperationRequest { /** WaitOperationRequest name */ name?: (string|null); /** WaitOperationRequest timeout */ timeout?: (google.protobuf.IDuration|null); } /** Represents a WaitOperationRequest. */ class WaitOperationRequest implements IWaitOperationRequest { /** * Constructs a new WaitOperationRequest. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IWaitOperationRequest); /** WaitOperationRequest name. */ public name: string; /** WaitOperationRequest timeout. */ public timeout?: (google.protobuf.IDuration|null); /** * Creates a new WaitOperationRequest instance using the specified properties. * @param [properties] Properties to set * @returns WaitOperationRequest instance */ public static create(properties?: google.longrunning.IWaitOperationRequest): google.longrunning.WaitOperationRequest; /** * Encodes the specified WaitOperationRequest message. Does not implicitly {@link google.longrunning.WaitOperationRequest.verify|verify} messages. * @param message WaitOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IWaitOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified WaitOperationRequest message, length delimited. Does not implicitly {@link google.longrunning.WaitOperationRequest.verify|verify} messages. * @param message WaitOperationRequest message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IWaitOperationRequest, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a WaitOperationRequest message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns WaitOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.WaitOperationRequest; /** * Decodes a WaitOperationRequest message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns WaitOperationRequest * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.WaitOperationRequest; /** * Verifies a WaitOperationRequest message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a WaitOperationRequest message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns WaitOperationRequest */ public static fromObject(object: { [k: string]: any }): google.longrunning.WaitOperationRequest; /** * Creates a plain object from a WaitOperationRequest message. Also converts values to other types if specified. * @param message WaitOperationRequest * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.WaitOperationRequest, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this WaitOperationRequest to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for WaitOperationRequest * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of an OperationInfo. */ interface IOperationInfo { /** OperationInfo responseType */ responseType?: (string|null); /** OperationInfo metadataType */ metadataType?: (string|null); } /** Represents an OperationInfo. */ class OperationInfo implements IOperationInfo { /** * Constructs a new OperationInfo. * @param [properties] Properties to set */ constructor(properties?: google.longrunning.IOperationInfo); /** OperationInfo responseType. */ public responseType: string; /** OperationInfo metadataType. */ public metadataType: string; /** * Creates a new OperationInfo instance using the specified properties. * @param [properties] Properties to set * @returns OperationInfo instance */ public static create(properties?: google.longrunning.IOperationInfo): google.longrunning.OperationInfo; /** * Encodes the specified OperationInfo message. Does not implicitly {@link google.longrunning.OperationInfo.verify|verify} messages. * @param message OperationInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.longrunning.IOperationInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified OperationInfo message, length delimited. Does not implicitly {@link google.longrunning.OperationInfo.verify|verify} messages. * @param message OperationInfo message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.longrunning.IOperationInfo, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an OperationInfo message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns OperationInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.longrunning.OperationInfo; /** * Decodes an OperationInfo message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns OperationInfo * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.longrunning.OperationInfo; /** * Verifies an OperationInfo message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an OperationInfo message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns OperationInfo */ public static fromObject(object: { [k: string]: any }): google.longrunning.OperationInfo; /** * Creates a plain object from an OperationInfo message. Also converts values to other types if specified. * @param message OperationInfo * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.longrunning.OperationInfo, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this OperationInfo to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for OperationInfo * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } /** Namespace type. */ namespace type { /** Properties of an Interval. */ interface IInterval { /** Interval startTime */ startTime?: (google.protobuf.ITimestamp|null); /** Interval endTime */ endTime?: (google.protobuf.ITimestamp|null); } /** Represents an Interval. */ class Interval implements IInterval { /** * Constructs a new Interval. * @param [properties] Properties to set */ constructor(properties?: google.type.IInterval); /** Interval startTime. */ public startTime?: (google.protobuf.ITimestamp|null); /** Interval endTime. */ public endTime?: (google.protobuf.ITimestamp|null); /** * Creates a new Interval instance using the specified properties. * @param [properties] Properties to set * @returns Interval instance */ public static create(properties?: google.type.IInterval): google.type.Interval; /** * Encodes the specified Interval message. Does not implicitly {@link google.type.Interval.verify|verify} messages. * @param message Interval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.type.IInterval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified Interval message, length delimited. Does not implicitly {@link google.type.Interval.verify|verify} messages. * @param message Interval message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.type.IInterval, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes an Interval message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns Interval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.type.Interval; /** * Decodes an Interval message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns Interval * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.type.Interval; /** * Verifies an Interval message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates an Interval message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns Interval */ public static fromObject(object: { [k: string]: any }): google.type.Interval; /** * Creates a plain object from an Interval message. Also converts values to other types if specified. * @param message Interval * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.type.Interval, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this Interval to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for Interval * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } /** Properties of a LatLng. */ interface ILatLng { /** LatLng latitude */ latitude?: (number|null); /** LatLng longitude */ longitude?: (number|null); } /** Represents a LatLng. */ class LatLng implements ILatLng { /** * Constructs a new LatLng. * @param [properties] Properties to set */ constructor(properties?: google.type.ILatLng); /** LatLng latitude. */ public latitude: number; /** LatLng longitude. */ public longitude: number; /** * Creates a new LatLng instance using the specified properties. * @param [properties] Properties to set * @returns LatLng instance */ public static create(properties?: google.type.ILatLng): google.type.LatLng; /** * Encodes the specified LatLng message. Does not implicitly {@link google.type.LatLng.verify|verify} messages. * @param message LatLng message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encode(message: google.type.ILatLng, writer?: $protobuf.Writer): $protobuf.Writer; /** * Encodes the specified LatLng message, length delimited. Does not implicitly {@link google.type.LatLng.verify|verify} messages. * @param message LatLng message or plain object to encode * @param [writer] Writer to encode to * @returns Writer */ public static encodeDelimited(message: google.type.ILatLng, writer?: $protobuf.Writer): $protobuf.Writer; /** * Decodes a LatLng message from the specified reader or buffer. * @param reader Reader or buffer to decode from * @param [length] Message length if known beforehand * @returns LatLng * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.type.LatLng; /** * Decodes a LatLng message from the specified reader or buffer, length delimited. * @param reader Reader or buffer to decode from * @returns LatLng * @throws {Error} If the payload is not a reader or valid buffer * @throws {$protobuf.util.ProtocolError} If required fields are missing */ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.type.LatLng; /** * Verifies a LatLng message. * @param message Plain object to verify * @returns `null` if valid, otherwise the reason why it is not */ public static verify(message: { [k: string]: any }): (string|null); /** * Creates a LatLng message from a plain object. Also converts values to their respective internal types. * @param object Plain object * @returns LatLng */ public static fromObject(object: { [k: string]: any }): google.type.LatLng; /** * Creates a plain object from a LatLng message. Also converts values to other types if specified. * @param message LatLng * @param [options] Conversion options * @returns Plain object */ public static toObject(message: google.type.LatLng, options?: $protobuf.IConversionOptions): { [k: string]: any }; /** * Converts this LatLng to JSON. * @returns JSON object */ public toJSON(): { [k: string]: any }; /** * Gets the default type url for LatLng * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") * @returns The default type url */ public static getTypeUrl(typeUrlPrefix?: string): string; } } }