export declare const GcsDestinationConfigGcsFileFormat: { /** * Unspecified Cloud Storage file format. */ readonly GcsFileFormatUnspecified: "GCS_FILE_FORMAT_UNSPECIFIED"; /** * Avro file format */ readonly Avro: "AVRO"; }; /** * File format that data should be written in. Deprecated field (b/169501737) - use file_format instead. */ export type GcsDestinationConfigGcsFileFormat = (typeof GcsDestinationConfigGcsFileFormat)[keyof typeof GcsDestinationConfigGcsFileFormat]; export declare const JsonFileFormatCompression: { /** * Unspecified json file compression. */ readonly JsonCompressionUnspecified: "JSON_COMPRESSION_UNSPECIFIED"; /** * Do not compress JSON file. */ readonly NoCompression: "NO_COMPRESSION"; /** * Gzip compression. */ readonly Gzip: "GZIP"; }; /** * Compression of the loaded JSON file. */ export type JsonFileFormatCompression = (typeof JsonFileFormatCompression)[keyof typeof JsonFileFormatCompression]; export declare const JsonFileFormatSchemaFileFormat: { /** * Unspecified schema file format. */ readonly SchemaFileFormatUnspecified: "SCHEMA_FILE_FORMAT_UNSPECIFIED"; /** * Do not attach schema file. */ readonly NoSchemaFile: "NO_SCHEMA_FILE"; /** * Avro schema format. */ readonly AvroSchemaFile: "AVRO_SCHEMA_FILE"; }; /** * The schema file format along JSON data files. */ export type JsonFileFormatSchemaFileFormat = (typeof JsonFileFormatSchemaFileFormat)[keyof typeof JsonFileFormatSchemaFileFormat]; export declare const StreamState: { /** * Unspecified stream state. */ readonly StateUnspecified: "STATE_UNSPECIFIED"; /** * The stream has been created. */ readonly Created: "CREATED"; /** * The stream is running. */ readonly Running: "RUNNING"; /** * The stream is paused. */ readonly Paused: "PAUSED"; /** * The stream is in maintenance mode. Updates are rejected on the resource in this state. */ readonly Maintenance: "MAINTENANCE"; /** * The stream is experiencing an error that is preventing data from being streamed. */ readonly Failed: "FAILED"; /** * The stream has experienced a terminal failure. */ readonly FailedPermanently: "FAILED_PERMANENTLY"; /** * The stream is starting, but not yet running. */ readonly Starting: "STARTING"; /** * The Stream is no longer reading new events, but still writing events in the buffer. */ readonly Draining: "DRAINING"; }; /** * The state of the stream. */ export type StreamState = (typeof StreamState)[keyof typeof StreamState];