airbyte.SourceFinage
Explore with Pulumi AI
SourceFinage 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.SourceFinage;
import com.pulumi.airbyte.SourceFinageArgs;
import com.pulumi.airbyte.inputs.SourceFinageConfigurationArgs;
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 mySourceFinage = new SourceFinage("mySourceFinage", SourceFinageArgs.builder()
            .configuration(SourceFinageConfigurationArgs.builder()
                .api_key("...my_api_key...")
                .period("...my_period...")
                .start_date("2022-07-08T07:49:24.155Z")
                .symbols("{ \"see\": \"documentation\" }")
                .tech_indicator_type("EMA")
                .time("1min")
                .time_aggregates("quarter")
                .time_period("annual")
                .build())
            .definitionId("0f1bb04c-6207-448b-b70f-4930a2df2204")
            .secretId("...my_secret_id...")
            .workspaceId("718b2f57-2fa0-4bc1-8559-cff2b8f77133")
            .build());
    }
}
resources:
  mySourceFinage:
    type: airbyte:SourceFinage
    properties:
      configuration:
        api_key: '...my_api_key...'
        period: '...my_period...'
        start_date: 2022-07-08T07:49:24.155Z
        symbols:
          - '{ "see": "documentation" }'
        tech_indicator_type: EMA
        time: 1min
        time_aggregates: quarter
        time_period: annual
      definitionId: 0f1bb04c-6207-448b-b70f-4930a2df2204
      secretId: '...my_secret_id...'
      workspaceId: 718b2f57-2fa0-4bc1-8559-cff2b8f77133
Create SourceFinage Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceFinage(name: string, args: SourceFinageArgs, opts?: CustomResourceOptions);@overload
def SourceFinage(resource_name: str,
                 args: SourceFinageArgs,
                 opts: Optional[ResourceOptions] = None)
@overload
def SourceFinage(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 configuration: Optional[SourceFinageConfigurationArgs] = None,
                 workspace_id: Optional[str] = None,
                 definition_id: Optional[str] = None,
                 name: Optional[str] = None,
                 secret_id: Optional[str] = None)func NewSourceFinage(ctx *Context, name string, args SourceFinageArgs, opts ...ResourceOption) (*SourceFinage, error)public SourceFinage(string name, SourceFinageArgs args, CustomResourceOptions? opts = null)
public SourceFinage(String name, SourceFinageArgs args)
public SourceFinage(String name, SourceFinageArgs args, CustomResourceOptions options)
type: airbyte:SourceFinage
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 SourceFinageArgs
- 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 SourceFinageArgs
- 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 SourceFinageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceFinageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceFinageArgs
- 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 sourceFinageResource = new Airbyte.SourceFinage("sourceFinageResource", new()
{
    Configuration = new Airbyte.Inputs.SourceFinageConfigurationArgs
    {
        ApiKey = "string",
        StartDate = "string",
        Symbols = new[]
        {
            "string",
        },
        Period = "string",
        TechIndicatorType = "string",
        Time = "string",
        TimeAggregates = "string",
        TimePeriod = "string",
    },
    WorkspaceId = "string",
    DefinitionId = "string",
    Name = "string",
    SecretId = "string",
});
example, err := airbyte.NewSourceFinage(ctx, "sourceFinageResource", &airbyte.SourceFinageArgs{
Configuration: &.SourceFinageConfigurationArgs{
ApiKey: pulumi.String("string"),
StartDate: pulumi.String("string"),
Symbols: pulumi.StringArray{
pulumi.String("string"),
},
Period: pulumi.String("string"),
TechIndicatorType: pulumi.String("string"),
Time: pulumi.String("string"),
TimeAggregates: pulumi.String("string"),
TimePeriod: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceFinageResource = new SourceFinage("sourceFinageResource", SourceFinageArgs.builder()
    .configuration(SourceFinageConfigurationArgs.builder()
        .apiKey("string")
        .startDate("string")
        .symbols("string")
        .period("string")
        .techIndicatorType("string")
        .time("string")
        .timeAggregates("string")
        .timePeriod("string")
        .build())
    .workspaceId("string")
    .definitionId("string")
    .name("string")
    .secretId("string")
    .build());
source_finage_resource = airbyte.SourceFinage("sourceFinageResource",
    configuration={
        "api_key": "string",
        "start_date": "string",
        "symbols": ["string"],
        "period": "string",
        "tech_indicator_type": "string",
        "time": "string",
        "time_aggregates": "string",
        "time_period": "string",
    },
    workspace_id="string",
    definition_id="string",
    name="string",
    secret_id="string")
const sourceFinageResource = new airbyte.SourceFinage("sourceFinageResource", {
    configuration: {
        apiKey: "string",
        startDate: "string",
        symbols: ["string"],
        period: "string",
        techIndicatorType: "string",
        time: "string",
        timeAggregates: "string",
        timePeriod: "string",
    },
    workspaceId: "string",
    definitionId: "string",
    name: "string",
    secretId: "string",
});
type: airbyte:SourceFinage
properties:
    configuration:
        apiKey: string
        period: string
        startDate: string
        symbols:
            - string
        techIndicatorType: string
        time: string
        timeAggregates: string
        timePeriod: string
    definitionId: string
    name: string
    secretId: string
    workspaceId: string
SourceFinage 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 SourceFinage resource accepts the following input properties:
- Configuration
SourceFinage Configuration 
- WorkspaceId string
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
SourceFinage Configuration Args 
- WorkspaceId string
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFinage Configuration 
- workspaceId String
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFinage Configuration 
- workspaceId string
- definitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
SourceFinage Configuration Args 
- workspace_id str
- definition_id str
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_id str
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspaceId String
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceFinage resource produces the following output properties:
- CreatedAt double
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- CreatedAt float64
- Id string
- The provider-assigned unique ID for this managed resource.
- SourceId string
- SourceType string
- createdAt Double
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
- createdAt number
- id string
- The provider-assigned unique ID for this managed resource.
- sourceId string
- sourceType string
- created_at float
- id str
- The provider-assigned unique ID for this managed resource.
- source_id str
- source_type str
- createdAt Number
- id String
- The provider-assigned unique ID for this managed resource.
- sourceId String
- sourceType String
Look up Existing SourceFinage Resource
Get an existing SourceFinage 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?: SourceFinageState, opts?: CustomResourceOptions): SourceFinage@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configuration: Optional[SourceFinageConfigurationArgs] = None,
        created_at: Optional[float] = None,
        definition_id: Optional[str] = None,
        name: Optional[str] = None,
        secret_id: Optional[str] = None,
        source_id: Optional[str] = None,
        source_type: Optional[str] = None,
        workspace_id: Optional[str] = None) -> SourceFinagefunc GetSourceFinage(ctx *Context, name string, id IDInput, state *SourceFinageState, opts ...ResourceOption) (*SourceFinage, error)public static SourceFinage Get(string name, Input<string> id, SourceFinageState? state, CustomResourceOptions? opts = null)public static SourceFinage get(String name, Output<String> id, SourceFinageState state, CustomResourceOptions options)resources:  _:    type: airbyte:SourceFinage    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
SourceFinage Configuration 
- CreatedAt double
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- Configuration
SourceFinage Configuration Args 
- CreatedAt float64
- DefinitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- SecretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- SourceId string
- SourceType string
- WorkspaceId string
- configuration
SourceFinage Configuration 
- createdAt Double
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
- configuration
SourceFinage Configuration 
- createdAt number
- definitionId string
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secretId string
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId string
- sourceType string
- workspaceId string
- configuration
SourceFinage Configuration Args 
- created_at float
- definition_id str
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_id str
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_id str
- source_type str
- workspace_id str
- configuration Property Map
- createdAt Number
- definitionId String
- The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secretId String
- Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- sourceId String
- sourceType String
- workspaceId String
Supporting Types
SourceFinageConfiguration, SourceFinageConfigurationArgs      
- ApiKey string
- StartDate string
- Symbols List<string>
- List of symbols
- Period string
- Time period. Default is 10
- TechIndicator stringType 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- Time string
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- TimeAggregates string
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- TimePeriod string
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
- ApiKey string
- StartDate string
- Symbols []string
- List of symbols
- Period string
- Time period. Default is 10
- TechIndicator stringType 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- Time string
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- TimeAggregates string
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- TimePeriod string
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
- apiKey String
- startDate String
- symbols List<String>
- List of symbols
- period String
- Time period. Default is 10
- techIndicator StringType 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- time String
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- timeAggregates String
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- timePeriod String
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
- apiKey string
- startDate string
- symbols string[]
- List of symbols
- period string
- Time period. Default is 10
- techIndicator stringType 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- time string
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- timeAggregates string
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- timePeriod string
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
- api_key str
- start_date str
- symbols Sequence[str]
- List of symbols
- period str
- Time period. Default is 10
- tech_indicator_ strtype 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- time str
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- time_aggregates str
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- time_period str
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
- apiKey String
- startDate String
- symbols List<String>
- List of symbols
- period String
- Time period. Default is 10
- techIndicator StringType 
- One of DEMA, EMA, SMA, WMA, RSI, TEMA, Williams, ADX. Default: "SMA"; must be one of ["DEMA", "EMA", "SMA", "WMA", "RSI", "TEMA", "Williams", "ADX"]
- time String
- Default: "daily"; must be one of ["daily", "1min", "5min", "15min", "30min", "1hour", "4hour"]
- timeAggregates String
- Size of the time. Default: "day"; must be one of ["minute", "hour", "day", "week", "month", "quarter", "year"]
- timePeriod String
- Time Period for cash flow stmts. must be one of ["annual", "quarter"]
Import
$ pulumi import airbyte:index/sourceFinage:SourceFinage my_airbyte_source_finage ""
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 airbyteTerraform Provider.