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());
}
}
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
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 string
- The unique name of the resource.
- args DestinationGoogleSheetsArgs
- 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 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 string
- The unique name of the resource.
- args DestinationGoogleSheetsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationGoogleSheetsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
});
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"),
})
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());
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")
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",
});
type: airbyte:DestinationGoogleSheets
properties:
configuration:
credentials:
authenticateViaGoogleOAuth:
clientId: string
clientSecret: string
refreshToken: string
serviceAccountKeyAuthentication:
serviceAccountInfo: string
spreadsheetId: string
definitionId: string
name: string
workspaceId: string
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
Destination
Google Sheets 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
Google Sheets 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
Google Sheets 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
Google Sheets 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
Google Sheets 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 DestinationGoogleSheets 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.
- Resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 float64 - Destination
Id string - Destination
Type string - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 Double - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 number - destination
Id string - destination
Type string - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 DestinationGoogle Sheets Resource Allocation - 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 Number - destination
Id String - destination
Type String - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation 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
- 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
Google Sheets 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.
- Resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 string
- Configuration
Destination
Google Sheets 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.
- Resource
Allocation DestinationGoogle Sheets Resource Allocation Args - 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 string
- configuration
Destination
Google Sheets 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.
- resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 String
- configuration
Destination
Google Sheets 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.
- resource
Allocation DestinationGoogle Sheets Resource Allocation - 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 string
- configuration
Destination
Google Sheets 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.
- resource_
allocation DestinationGoogle Sheets Resource Allocation Args - 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
- 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.
- resource
Allocation 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.
- workspace
Id String
Supporting Types
DestinationGoogleSheetsConfiguration, DestinationGoogleSheetsConfigurationArgs
- Credentials
Destination
Google Sheets Configuration Credentials - Authentication method to access Google Sheets
- Spreadsheet
Id string - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
- Credentials
Destination
Google Sheets Configuration Credentials - Authentication method to access Google Sheets
- Spreadsheet
Id string - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
- credentials
Destination
Google Sheets Configuration Credentials - Authentication method to access Google Sheets
- spreadsheet
Id String - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
- credentials
Destination
Google Sheets Configuration Credentials - Authentication method to access Google Sheets
- spreadsheet
Id string - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
- credentials
Destination
Google Sheets Configuration Credentials - Authentication method to access Google Sheets
- spreadsheet_
id str - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
- credentials Property Map
- Authentication method to access Google Sheets
- spreadsheet
Id String - The link to your spreadsheet. See \n\nthis guide\n\n for more details.
DestinationGoogleSheetsConfigurationCredentials, DestinationGoogleSheetsConfigurationCredentialsArgs
DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuth, DestinationGoogleSheetsConfigurationCredentialsAuthenticateViaGoogleOAuthArgs
- Client
Id string - The Client ID of your Google Sheets developer application.
- Client
Secret string - The Client Secret of your Google Sheets developer application.
- Refresh
Token string - The token for obtaining new access token.
- Client
Id string - The Client ID of your Google Sheets developer application.
- Client
Secret string - The Client Secret of your Google Sheets developer application.
- Refresh
Token string - The token for obtaining new access token.
- client
Id String - The Client ID of your Google Sheets developer application.
- client
Secret String - The Client Secret of your Google Sheets developer application.
- refresh
Token String - The token for obtaining new access token.
- client
Id string - The Client ID of your Google Sheets developer application.
- client
Secret string - The Client Secret of your Google Sheets developer application.
- refresh
Token string - The token for obtaining new access token.
- client_
id str - The Client ID of your Google Sheets developer application.
- client_
secret str - The Client Secret of your Google Sheets developer application.
- refresh_
token str - The token for obtaining new access token.
- client
Id String - The Client ID of your Google Sheets developer application.
- client
Secret String - The Client Secret of your Google Sheets developer application.
- refresh
Token String - The token for obtaining new access token.
DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthentication, DestinationGoogleSheetsConfigurationCredentialsServiceAccountKeyAuthenticationArgs
- Service
Account stringInfo - 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 stringInfo - 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 StringInfo - 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 stringInfo - 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_ strinfo - 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 StringInfo - 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
Destination
Google Sheets Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationGoogle Sheets Resource Allocation Job Specific>
- Default
Destination
Google Sheets Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationGoogle Sheets Resource Allocation Job Specific
- default_
Destination
Google Sheets Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationGoogle Sheets Resource Allocation Job Specific>
- default
Destination
Google Sheets Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationGoogle Sheets Resource Allocation Job Specific[]
- default
Destination
Google Sheets Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationGoogle Sheets Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationGoogleSheetsResourceAllocationDefault, DestinationGoogleSheetsResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
DestinationGoogleSheetsResourceAllocationJobSpecific, DestinationGoogleSheetsResourceAllocationJobSpecificArgs
- Job
Type 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"]
- Resource
Requirements DestinationGoogle Sheets Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type 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"]
- Resource
Requirements DestinationGoogle Sheets Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements DestinationGoogle Sheets Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements DestinationGoogle Sheets Resource Allocation Job Specific Resource Requirements - 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 DestinationGoogle Sheets Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type 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"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirements, DestinationGoogleSheetsResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/destinationGoogleSheets:DestinationGoogleSheets my_airbyte_destination_google_sheets ""
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.