airbyte.DestinationCobra
Explore with Pulumi AI
DestinationCobra 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.DestinationCobra;
import com.pulumi.airbyte.DestinationCobraArgs;
import com.pulumi.airbyte.inputs.DestinationCobraConfigurationArgs;
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 myDestinationCobra = new DestinationCobra("myDestinationCobra", DestinationCobraArgs.builder()
.configuration(DestinationCobraConfigurationArgs.builder()
.client_id("...my_client_id...")
.client_secret("...my_client_secret...")
.is_sandbox(true)
.print_record_content_on_error(false)
.refresh_token("...my_refresh_token...")
.stream_mappings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.stream_order("...")
.build())
.definitionId("639ce355-2f32-46fc-b636-542060b9a351")
.workspaceId("7743f23f-cbcc-4682-9621-edebf51717cf")
.build());
}
}
resources:
myDestinationCobra:
type: airbyte:DestinationCobra
properties:
configuration:
client_id: '...my_client_id...'
client_secret: '...my_client_secret...'
is_sandbox: true
print_record_content_on_error: false
refresh_token: '...my_refresh_token...'
stream_mappings:
- destinationTable: '...my_destination_table...'
sourceStream: '...my_source_stream...'
updateMode: DELETE
upsertKey: '...my_upsert_key...'
stream_order:
- '...'
definitionId: 639ce355-2f32-46fc-b636-542060b9a351
workspaceId: 7743f23f-cbcc-4682-9621-edebf51717cf
Create DestinationCobra Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationCobra(name: string, args: DestinationCobraArgs, opts?: CustomResourceOptions);
@overload
def DestinationCobra(resource_name: str,
args: DestinationCobraArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationCobra(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationCobraConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None)
func NewDestinationCobra(ctx *Context, name string, args DestinationCobraArgs, opts ...ResourceOption) (*DestinationCobra, error)
public DestinationCobra(string name, DestinationCobraArgs args, CustomResourceOptions? opts = null)
public DestinationCobra(String name, DestinationCobraArgs args)
public DestinationCobra(String name, DestinationCobraArgs args, CustomResourceOptions options)
type: airbyte:DestinationCobra
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 DestinationCobraArgs
- 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 DestinationCobraArgs
- 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 DestinationCobraArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationCobraArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationCobraArgs
- 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 destinationCobraResource = new Airbyte.DestinationCobra("destinationCobraResource", new()
{
Configuration = new Airbyte.Inputs.DestinationCobraConfigurationArgs
{
ClientId = "string",
ClientSecret = "string",
RefreshToken = "string",
IsSandbox = false,
PrintRecordContentOnError = false,
StreamMappings = new[]
{
new Airbyte.Inputs.DestinationCobraConfigurationStreamMappingArgs
{
DestinationTable = "string",
SourceStream = "string",
UpdateMode = "string",
UpsertKey = "string",
},
},
StreamOrders = new[]
{
"string",
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
});
example, err := airbyte.NewDestinationCobra(ctx, "destinationCobraResource", &airbyte.DestinationCobraArgs{
Configuration: &.DestinationCobraConfigurationArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
IsSandbox: pulumi.Bool(false),
PrintRecordContentOnError: pulumi.Bool(false),
StreamMappings: .DestinationCobraConfigurationStreamMappingArray{
&.DestinationCobraConfigurationStreamMappingArgs{
DestinationTable: pulumi.String("string"),
SourceStream: pulumi.String("string"),
UpdateMode: pulumi.String("string"),
UpsertKey: pulumi.String("string"),
},
},
StreamOrders: pulumi.StringArray{
pulumi.String("string"),
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var destinationCobraResource = new DestinationCobra("destinationCobraResource", DestinationCobraArgs.builder()
.configuration(DestinationCobraConfigurationArgs.builder()
.clientId("string")
.clientSecret("string")
.refreshToken("string")
.isSandbox(false)
.printRecordContentOnError(false)
.streamMappings(DestinationCobraConfigurationStreamMappingArgs.builder()
.destinationTable("string")
.sourceStream("string")
.updateMode("string")
.upsertKey("string")
.build())
.streamOrders("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.build());
destination_cobra_resource = airbyte.DestinationCobra("destinationCobraResource",
configuration={
"client_id": "string",
"client_secret": "string",
"refresh_token": "string",
"is_sandbox": False,
"print_record_content_on_error": False,
"stream_mappings": [{
"destination_table": "string",
"source_stream": "string",
"update_mode": "string",
"upsert_key": "string",
}],
"stream_orders": ["string"],
},
workspace_id="string",
definition_id="string",
name="string")
const destinationCobraResource = new airbyte.DestinationCobra("destinationCobraResource", {
configuration: {
clientId: "string",
clientSecret: "string",
refreshToken: "string",
isSandbox: false,
printRecordContentOnError: false,
streamMappings: [{
destinationTable: "string",
sourceStream: "string",
updateMode: "string",
upsertKey: "string",
}],
streamOrders: ["string"],
},
workspaceId: "string",
definitionId: "string",
name: "string",
});
type: airbyte:DestinationCobra
properties:
configuration:
clientId: string
clientSecret: string
isSandbox: false
printRecordContentOnError: false
refreshToken: string
streamMappings:
- destinationTable: string
sourceStream: string
updateMode: string
upsertKey: string
streamOrders:
- string
definitionId: string
name: string
workspaceId: string
DestinationCobra 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 DestinationCobra resource accepts the following input properties:
- Configuration
Destination
Cobra 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
Cobra 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
Cobra 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
Cobra 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
Cobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra Resource
Get an existing DestinationCobra 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?: DestinationCobraState, opts?: CustomResourceOptions): DestinationCobra
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[DestinationCobraConfigurationArgs] = 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[DestinationCobraResourceAllocationArgs] = None,
workspace_id: Optional[str] = None) -> DestinationCobra
func GetDestinationCobra(ctx *Context, name string, id IDInput, state *DestinationCobraState, opts ...ResourceOption) (*DestinationCobra, error)
public static DestinationCobra Get(string name, Input<string> id, DestinationCobraState? state, CustomResourceOptions? opts = null)
public static DestinationCobra get(String name, Output<String> id, DestinationCobraState state, CustomResourceOptions options)
resources: _: type: airbyte:DestinationCobra 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
Cobra 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 DestinationCobra 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
Cobra 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 DestinationCobra 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
Cobra 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 DestinationCobra 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
Cobra 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 DestinationCobra 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
Cobra 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 DestinationCobra 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
DestinationCobraConfiguration, DestinationCobraConfigurationArgs
- Client
Id string - Enter your Salesforce developer application's \n\nClient ID\n\n
- Client
Secret string - Enter your Salesforce developer application's \n\nClient secret\n\n
- Refresh
Token string - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- Is
Sandbox bool - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- Print
Record boolContent On Error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- Stream
Mappings List<DestinationCobra Configuration Stream Mapping> - Stream
Orders List<string> - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
- Client
Id string - Enter your Salesforce developer application's \n\nClient ID\n\n
- Client
Secret string - Enter your Salesforce developer application's \n\nClient secret\n\n
- Refresh
Token string - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- Is
Sandbox bool - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- Print
Record boolContent On Error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- Stream
Mappings []DestinationCobra Configuration Stream Mapping - Stream
Orders []string - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
- client
Id String - Enter your Salesforce developer application's \n\nClient ID\n\n
- client
Secret String - Enter your Salesforce developer application's \n\nClient secret\n\n
- refresh
Token String - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- is
Sandbox Boolean - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- print
Record BooleanContent On Error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- stream
Mappings List<DestinationCobra Configuration Stream Mapping> - stream
Orders List<String> - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
- client
Id string - Enter your Salesforce developer application's \n\nClient ID\n\n
- client
Secret string - Enter your Salesforce developer application's \n\nClient secret\n\n
- refresh
Token string - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- is
Sandbox boolean - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- print
Record booleanContent On Error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- stream
Mappings DestinationCobra Configuration Stream Mapping[] - stream
Orders string[] - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
- client_
id str - Enter your Salesforce developer application's \n\nClient ID\n\n
- client_
secret str - Enter your Salesforce developer application's \n\nClient secret\n\n
- refresh_
token str - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- is_
sandbox bool - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- print_
record_ boolcontent_ on_ error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- stream_
mappings Sequence[DestinationCobra Configuration Stream Mapping] - stream_
orders Sequence[str] - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
- client
Id String - Enter your Salesforce developer application's \n\nClient ID\n\n
- client
Secret String - Enter your Salesforce developer application's \n\nClient secret\n\n
- refresh
Token String - Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
- is
Sandbox Boolean - Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
- print
Record BooleanContent On Error - If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
- stream
Mappings List<Property Map> - stream
Orders List<String> - The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
DestinationCobraConfigurationStreamMapping, DestinationCobraConfigurationStreamMappingArgs
- Destination
Table string - The name for the table to update the data in the destination.
- Source
Stream string - The name for the input stream.
- Update
Mode string - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- Upsert
Key string - Given the operation is an upsert, a field representing an external ID needs to be provided
- Destination
Table string - The name for the table to update the data in the destination.
- Source
Stream string - The name for the input stream.
- Update
Mode string - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- Upsert
Key string - Given the operation is an upsert, a field representing an external ID needs to be provided
- destination
Table String - The name for the table to update the data in the destination.
- source
Stream String - The name for the input stream.
- update
Mode String - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- upsert
Key String - Given the operation is an upsert, a field representing an external ID needs to be provided
- destination
Table string - The name for the table to update the data in the destination.
- source
Stream string - The name for the input stream.
- update
Mode string - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- upsert
Key string - Given the operation is an upsert, a field representing an external ID needs to be provided
- destination_
table str - The name for the table to update the data in the destination.
- source_
stream str - The name for the input stream.
- update_
mode str - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- upsert_
key str - Given the operation is an upsert, a field representing an external ID needs to be provided
- destination
Table String - The name for the table to update the data in the destination.
- source
Stream String - The name for the input stream.
- update
Mode String - How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
- upsert
Key String - Given the operation is an upsert, a field representing an external ID needs to be provided
DestinationCobraResourceAllocation, DestinationCobraResourceAllocationArgs
- Default
Destination
Cobra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<DestinationCobra Resource Allocation Job Specific>
- Default
Destination
Cobra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []DestinationCobra Resource Allocation Job Specific
- default_
Destination
Cobra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<DestinationCobra Resource Allocation Job Specific>
- default
Destination
Cobra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics DestinationCobra Resource Allocation Job Specific[]
- default
Destination
Cobra Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[DestinationCobra Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
DestinationCobraResourceAllocationDefault, DestinationCobraResourceAllocationDefaultArgs
- 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
DestinationCobraResourceAllocationJobSpecific, DestinationCobraResourceAllocationJobSpecificArgs
- 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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 DestinationCobra 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)
DestinationCobraResourceAllocationJobSpecificResourceRequirements, DestinationCobraResourceAllocationJobSpecificResourceRequirementsArgs
- 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/destinationCobra:DestinationCobra my_airbyte_destination_cobra ""
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.