1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationGcs
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.DestinationGcs

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    DestinationGcs Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.DestinationGcs;
    import com.pulumi.airbyte.DestinationGcsArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationCredentialArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationCredentialHmacKeyArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs;
    import com.pulumi.airbyte.inputs.DestinationGcsConfigurationFormatParquetColumnarStorageArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var myDestinationGcs = new DestinationGcs("myDestinationGcs", DestinationGcsArgs.builder()
                .configuration(DestinationGcsConfigurationArgs.builder()
                    .credential(DestinationGcsConfigurationCredentialArgs.builder()
                        .hmacKey(DestinationGcsConfigurationCredentialHmacKeyArgs.builder()
                            .credentialType("HMAC_KEY")
                            .hmacKeyAccessId("1234567890abcdefghij1234")
                            .hmacKeySecret("1234567890abcdefghij1234567890ABCDEFGHIJ")
                            .build())
                        .build())
                    .format(DestinationGcsConfigurationFormatArgs.builder()
                        .avroApacheAvro(DestinationGcsConfigurationFormatAvroApacheAvroArgs.builder()
                            .compressionCodec(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs.builder()
                                .bzip2(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args.builder()
                                    .codec("bzip2")
                                    .build())
                                .deflate(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs.builder()
                                    .codec("Deflate")
                                    .compressionLevel(8)
                                    .build())
                                .noCompression(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs.builder()
                                    .codec("no compression")
                                    .build())
                                .snappy(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs.builder()
                                    .codec("snappy")
                                    .build())
                                .xz(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs.builder()
                                    .codec("xz")
                                    .compressionLevel(7)
                                    .build())
                                .zstandard(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs.builder()
                                    .codec("zstandard")
                                    .compressionLevel(22)
                                    .includeChecksum(true)
                                    .build())
                                .build())
                            .formatType("Avro")
                            .build())
                        .csvCommaSeparatedValues(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs.builder()
                            .compression(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs.builder()
                                .gzip(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs.builder()
                                    .compressionType("GZIP")
                                    .build())
                                .noCompression(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs.builder()
                                    .compressionType("No Compression")
                                    .build())
                                .build())
                            .flattening("Root level flattening")
                            .formatType("CSV")
                            .build())
                        .jsonLinesNewlineDelimitedJson(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
                            .compression(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs.builder()
                                .gzip(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs.builder()
                                    .compressionType("GZIP")
                                    .build())
                                .noCompression(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs.builder()
                                    .compressionType("No Compression")
                                    .build())
                                .build())
                            .formatType("JSONL")
                            .build())
                        .parquetColumnarStorage(DestinationGcsConfigurationFormatParquetColumnarStorageArgs.builder()
                            .blockSizeMb(128)
                            .compressionCodec("LZ4")
                            .dictionaryEncoding(false)
                            .dictionaryPageSizeKb(1024)
                            .formatType("Parquet")
                            .maxPaddingSizeMb(8)
                            .pageSizeKb(1024)
                            .build())
                        .build())
                    .gcs_bucket_name("airbyte_sync")
                    .gcs_bucket_path("data_sync/test")
                    .gcs_bucket_region("australia-southeast2")
                    .build())
                .definitionId("fbdeaa3f-58d4-41ca-a298-54ecee1615a0")
                .workspaceId("0ffee906-5986-410b-95a7-80c6f12aeac3")
                .build());
    
        }
    }
    
    resources:
      myDestinationGcs:
        type: airbyte:DestinationGcs
        properties:
          configuration:
            credential:
              hmacKey:
                credentialType: HMAC_KEY
                hmacKeyAccessId: 1234567890abcdefghij1234
                hmacKeySecret: 1234567890abcdefghij1234567890ABCDEFGHIJ
            format:
              avroApacheAvro:
                compressionCodec:
                  bzip2:
                    codec: bzip2
                  deflate:
                    codec: Deflate
                    compressionLevel: 8
                  noCompression:
                    codec: no compression
                  snappy:
                    codec: snappy
                  xz:
                    codec: xz
                    compressionLevel: 7
                  zstandard:
                    codec: zstandard
                    compressionLevel: 22
                    includeChecksum: true
                formatType: Avro
              csvCommaSeparatedValues:
                compression:
                  gzip:
                    compressionType: GZIP
                  noCompression:
                    compressionType: No Compression
                flattening: Root level flattening
                formatType: CSV
              jsonLinesNewlineDelimitedJson:
                compression:
                  gzip:
                    compressionType: GZIP
                  noCompression:
                    compressionType: No Compression
                formatType: JSONL
              parquetColumnarStorage:
                blockSizeMb: 128
                compressionCodec: LZ4
                dictionaryEncoding: false
                dictionaryPageSizeKb: 1024
                formatType: Parquet
                maxPaddingSizeMb: 8
                pageSizeKb: 1024
            gcs_bucket_name: airbyte_sync
            gcs_bucket_path: data_sync/test
            gcs_bucket_region: australia-southeast2
          definitionId: fbdeaa3f-58d4-41ca-a298-54ecee1615a0
          workspaceId: 0ffee906-5986-410b-95a7-80c6f12aeac3
    

    Create DestinationGcs Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DestinationGcs(name: string, args: DestinationGcsArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationGcs(resource_name: str,
                       args: DestinationGcsArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationGcs(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       configuration: Optional[DestinationGcsConfigurationArgs] = None,
                       workspace_id: Optional[str] = None,
                       definition_id: Optional[str] = None,
                       name: Optional[str] = None)
    func NewDestinationGcs(ctx *Context, name string, args DestinationGcsArgs, opts ...ResourceOption) (*DestinationGcs, error)
    public DestinationGcs(string name, DestinationGcsArgs args, CustomResourceOptions? opts = null)
    public DestinationGcs(String name, DestinationGcsArgs args)
    public DestinationGcs(String name, DestinationGcsArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationGcs
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DestinationGcsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DestinationGcsArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DestinationGcsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationGcsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationGcsArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var destinationGcsResource = new Airbyte.DestinationGcs("destinationGcsResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationGcsConfigurationArgs
        {
            Credential = new Airbyte.Inputs.DestinationGcsConfigurationCredentialArgs
            {
                HmacKey = new Airbyte.Inputs.DestinationGcsConfigurationCredentialHmacKeyArgs
                {
                    HmacKeyAccessId = "string",
                    HmacKeySecret = "string",
                    CredentialType = "string",
                },
            },
            Format = new Airbyte.Inputs.DestinationGcsConfigurationFormatArgs
            {
                AvroApacheAvro = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroArgs
                {
                    CompressionCodec = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs
                    {
                        Bzip2 = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args
                        {
                            Codec = "string",
                        },
                        Deflate = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs
                        {
                            Codec = "string",
                            CompressionLevel = 0,
                        },
                        NoCompression = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs
                        {
                            Codec = "string",
                        },
                        Snappy = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs
                        {
                            Codec = "string",
                        },
                        Xz = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs
                        {
                            Codec = "string",
                            CompressionLevel = 0,
                        },
                        Zstandard = new Airbyte.Inputs.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs
                        {
                            Codec = "string",
                            CompressionLevel = 0,
                            IncludeChecksum = false,
                        },
                    },
                    FormatType = "string",
                },
                CsvCommaSeparatedValues = new Airbyte.Inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs
                {
                    Compression = new Airbyte.Inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs
                    {
                        Gzip = new Airbyte.Inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs
                        {
                            CompressionType = "string",
                        },
                        NoCompression = new Airbyte.Inputs.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs
                        {
                            CompressionType = "string",
                        },
                    },
                    Flattening = "string",
                    FormatType = "string",
                },
                JsonLinesNewlineDelimitedJson = new Airbyte.Inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
                {
                    Compression = new Airbyte.Inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
                    {
                        Gzip = new Airbyte.Inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
                        {
                            CompressionType = "string",
                        },
                        NoCompression = new Airbyte.Inputs.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
                        {
                            CompressionType = "string",
                        },
                    },
                    FormatType = "string",
                },
                ParquetColumnarStorage = new Airbyte.Inputs.DestinationGcsConfigurationFormatParquetColumnarStorageArgs
                {
                    BlockSizeMb = 0,
                    CompressionCodec = "string",
                    DictionaryEncoding = false,
                    DictionaryPageSizeKb = 0,
                    FormatType = "string",
                    MaxPaddingSizeMb = 0,
                    PageSizeKb = 0,
                },
            },
            GcsBucketName = "string",
            GcsBucketPath = "string",
            GcsBucketRegion = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationGcs(ctx, "destinationGcsResource", &airbyte.DestinationGcsArgs{
    Configuration: &.DestinationGcsConfigurationArgs{
    Credential: &.DestinationGcsConfigurationCredentialArgs{
    HmacKey: &.DestinationGcsConfigurationCredentialHmacKeyArgs{
    HmacKeyAccessId: pulumi.String("string"),
    HmacKeySecret: pulumi.String("string"),
    CredentialType: pulumi.String("string"),
    },
    },
    Format: &.DestinationGcsConfigurationFormatArgs{
    AvroApacheAvro: &.DestinationGcsConfigurationFormatAvroApacheAvroArgs{
    CompressionCodec: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs{
    Bzip2: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args{
    Codec: pulumi.String("string"),
    },
    Deflate: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs{
    Codec: pulumi.String("string"),
    CompressionLevel: pulumi.Float64(0),
    },
    NoCompression: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs{
    Codec: pulumi.String("string"),
    },
    Snappy: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs{
    Codec: pulumi.String("string"),
    },
    Xz: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs{
    Codec: pulumi.String("string"),
    CompressionLevel: pulumi.Float64(0),
    },
    Zstandard: &.DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs{
    Codec: pulumi.String("string"),
    CompressionLevel: pulumi.Float64(0),
    IncludeChecksum: pulumi.Bool(false),
    },
    },
    FormatType: pulumi.String("string"),
    },
    CsvCommaSeparatedValues: &.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs{
    Compression: &.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs{
    Gzip: &.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs{
    CompressionType: pulumi.String("string"),
    },
    NoCompression: &.DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs{
    CompressionType: pulumi.String("string"),
    },
    },
    Flattening: pulumi.String("string"),
    FormatType: pulumi.String("string"),
    },
    JsonLinesNewlineDelimitedJson: &.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs{
    Compression: &.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs{
    Gzip: &.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs{
    CompressionType: pulumi.String("string"),
    },
    NoCompression: &.DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs{
    CompressionType: pulumi.String("string"),
    },
    },
    FormatType: pulumi.String("string"),
    },
    ParquetColumnarStorage: &.DestinationGcsConfigurationFormatParquetColumnarStorageArgs{
    BlockSizeMb: pulumi.Float64(0),
    CompressionCodec: pulumi.String("string"),
    DictionaryEncoding: pulumi.Bool(false),
    DictionaryPageSizeKb: pulumi.Float64(0),
    FormatType: pulumi.String("string"),
    MaxPaddingSizeMb: pulumi.Float64(0),
    PageSizeKb: pulumi.Float64(0),
    },
    },
    GcsBucketName: pulumi.String("string"),
    GcsBucketPath: pulumi.String("string"),
    GcsBucketRegion: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationGcsResource = new DestinationGcs("destinationGcsResource", DestinationGcsArgs.builder()
        .configuration(DestinationGcsConfigurationArgs.builder()
            .credential(DestinationGcsConfigurationCredentialArgs.builder()
                .hmacKey(DestinationGcsConfigurationCredentialHmacKeyArgs.builder()
                    .hmacKeyAccessId("string")
                    .hmacKeySecret("string")
                    .credentialType("string")
                    .build())
                .build())
            .format(DestinationGcsConfigurationFormatArgs.builder()
                .avroApacheAvro(DestinationGcsConfigurationFormatAvroApacheAvroArgs.builder()
                    .compressionCodec(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs.builder()
                        .bzip2(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args.builder()
                            .codec("string")
                            .build())
                        .deflate(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs.builder()
                            .codec("string")
                            .compressionLevel(0)
                            .build())
                        .noCompression(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs.builder()
                            .codec("string")
                            .build())
                        .snappy(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs.builder()
                            .codec("string")
                            .build())
                        .xz(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs.builder()
                            .codec("string")
                            .compressionLevel(0)
                            .build())
                        .zstandard(DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs.builder()
                            .codec("string")
                            .compressionLevel(0)
                            .includeChecksum(false)
                            .build())
                        .build())
                    .formatType("string")
                    .build())
                .csvCommaSeparatedValues(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs.builder()
                    .compression(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs.builder()
                        .gzip(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs.builder()
                            .compressionType("string")
                            .build())
                        .noCompression(DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs.builder()
                            .compressionType("string")
                            .build())
                        .build())
                    .flattening("string")
                    .formatType("string")
                    .build())
                .jsonLinesNewlineDelimitedJson(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs.builder()
                    .compression(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs.builder()
                        .gzip(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs.builder()
                            .compressionType("string")
                            .build())
                        .noCompression(DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs.builder()
                            .compressionType("string")
                            .build())
                        .build())
                    .formatType("string")
                    .build())
                .parquetColumnarStorage(DestinationGcsConfigurationFormatParquetColumnarStorageArgs.builder()
                    .blockSizeMb(0)
                    .compressionCodec("string")
                    .dictionaryEncoding(false)
                    .dictionaryPageSizeKb(0)
                    .formatType("string")
                    .maxPaddingSizeMb(0)
                    .pageSizeKb(0)
                    .build())
                .build())
            .gcsBucketName("string")
            .gcsBucketPath("string")
            .gcsBucketRegion("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_gcs_resource = airbyte.DestinationGcs("destinationGcsResource",
        configuration={
            "credential": {
                "hmac_key": {
                    "hmac_key_access_id": "string",
                    "hmac_key_secret": "string",
                    "credential_type": "string",
                },
            },
            "format": {
                "avro_apache_avro": {
                    "compression_codec": {
                        "bzip2": {
                            "codec": "string",
                        },
                        "deflate": {
                            "codec": "string",
                            "compression_level": 0,
                        },
                        "no_compression": {
                            "codec": "string",
                        },
                        "snappy": {
                            "codec": "string",
                        },
                        "xz": {
                            "codec": "string",
                            "compression_level": 0,
                        },
                        "zstandard": {
                            "codec": "string",
                            "compression_level": 0,
                            "include_checksum": False,
                        },
                    },
                    "format_type": "string",
                },
                "csv_comma_separated_values": {
                    "compression": {
                        "gzip": {
                            "compression_type": "string",
                        },
                        "no_compression": {
                            "compression_type": "string",
                        },
                    },
                    "flattening": "string",
                    "format_type": "string",
                },
                "json_lines_newline_delimited_json": {
                    "compression": {
                        "gzip": {
                            "compression_type": "string",
                        },
                        "no_compression": {
                            "compression_type": "string",
                        },
                    },
                    "format_type": "string",
                },
                "parquet_columnar_storage": {
                    "block_size_mb": 0,
                    "compression_codec": "string",
                    "dictionary_encoding": False,
                    "dictionary_page_size_kb": 0,
                    "format_type": "string",
                    "max_padding_size_mb": 0,
                    "page_size_kb": 0,
                },
            },
            "gcs_bucket_name": "string",
            "gcs_bucket_path": "string",
            "gcs_bucket_region": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationGcsResource = new airbyte.DestinationGcs("destinationGcsResource", {
        configuration: {
            credential: {
                hmacKey: {
                    hmacKeyAccessId: "string",
                    hmacKeySecret: "string",
                    credentialType: "string",
                },
            },
            format: {
                avroApacheAvro: {
                    compressionCodec: {
                        bzip2: {
                            codec: "string",
                        },
                        deflate: {
                            codec: "string",
                            compressionLevel: 0,
                        },
                        noCompression: {
                            codec: "string",
                        },
                        snappy: {
                            codec: "string",
                        },
                        xz: {
                            codec: "string",
                            compressionLevel: 0,
                        },
                        zstandard: {
                            codec: "string",
                            compressionLevel: 0,
                            includeChecksum: false,
                        },
                    },
                    formatType: "string",
                },
                csvCommaSeparatedValues: {
                    compression: {
                        gzip: {
                            compressionType: "string",
                        },
                        noCompression: {
                            compressionType: "string",
                        },
                    },
                    flattening: "string",
                    formatType: "string",
                },
                jsonLinesNewlineDelimitedJson: {
                    compression: {
                        gzip: {
                            compressionType: "string",
                        },
                        noCompression: {
                            compressionType: "string",
                        },
                    },
                    formatType: "string",
                },
                parquetColumnarStorage: {
                    blockSizeMb: 0,
                    compressionCodec: "string",
                    dictionaryEncoding: false,
                    dictionaryPageSizeKb: 0,
                    formatType: "string",
                    maxPaddingSizeMb: 0,
                    pageSizeKb: 0,
                },
            },
            gcsBucketName: "string",
            gcsBucketPath: "string",
            gcsBucketRegion: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationGcs
    properties:
        configuration:
            credential:
                hmacKey:
                    credentialType: string
                    hmacKeyAccessId: string
                    hmacKeySecret: string
            format:
                avroApacheAvro:
                    compressionCodec:
                        bzip2:
                            codec: string
                        deflate:
                            codec: string
                            compressionLevel: 0
                        noCompression:
                            codec: string
                        snappy:
                            codec: string
                        xz:
                            codec: string
                            compressionLevel: 0
                        zstandard:
                            codec: string
                            compressionLevel: 0
                            includeChecksum: false
                    formatType: string
                csvCommaSeparatedValues:
                    compression:
                        gzip:
                            compressionType: string
                        noCompression:
                            compressionType: string
                    flattening: string
                    formatType: string
                jsonLinesNewlineDelimitedJson:
                    compression:
                        gzip:
                            compressionType: string
                        noCompression:
                            compressionType: string
                    formatType: string
                parquetColumnarStorage:
                    blockSizeMb: 0
                    compressionCodec: string
                    dictionaryEncoding: false
                    dictionaryPageSizeKb: 0
                    formatType: string
                    maxPaddingSizeMb: 0
                    pageSizeKb: 0
            gcsBucketName: string
            gcsBucketPath: string
            gcsBucketRegion: string
        definitionId: string
        name: string
        workspaceId: string
    

    DestinationGcs Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The DestinationGcs resource accepts the following input properties:

    Configuration DestinationGcsConfiguration
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationGcsConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationGcsConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationGcsConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationGcsConfigurationArgs
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationGcs resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DestinationGcs Resource

    Get an existing DestinationGcs resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DestinationGcsState, opts?: CustomResourceOptions): DestinationGcs
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationGcsConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            workspace_id: Optional[str] = None) -> DestinationGcs
    func GetDestinationGcs(ctx *Context, name string, id IDInput, state *DestinationGcsState, opts ...ResourceOption) (*DestinationGcs, error)
    public static DestinationGcs Get(string name, Input<string> id, DestinationGcsState? state, CustomResourceOptions? opts = null)
    public static DestinationGcs get(String name, Output<String> id, DestinationGcsState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationGcs    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Configuration DestinationGcsConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    Configuration DestinationGcsConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    WorkspaceId string
    configuration DestinationGcsConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String
    configuration DestinationGcsConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    workspaceId string
    configuration DestinationGcsConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    workspaceId String

    Supporting Types

    DestinationGcsConfiguration, DestinationGcsConfigurationArgs

    Credential DestinationGcsConfigurationCredential
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    Format DestinationGcsConfigurationFormat
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    GcsBucketName string
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    GcsBucketPath string
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    GcsBucketRegion string
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]
    Credential DestinationGcsConfigurationCredential
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    Format DestinationGcsConfigurationFormat
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    GcsBucketName string
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    GcsBucketPath string
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    GcsBucketRegion string
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]
    credential DestinationGcsConfigurationCredential
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    format DestinationGcsConfigurationFormat
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    gcsBucketName String
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    gcsBucketPath String
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    gcsBucketRegion String
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]
    credential DestinationGcsConfigurationCredential
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    format DestinationGcsConfigurationFormat
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    gcsBucketName string
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    gcsBucketPath string
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    gcsBucketRegion string
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]
    credential DestinationGcsConfigurationCredential
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    format DestinationGcsConfigurationFormat
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    gcs_bucket_name str
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    gcs_bucket_path str
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    gcs_bucket_region str
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]
    credential Property Map
    An HMAC key is a type of credential and can be associated with a service account or a user account in Cloud Storage. Read more \n\nhere\n\n.
    format Property Map
    Output data format. One of the following formats must be selected - \n\nAVRO\n\n format, \n\nPARQUET\n\n format, \n\nCSV\n\n format, or \n\nJSONL\n\n format.
    gcsBucketName String
    You can find the bucket name in the App Engine Admin console Application Settings page, under the label Google Cloud Storage Bucket. Read more \n\nhere\n\n.
    gcsBucketPath String
    GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
    gcsBucketRegion String
    Select a Region of the GCS Bucket. Read more \n\nhere\n\n. Default: "us"; must be one of ["northamerica-northeast1", "northamerica-northeast2", "us-central1", "us-east1", "us-east4", "us-west1", "us-west2", "us-west3", "us-west4", "southamerica-east1", "southamerica-west1", "europe-central2", "europe-north1", "europe-west1", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "asia", "eu", "us", "asia1", "eur4", "nam4"]

    DestinationGcsConfigurationCredential, DestinationGcsConfigurationCredentialArgs

    DestinationGcsConfigurationCredentialHmacKey, DestinationGcsConfigurationCredentialHmacKeyArgs

    HmacKeyAccessId string
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    HmacKeySecret string
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    CredentialType string
    Default: "HMACKEY"; must be "HMACKEY"
    HmacKeyAccessId string
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    HmacKeySecret string
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    CredentialType string
    Default: "HMACKEY"; must be "HMACKEY"
    hmacKeyAccessId String
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    hmacKeySecret String
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    credentialType String
    Default: "HMACKEY"; must be "HMACKEY"
    hmacKeyAccessId string
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    hmacKeySecret string
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    credentialType string
    Default: "HMACKEY"; must be "HMACKEY"
    hmac_key_access_id str
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    hmac_key_secret str
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    credential_type str
    Default: "HMACKEY"; must be "HMACKEY"
    hmacKeyAccessId String
    When linked to a service account, this ID is 61 characters long; when linked to a user account, it is 24 characters long. Read more \n\nhere\n\n.
    hmacKeySecret String
    The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
    credentialType String
    Default: "HMACKEY"; must be "HMACKEY"

    DestinationGcsConfigurationFormat, DestinationGcsConfigurationFormatArgs

    DestinationGcsConfigurationFormatAvroApacheAvro, DestinationGcsConfigurationFormatAvroApacheAvroArgs

    CompressionCodec DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec
    The compression algorithm used to compress data. Default to no compression.
    FormatType string
    Default: "Avro"; must be "Avro"
    CompressionCodec DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec
    The compression algorithm used to compress data. Default to no compression.
    FormatType string
    Default: "Avro"; must be "Avro"
    compressionCodec DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec
    The compression algorithm used to compress data. Default to no compression.
    formatType String
    Default: "Avro"; must be "Avro"
    compressionCodec DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec
    The compression algorithm used to compress data. Default to no compression.
    formatType string
    Default: "Avro"; must be "Avro"
    compression_codec DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec
    The compression algorithm used to compress data. Default to no compression.
    format_type str
    Default: "Avro"; must be "Avro"
    compressionCodec Property Map
    The compression algorithm used to compress data. Default to no compression.
    formatType String
    Default: "Avro"; must be "Avro"

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecBzip2Args

    Codec string
    Default: "bzip2"; must be "bzip2"
    Codec string
    Default: "bzip2"; must be "bzip2"
    codec String
    Default: "bzip2"; must be "bzip2"
    codec string
    Default: "bzip2"; must be "bzip2"
    codec str
    Default: "bzip2"; must be "bzip2"
    codec String
    Default: "bzip2"; must be "bzip2"

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflate, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecDeflateArgs

    Codec string
    Default: "Deflate"; must be "Deflate"
    CompressionLevel double
    0: no compression & fastest, 9: best compression & slowest. Default: 0
    Codec string
    Default: "Deflate"; must be "Deflate"
    CompressionLevel float64
    0: no compression & fastest, 9: best compression & slowest. Default: 0
    codec String
    Default: "Deflate"; must be "Deflate"
    compressionLevel Double
    0: no compression & fastest, 9: best compression & slowest. Default: 0
    codec string
    Default: "Deflate"; must be "Deflate"
    compressionLevel number
    0: no compression & fastest, 9: best compression & slowest. Default: 0
    codec str
    Default: "Deflate"; must be "Deflate"
    compression_level float
    0: no compression & fastest, 9: best compression & slowest. Default: 0
    codec String
    Default: "Deflate"; must be "Deflate"
    compressionLevel Number
    0: no compression & fastest, 9: best compression & slowest. Default: 0

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompression, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecNoCompressionArgs

    Codec string
    Default: "no compression"; must be "no compression"
    Codec string
    Default: "no compression"; must be "no compression"
    codec String
    Default: "no compression"; must be "no compression"
    codec string
    Default: "no compression"; must be "no compression"
    codec str
    Default: "no compression"; must be "no compression"
    codec String
    Default: "no compression"; must be "no compression"

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappy, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecSnappyArgs

    Codec string
    Default: "snappy"; must be "snappy"
    Codec string
    Default: "snappy"; must be "snappy"
    codec String
    Default: "snappy"; must be "snappy"
    codec string
    Default: "snappy"; must be "snappy"
    codec str
    Default: "snappy"; must be "snappy"
    codec String
    Default: "snappy"; must be "snappy"

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXz, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecXzArgs

    Codec string
    Default: "xz"; must be "xz"
    CompressionLevel double
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6
    Codec string
    Default: "xz"; must be "xz"
    CompressionLevel float64
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6
    codec String
    Default: "xz"; must be "xz"
    compressionLevel Double
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6
    codec string
    Default: "xz"; must be "xz"
    compressionLevel number
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6
    codec str
    Default: "xz"; must be "xz"
    compression_level float
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6
    codec String
    Default: "xz"; must be "xz"
    compressionLevel Number
    The presets 0-3 are fast presets with medium compression. The presets 4-6 are fairly slow presets with high compression. The default preset is 6. The presets 7-9 are like the preset 6 but use bigger dictionaries and have higher compressor and decompressor memory requirements. Unless the uncompressed size of the file exceeds 8 MiB, 16 MiB, or 32 MiB, it is waste of memory to use the presets 7, 8, or 9, respectively. Read more \n\nhere\n\n for details. Default: 6

    DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandard, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecZstandardArgs

    Codec string
    Default: "zstandard"; must be "zstandard"
    CompressionLevel double
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    IncludeChecksum bool
    If true, include a checksum with each data block. Default: false
    Codec string
    Default: "zstandard"; must be "zstandard"
    CompressionLevel float64
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    IncludeChecksum bool
    If true, include a checksum with each data block. Default: false
    codec String
    Default: "zstandard"; must be "zstandard"
    compressionLevel Double
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    includeChecksum Boolean
    If true, include a checksum with each data block. Default: false
    codec string
    Default: "zstandard"; must be "zstandard"
    compressionLevel number
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    includeChecksum boolean
    If true, include a checksum with each data block. Default: false
    codec str
    Default: "zstandard"; must be "zstandard"
    compression_level float
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    include_checksum bool
    If true, include a checksum with each data block. Default: false
    codec String
    Default: "zstandard"; must be "zstandard"
    compressionLevel Number
    Negative levels are 'fast' modes akin to lz4 or snappy, levels above 9 are generally for archival purposes, and levels above 18 use a lot of memory. Default: 3
    includeChecksum Boolean
    If true, include a checksum with each data block. Default: false

    DestinationGcsConfigurationFormatCsvCommaSeparatedValues, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs

    Compression DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    Flattening string
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    FormatType string
    Default: "CSV"; must be "CSV"
    Compression DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    Flattening string
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    FormatType string
    Default: "CSV"; must be "CSV"
    compression DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    flattening String
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    formatType String
    Default: "CSV"; must be "CSV"
    compression DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    flattening string
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    formatType string
    Default: "CSV"; must be "CSV"
    compression DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    flattening str
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    format_type str
    Default: "CSV"; must be "CSV"
    compression Property Map
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".csv.gz").
    flattening String
    Whether the input JSON data should be normalized (flattened) in the output CSV. Please refer to docs for details. Default: "No flattening"; must be one of ["No flattening", "Root level flattening"]
    formatType String
    Default: "CSV"; must be "CSV"

    DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs

    DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzip, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs

    CompressionType string
    Default: "GZIP"; must be "GZIP"
    CompressionType string
    Default: "GZIP"; must be "GZIP"
    compressionType String
    Default: "GZIP"; must be "GZIP"
    compressionType string
    Default: "GZIP"; must be "GZIP"
    compression_type str
    Default: "GZIP"; must be "GZIP"
    compressionType String
    Default: "GZIP"; must be "GZIP"

    DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompression, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs

    CompressionType string
    Default: "No Compression"; must be "No Compression"
    CompressionType string
    Default: "No Compression"; must be "No Compression"
    compressionType String
    Default: "No Compression"; must be "No Compression"
    compressionType string
    Default: "No Compression"; must be "No Compression"
    compression_type str
    Default: "No Compression"; must be "No Compression"
    compressionType String
    Default: "No Compression"; must be "No Compression"

    DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJson, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs

    Compression DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    FormatType string
    Default: "JSONL"; must be "JSONL"
    Compression DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    FormatType string
    Default: "JSONL"; must be "JSONL"
    compression DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    formatType String
    Default: "JSONL"; must be "JSONL"
    compression DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    formatType string
    Default: "JSONL"; must be "JSONL"
    compression DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    format_type str
    Default: "JSONL"; must be "JSONL"
    compression Property Map
    Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
    formatType String
    Default: "JSONL"; must be "JSONL"

    DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs

    DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzip, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs

    CompressionType string
    Default: "GZIP"; must be "GZIP"
    CompressionType string
    Default: "GZIP"; must be "GZIP"
    compressionType String
    Default: "GZIP"; must be "GZIP"
    compressionType string
    Default: "GZIP"; must be "GZIP"
    compression_type str
    Default: "GZIP"; must be "GZIP"
    compressionType String
    Default: "GZIP"; must be "GZIP"

    DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompression, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs

    CompressionType string
    Default: "No Compression"; must be "No Compression"
    CompressionType string
    Default: "No Compression"; must be "No Compression"
    compressionType String
    Default: "No Compression"; must be "No Compression"
    compressionType string
    Default: "No Compression"; must be "No Compression"
    compression_type str
    Default: "No Compression"; must be "No Compression"
    compressionType String
    Default: "No Compression"; must be "No Compression"

    DestinationGcsConfigurationFormatParquetColumnarStorage, DestinationGcsConfigurationFormatParquetColumnarStorageArgs

    BlockSizeMb double
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    CompressionCodec string
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    DictionaryEncoding bool
    Default: true. Default: true
    DictionaryPageSizeKb double
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    FormatType string
    Default: "Parquet"; must be "Parquet"
    MaxPaddingSizeMb double
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    PageSizeKb double
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
    BlockSizeMb float64
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    CompressionCodec string
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    DictionaryEncoding bool
    Default: true. Default: true
    DictionaryPageSizeKb float64
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    FormatType string
    Default: "Parquet"; must be "Parquet"
    MaxPaddingSizeMb float64
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    PageSizeKb float64
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
    blockSizeMb Double
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    compressionCodec String
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    dictionaryEncoding Boolean
    Default: true. Default: true
    dictionaryPageSizeKb Double
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    formatType String
    Default: "Parquet"; must be "Parquet"
    maxPaddingSizeMb Double
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    pageSizeKb Double
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
    blockSizeMb number
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    compressionCodec string
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    dictionaryEncoding boolean
    Default: true. Default: true
    dictionaryPageSizeKb number
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    formatType string
    Default: "Parquet"; must be "Parquet"
    maxPaddingSizeMb number
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    pageSizeKb number
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
    block_size_mb float
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    compression_codec str
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    dictionary_encoding bool
    Default: true. Default: true
    dictionary_page_size_kb float
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    format_type str
    Default: "Parquet"; must be "Parquet"
    max_padding_size_mb float
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    page_size_kb float
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024
    blockSizeMb Number
    This is the size of a row group being buffered in memory. It limits the memory usage when writing. Larger values will improve the IO when reading, but consume more memory when writing. Default: 128 MB. Default: 128
    compressionCodec String
    The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
    dictionaryEncoding Boolean
    Default: true. Default: true
    dictionaryPageSizeKb Number
    There is one dictionary page per column per row group when dictionary encoding is used. The dictionary page size works like the page size but for dictionary. Default: 1024 KB. Default: 1024
    formatType String
    Default: "Parquet"; must be "Parquet"
    maxPaddingSizeMb Number
    Maximum size allowed as padding to align row groups. This is also the minimum size of a row group. Default: 8 MB. Default: 8
    pageSizeKb Number
    The page size is for compression. A block is composed of pages. A page is the smallest unit that must be read fully to access a single record. If this value is too small, the compression will deteriorate. Default: 1024 KB. Default: 1024

    Import

    $ pulumi import airbyte:index/destinationGcs:DestinationGcs my_airbyte_destination_gcs ""
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq