1. Packages
  2. Airbyte Provider
  3. API Docs
  4. DestinationGoogleSheets
airbyte 0.10.0 published on Monday, Apr 14, 2025 by airbytehq

airbyte.DestinationGoogleSheets

Explore with Pulumi AI

DestinationGoogleSheets 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.DestinationGoogleSheets;
import com.pulumi.airbyte.DestinationGoogleSheetsArgs;
import com.pulumi.airbyte.inputs.DestinationGoogleSheetsConfigurationArgs;
import com.pulumi.airbyte.inputs.DestinationGoogleSheetsConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs;
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 myDestinationGooglesheets = new DestinationGoogleSheets("myDestinationGooglesheets", DestinationGoogleSheetsArgs.builder()
            .configuration(DestinationGoogleSheetsConfigurationArgs.builder()
                .credentials(DestinationGoogleSheetsConfigurationCredentialsArgs.builder()
                    .authenticateViaGoogleOAuth(DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs.builder()
                        .clientId("...my_client_id...")
                        .clientSecret("...my_client_secret...")
                        .refreshToken("...my_refresh_token...")
                        .build())
                    .build())
                .spreadsheet_id("https://docs.google.com/spreadsheets/d/1hLd9Qqti3UyLXZB2aFfUWDT7BG/edit")
                .build())
            .definitionId("54b2059a-b951-4dde-91ec-07e2a536925c")
            .workspaceId("ac77879a-e5ab-4e85-8084-095399f78bac")
            .build());

    }
}
Copy
resources:
  myDestinationGooglesheets:
    type: airbyte:DestinationGoogleSheets
    properties:
      configuration:
        credentials:
          authenticateViaGoogleOAuth:
            clientId: '...my_client_id...'
            clientSecret: '...my_client_secret...'
            refreshToken: '...my_refresh_token...'
        spreadsheet_id: https://docs.google.com/spreadsheets/d/1hLd9Qqti3UyLXZB2aFfUWDT7BG/edit
      definitionId: 54b2059a-b951-4dde-91ec-07e2a536925c
      workspaceId: ac77879a-e5ab-4e85-8084-095399f78bac
Copy

Create DestinationGoogleSheets Resource

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

Constructor syntax

new DestinationGoogleSheets(name: string, args: DestinationGoogleSheetsArgs, opts?: CustomResourceOptions);
@overload
def DestinationGoogleSheets(resource_name: str,
                            args: DestinationGoogleSheetsArgs,
                            opts: Optional[ResourceOptions] = None)

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

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DestinationGoogleSheetsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DestinationGoogleSheetsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationGoogleSheetsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DestinationGoogleSheetsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DestinationGoogleSheetsArgs
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 destinationGoogleSheetsResource = new Airbyte.DestinationGoogleSheets("destinationGoogleSheetsResource", new()
{
    Configuration = new Airbyte.Inputs.DestinationGoogleSheetsConfigurationArgs
    {
        Credentials = new Airbyte.Inputs.DestinationGoogleSheetsConfigurationCredentialsArgs
        {
            AuthenticateViaGoogleOAuth = new Airbyte.Inputs.DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs
            {
                ClientId = "string",
                ClientSecret = "string",
                RefreshToken = "string",
            },
            ServiceAccountKeyAuthentication = new Airbyte.Inputs.DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthenticationArgs
            {
                ServiceAccountInfo = "string",
            },
        },
        SpreadsheetId = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
});
Copy
example, err := airbyte.NewDestinationGoogleSheets(ctx, "destinationGoogleSheetsResource", &airbyte.DestinationGoogleSheetsArgs{
Configuration: &.DestinationGoogleSheetsConfigurationArgs{
Credentials: &.DestinationGoogleSheetsConfigurationCredentialsArgs{
AuthenticateViaGoogleOAuth: &.DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
},
ServiceAccountKeyAuthentication: &.DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthenticationArgs{
ServiceAccountInfo: pulumi.String("string"),
},
},
SpreadsheetId: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
Copy
var destinationGoogleSheetsResource = new DestinationGoogleSheets("destinationGoogleSheetsResource", DestinationGoogleSheetsArgs.builder()
    .configuration(DestinationGoogleSheetsConfigurationArgs.builder()
        .credentials(DestinationGoogleSheetsConfigurationCredentialsArgs.builder()
            .authenticateViaGoogleOAuth(DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs.builder()
                .clientId("string")
                .clientSecret("string")
                .refreshToken("string")
                .build())
            .serviceAccountKeyAuthentication(DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthenticationArgs.builder()
                .serviceAccountInfo("string")
                .build())
            .build())
        .spreadsheetId("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .build());
Copy
destination_google_sheets_resource = airbyte.DestinationGoogleSheets("destinationGoogleSheetsResource",
    configuration={
        "credentials": {
            "authenticate_via_google_o_auth": {
                "client_id": "string",
                "client_secret": "string",
                "refresh_token": "string",
            },
            "service_account_key_authentication": {
                "service_account_info": "string",
            },
        },
        "spreadsheet_id": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string")
Copy
const destinationGoogleSheetsResource = new airbyte.DestinationGoogleSheets("destinationGoogleSheetsResource", {
    configuration: {
        credentials: {
            authenticateViaGoogleOAuth: {
                clientId: "string",
                clientSecret: "string",
                refreshToken: "string",
            },
            serviceAccountKeyAuthentication: {
                serviceAccountInfo: "string",
            },
        },
        spreadsheetId: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
});
Copy
type: airbyte:DestinationGoogleSheets
properties:
    configuration:
        credentials:
            authenticateViaGoogleOAuth:
                clientId: string
                clientSecret: string
                refreshToken: string
            serviceAccountKeyAuthentication:
                serviceAccountInfo: string
        spreadsheetId: string
    definitionId: string
    name: string
    workspaceId: string
Copy

DestinationGoogleSheets 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 DestinationGoogleSheets resource accepts the following input properties:

Configuration This property is required. DestinationGoogleSheetsConfiguration
WorkspaceId This property is required. 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 This property is required. DestinationGoogleSheetsConfigurationArgs
WorkspaceId This property is required. 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 This property is required. DestinationGoogleSheetsConfiguration
workspaceId This property is required. 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 This property is required. DestinationGoogleSheetsConfiguration
workspaceId This property is required. 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 This property is required. DestinationGoogleSheetsConfigurationArgs
workspace_id This property is required. 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 This property is required. Property Map
workspaceId This property is required. 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 DestinationGoogleSheets resource produces the following output properties:

CreatedAt double
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
CreatedAt float64
DestinationId string
DestinationType string
Id string
The provider-assigned unique ID for this managed resource.
ResourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt Double
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt number
destinationId string
destinationType string
id string
The provider-assigned unique ID for this managed resource.
resourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
created_at float
destination_id str
destination_type str
id str
The provider-assigned unique ID for this managed resource.
resource_allocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
createdAt Number
destinationId String
destinationType String
id String
The provider-assigned unique ID for this managed resource.
resourceAllocation Property Map
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.

Look up Existing DestinationGoogleSheets Resource

Get an existing DestinationGoogleSheets 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?: DestinationGoogleSheetsState, opts?: CustomResourceOptions): DestinationGoogleSheets
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[DestinationGoogleSheetsConfigurationArgs] = 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,
        resource_allocation: Optional[DestinationGoogleSheetsResourceAllocationArgs] = None,
        workspace_id: Optional[str] = None) -> DestinationGoogleSheets
func GetDestinationGoogleSheets(ctx *Context, name string, id IDInput, state *DestinationGoogleSheetsState, opts ...ResourceOption) (*DestinationGoogleSheets, error)
public static DestinationGoogleSheets Get(string name, Input<string> id, DestinationGoogleSheetsState? state, CustomResourceOptions? opts = null)
public static DestinationGoogleSheets get(String name, Output<String> id, DestinationGoogleSheetsState state, CustomResourceOptions options)
resources:  _:    type: airbyte:DestinationGoogleSheets    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 DestinationGoogleSheetsConfiguration
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.
ResourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
WorkspaceId string
Configuration DestinationGoogleSheetsConfigurationArgs
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.
ResourceAllocation DestinationGoogleSheetsResourceAllocationArgs
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
WorkspaceId string
configuration DestinationGoogleSheetsConfiguration
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.
resourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId String
configuration DestinationGoogleSheetsConfiguration
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.
resourceAllocation DestinationGoogleSheetsResourceAllocation
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId string
configuration DestinationGoogleSheetsConfigurationArgs
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.
resource_allocation DestinationGoogleSheetsResourceAllocationArgs
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
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.
resourceAllocation Property Map
actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
workspaceId String

Supporting Types

DestinationGoogleSheetsConfiguration
, DestinationGoogleSheetsConfigurationArgs

Credentials This property is required. DestinationGoogleSheetsConfigurationCredentials
Authentication method to access Google Sheets
SpreadsheetId This property is required. string
The link to your spreadsheet. See \n\nthis guide\n\n for more details.
Credentials This property is required. DestinationGoogleSheetsConfigurationCredentials
Authentication method to access Google Sheets
SpreadsheetId This property is required. string
The link to your spreadsheet. See \n\nthis guide\n\n for more details.
credentials This property is required. DestinationGoogleSheetsConfigurationCredentials
Authentication method to access Google Sheets
spreadsheetId This property is required. String
The link to your spreadsheet. See \n\nthis guide\n\n for more details.
credentials This property is required. DestinationGoogleSheetsConfigurationCredentials
Authentication method to access Google Sheets
spreadsheetId This property is required. string
The link to your spreadsheet. See \n\nthis guide\n\n for more details.
credentials This property is required. DestinationGoogleSheetsConfigurationCredentials
Authentication method to access Google Sheets
spreadsheet_id This property is required. str
The link to your spreadsheet. See \n\nthis guide\n\n for more details.
credentials This property is required. Property Map
Authentication method to access Google Sheets
spreadsheetId This property is required. String
The link to your spreadsheet. See \n\nthis guide\n\n for more details.

DestinationGoogleSheetsConfigurationCredentials
, DestinationGoogleSheetsConfigurationCredentialsArgs

DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuth
, DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs

ClientId This property is required. string
The Client ID of your Google Sheets developer application.
ClientSecret This property is required. string
The Client Secret of your Google Sheets developer application.
RefreshToken This property is required. string
The token for obtaining new access token.
ClientId This property is required. string
The Client ID of your Google Sheets developer application.
ClientSecret This property is required. string
The Client Secret of your Google Sheets developer application.
RefreshToken This property is required. string
The token for obtaining new access token.
clientId This property is required. String
The Client ID of your Google Sheets developer application.
clientSecret This property is required. String
The Client Secret of your Google Sheets developer application.
refreshToken This property is required. String
The token for obtaining new access token.
clientId This property is required. string
The Client ID of your Google Sheets developer application.
clientSecret This property is required. string
The Client Secret of your Google Sheets developer application.
refreshToken This property is required. string
The token for obtaining new access token.
client_id This property is required. str
The Client ID of your Google Sheets developer application.
client_secret This property is required. str
The Client Secret of your Google Sheets developer application.
refresh_token This property is required. str
The token for obtaining new access token.
clientId This property is required. String
The Client ID of your Google Sheets developer application.
clientSecret This property is required. String
The Client Secret of your Google Sheets developer application.
refreshToken This property is required. String
The token for obtaining new access token.

DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthentication
, DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthenticationArgs

ServiceAccountInfo This property is required. string
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.
ServiceAccountInfo This property is required. string
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.
serviceAccountInfo This property is required. String
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.
serviceAccountInfo This property is required. string
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.
service_account_info This property is required. str
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.
serviceAccountInfo This property is required. String
Enter your service account key in JSON format. See the \n\ndocs\n\n for more information on how to generate this key.

DestinationGoogleSheetsResourceAllocation
, DestinationGoogleSheetsResourceAllocationArgs

Default DestinationGoogleSheetsResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
JobSpecifics []DestinationGoogleSheetsResourceAllocationJobSpecific
default DestinationGoogleSheetsResourceAllocationDefault
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics DestinationGoogleSheetsResourceAllocationJobSpecific[]
default Property Map
optional resource requirements to run workers (blank for unbounded allocations)
jobSpecifics List<Property Map>

DestinationGoogleSheetsResourceAllocationDefault
, DestinationGoogleSheetsResourceAllocationDefaultArgs

DestinationGoogleSheetsResourceAllocationJobSpecific
, DestinationGoogleSheetsResourceAllocationJobSpecificArgs

JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
JobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
ResourceRequirements DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType string
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
job_type str
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resource_requirements DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
optional resource requirements to run workers (blank for unbounded allocations)
jobType String
enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
resourceRequirements Property Map
optional resource requirements to run workers (blank for unbounded allocations)

DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements
, DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirementsArgs

Import

$ pulumi import airbyte:index/destinationGoogleSheets:DestinationGoogleSheets my_airbyte_destination_google_sheets ""
Copy

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.