airbyte.DestinationGcs
Explore with Pulumi AI
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
Destination
Gcs Configuration - Workspace
Id string - Definition
Id 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
Destination
Gcs Configuration Args - Workspace
Id string - Definition
Id 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
Destination
Gcs Configuration - workspace
Id String - definition
Id 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
Destination
Gcs Configuration - workspace
Id string - definition
Id 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
Destination
Gcs Configuration Args - 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
- workspace
Id String - definition
Id 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:
- Created
At double - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Created
At float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- created
At Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- created
At number - destination
Id string - destination
Type 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.
- created
At Number - destination
Id String - destination
Type 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.
- Configuration
Destination
Gcs Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Workspace
Id string
- Configuration
Destination
Gcs Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- Destination
Id string - Destination
Type string - Name string
- Name of the destination e.g. dev-mysql-instance.
- Workspace
Id string
- configuration
Destination
Gcs Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id String
- configuration
Destination
Gcs Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id string - destination
Type string - name string
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id string
- configuration
Destination
Gcs Configuration Args - 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
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
- destination
Id String - destination
Type String - name String
- Name of the destination e.g. dev-mysql-instance.
- workspace
Id String
Supporting Types
DestinationGcsConfiguration, DestinationGcsConfigurationArgs
- Credential
Destination
Gcs Configuration Credential - 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
Destination
Gcs Configuration Format - 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 stringName - 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 stringPath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- Gcs
Bucket stringRegion - 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
Destination
Gcs Configuration Credential - 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
Destination
Gcs Configuration Format - 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 stringName - 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 stringPath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- Gcs
Bucket stringRegion - 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
Destination
Gcs Configuration Credential - 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
Destination
Gcs Configuration Format - 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 StringName - 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 StringPath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- gcs
Bucket StringRegion - 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
Destination
Gcs Configuration Credential - 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
Destination
Gcs Configuration Format - 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 stringName - 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 stringPath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- gcs
Bucket stringRegion - 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
Destination
Gcs Configuration Credential - 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
Destination
Gcs Configuration Format - 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_ strname - 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_ strpath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- gcs_
bucket_ strregion - 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.
- gcs
Bucket StringName - 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 StringPath - GCS Bucket Path string Subdirectory under the above bucket to sync the data into.
- gcs
Bucket StringRegion - 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
- Hmac
Key stringAccess Id - 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 stringSecret - The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
- Credential
Type string - Default: "HMACKEY"; must be "HMACKEY"
- Hmac
Key stringAccess Id - 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 stringSecret - The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
- Credential
Type string - Default: "HMACKEY"; must be "HMACKEY"
- hmac
Key StringAccess Id - 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 StringSecret - The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
- credential
Type String - Default: "HMACKEY"; must be "HMACKEY"
- hmac
Key stringAccess Id - 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 stringSecret - The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
- credential
Type string - Default: "HMACKEY"; must be "HMACKEY"
- hmac_
key_ straccess_ id - 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_ strsecret - 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"
- hmac
Key StringAccess Id - 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 StringSecret - The corresponding secret for the access ID. It is a 40-character base-64 encoded string. Read more \n\nhere\n\n.
- credential
Type String - Default: "HMACKEY"; must be "HMACKEY"
DestinationGcsConfigurationFormat, DestinationGcsConfigurationFormatArgs
- Avro
Apache DestinationAvro Gcs Configuration Format Avro Apache Avro - Csv
Comma DestinationSeparated Values Gcs Configuration Format Csv Comma Separated Values - Json
Lines DestinationNewline Delimited Json Gcs Configuration Format Json Lines Newline Delimited Json - Parquet
Columnar DestinationStorage Gcs Configuration Format Parquet Columnar Storage
- Avro
Apache DestinationAvro Gcs Configuration Format Avro Apache Avro - Csv
Comma DestinationSeparated Values Gcs Configuration Format Csv Comma Separated Values - Json
Lines DestinationNewline Delimited Json Gcs Configuration Format Json Lines Newline Delimited Json - Parquet
Columnar DestinationStorage Gcs Configuration Format Parquet Columnar Storage
- avro
Apache DestinationAvro Gcs Configuration Format Avro Apache Avro - csv
Comma DestinationSeparated Values Gcs Configuration Format Csv Comma Separated Values - json
Lines DestinationNewline Delimited Json Gcs Configuration Format Json Lines Newline Delimited Json - parquet
Columnar DestinationStorage Gcs Configuration Format Parquet Columnar Storage
- avro
Apache DestinationAvro Gcs Configuration Format Avro Apache Avro - csv
Comma DestinationSeparated Values Gcs Configuration Format Csv Comma Separated Values - json
Lines DestinationNewline Delimited Json Gcs Configuration Format Json Lines Newline Delimited Json - parquet
Columnar DestinationStorage Gcs Configuration Format Parquet Columnar Storage
- avro_
apache_ Destinationavro Gcs Configuration Format Avro Apache Avro - csv_
comma_ Destinationseparated_ values Gcs Configuration Format Csv Comma Separated Values - json_
lines_ Destinationnewline_ delimited_ json Gcs Configuration Format Json Lines Newline Delimited Json - parquet_
columnar_ Destinationstorage Gcs Configuration Format Parquet Columnar Storage
DestinationGcsConfigurationFormatAvroApacheAvro, DestinationGcsConfigurationFormatAvroApacheAvroArgs
- Compression
Codec DestinationGcs Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- Format
Type string - Default: "Avro"; must be "Avro"
- Compression
Codec DestinationGcs Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- Format
Type string - Default: "Avro"; must be "Avro"
- compression
Codec DestinationGcs Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- format
Type String - Default: "Avro"; must be "Avro"
- compression
Codec DestinationGcs Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- format
Type string - Default: "Avro"; must be "Avro"
- compression_
codec DestinationGcs Configuration Format Avro Apache Avro Compression Codec - The compression algorithm used to compress data. Default to no compression.
- format_
type str - Default: "Avro"; must be "Avro"
- compression
Codec Property Map - The compression algorithm used to compress data. Default to no compression.
- format
Type String - Default: "Avro"; must be "Avro"
DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodec, DestinationGcsConfigurationFormatAvroApacheAvroCompressionCodecArgs
- Bzip2
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Bzip2 - Deflate
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Deflate - No
Compression DestinationGcs Configuration Format Avro Apache Avro Compression Codec No Compression - Snappy
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Snappy - Xz
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Xz - Zstandard
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Zstandard
- Bzip2
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Bzip2 - Deflate
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Deflate - No
Compression DestinationGcs Configuration Format Avro Apache Avro Compression Codec No Compression - Snappy
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Snappy - Xz
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Xz - Zstandard
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Deflate - no
Compression DestinationGcs Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Deflate - no
Compression DestinationGcs Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Zstandard
- bzip2
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Bzip2 - deflate
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Deflate - no_
compression DestinationGcs Configuration Format Avro Apache Avro Compression Codec No Compression - snappy
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Snappy - xz
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Xz - zstandard
Destination
Gcs Configuration Format Avro Apache Avro Compression Codec Zstandard
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"
- Compression
Level double - 0: no compression & fastest, 9: best compression & slowest. Default: 0
- Codec string
- Default: "Deflate"; must be "Deflate"
- Compression
Level float64 - 0: no compression & fastest, 9: best compression & slowest. Default: 0
- codec String
- Default: "Deflate"; must be "Deflate"
- compression
Level Double - 0: no compression & fastest, 9: best compression & slowest. Default: 0
- codec string
- Default: "Deflate"; must be "Deflate"
- compression
Level 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"
- compression
Level 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"
- Compression
Level 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"
- Compression
Level 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"
- compression
Level 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"
- compression
Level 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"
- compression
Level 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"
- Compression
Level 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
- Include
Checksum bool - If true, include a checksum with each data block. Default: false
- Codec string
- Default: "zstandard"; must be "zstandard"
- Compression
Level 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
- Include
Checksum bool - If true, include a checksum with each data block. Default: false
- codec String
- Default: "zstandard"; must be "zstandard"
- compression
Level 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
- include
Checksum Boolean - If true, include a checksum with each data block. Default: false
- codec string
- Default: "zstandard"; must be "zstandard"
- compression
Level 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
- include
Checksum 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"
- compression
Level 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
- include
Checksum Boolean - If true, include a checksum with each data block. Default: false
DestinationGcsConfigurationFormatCsvCommaSeparatedValues, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesArgs
- Compression
Destination
Gcs Configuration Format Csv Comma Separated Values Compression - 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"]
- Format
Type string - Default: "CSV"; must be "CSV"
- Compression
Destination
Gcs Configuration Format Csv Comma Separated Values Compression - 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"]
- Format
Type string - Default: "CSV"; must be "CSV"
- compression
Destination
Gcs Configuration Format Csv Comma Separated Values Compression - 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"]
- format
Type String - Default: "CSV"; must be "CSV"
- compression
Destination
Gcs Configuration Format Csv Comma Separated Values Compression - 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"]
- format
Type string - Default: "CSV"; must be "CSV"
- compression
Destination
Gcs Configuration Format Csv Comma Separated Values Compression - 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"]
- format
Type String - Default: "CSV"; must be "CSV"
DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompression, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionArgs
DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzip, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionGzipArgs
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
- compression
Type string - Default: "GZIP"; must be "GZIP"
- compression_
type str - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompression, DestinationGcsConfigurationFormatCsvCommaSeparatedValuesCompressionNoCompressionArgs
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
- compression
Type string - Default: "No Compression"; must be "No Compression"
- compression_
type str - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJson, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonArgs
- Compression
Destination
Gcs Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Format
Type string - Default: "JSONL"; must be "JSONL"
- Compression
Destination
Gcs Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- Format
Type string - Default: "JSONL"; must be "JSONL"
- compression
Destination
Gcs Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- format
Type String - Default: "JSONL"; must be "JSONL"
- compression
Destination
Gcs Configuration Format Json Lines Newline Delimited Json Compression - Whether the output files should be compressed. If compression is selected, the output filename will have an extra extension (GZIP: ".jsonl.gz").
- format
Type string - Default: "JSONL"; must be "JSONL"
- compression
Destination
Gcs Configuration Format Json Lines Newline Delimited Json Compression - 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").
- format
Type String - Default: "JSONL"; must be "JSONL"
DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompression, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionArgs
DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzip, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionGzipArgs
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- Compression
Type string - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
- compression
Type string - Default: "GZIP"; must be "GZIP"
- compression_
type str - Default: "GZIP"; must be "GZIP"
- compression
Type String - Default: "GZIP"; must be "GZIP"
DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompression, DestinationGcsConfigurationFormatJsonLinesNewlineDelimitedJsonCompressionNoCompressionArgs
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- Compression
Type string - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
- compression
Type string - Default: "No Compression"; must be "No Compression"
- compression_
type str - Default: "No Compression"; must be "No Compression"
- compression
Type String - Default: "No Compression"; must be "No Compression"
DestinationGcsConfigurationFormatParquetColumnarStorage, DestinationGcsConfigurationFormatParquetColumnarStorageArgs
- Block
Size doubleMb - 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 string - 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 doubleSize Kb - 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 string - Default: "Parquet"; must be "Parquet"
- Max
Padding doubleSize Mb - 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 doubleKb - 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 float64Mb - 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 string - 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 float64Size Kb - 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 string - Default: "Parquet"; must be "Parquet"
- Max
Padding float64Size Mb - 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 float64Kb - 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 DoubleMb - 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 String - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding Boolean - Default: true. Default: true
- dictionary
Page DoubleSize Kb - 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 String - Default: "Parquet"; must be "Parquet"
- max
Padding DoubleSize Mb - 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 DoubleKb - 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 numberMb - 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 string - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding boolean - Default: true. Default: true
- dictionary
Page numberSize Kb - 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 string - Default: "Parquet"; must be "Parquet"
- max
Padding numberSize Mb - 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 numberKb - 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_ floatmb - 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_ floatsize_ kb - 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_ floatsize_ mb - 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_ floatkb - 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 NumberMb - 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 String - The compression algorithm used to compress data pages. Default: "UNCOMPRESSED"; must be one of ["UNCOMPRESSED", "SNAPPY", "GZIP", "LZO", "BROTLI", "LZ4", "ZSTD"]
- dictionary
Encoding Boolean - Default: true. Default: true
- dictionary
Page NumberSize Kb - 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 String - Default: "Parquet"; must be "Parquet"
- max
Padding NumberSize Mb - 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 NumberKb - 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.