1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceMyHours
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.SourceMyHours

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    SourceMyHours 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.SourceMyHours;
    import com.pulumi.airbyte.SourceMyHoursArgs;
    import com.pulumi.airbyte.inputs.SourceMyHoursConfigurationArgs;
    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 mySourceMyhours = new SourceMyHours("mySourceMyhours", SourceMyHoursArgs.builder()
                .configuration(SourceMyHoursConfigurationArgs.builder()
                    .email("john@doe.com")
                    .logs_batch_size(30)
                    .password("...my_password...")
                    .start_date("%Y-%m-%d")
                    .build())
                .definitionId("36dbf122-e4bc-4016-a9fd-e3af6f38ae20")
                .secretId("...my_secret_id...")
                .workspaceId("b63b6385-c282-4a24-b2df-4452ed4c92a3")
                .build());
    
        }
    }
    
    resources:
      mySourceMyhours:
        type: airbyte:SourceMyHours
        properties:
          configuration:
            email: john@doe.com
            logs_batch_size: 30
            password: '...my_password...'
            start_date: '%Y-%m-%d'
          definitionId: 36dbf122-e4bc-4016-a9fd-e3af6f38ae20
          secretId: '...my_secret_id...'
          workspaceId: b63b6385-c282-4a24-b2df-4452ed4c92a3
    

    Create SourceMyHours Resource

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

    Constructor syntax

    new SourceMyHours(name: string, args: SourceMyHoursArgs, opts?: CustomResourceOptions);
    @overload
    def SourceMyHours(resource_name: str,
                      args: SourceMyHoursArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceMyHours(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      configuration: Optional[SourceMyHoursConfigurationArgs] = None,
                      workspace_id: Optional[str] = None,
                      definition_id: Optional[str] = None,
                      name: Optional[str] = None,
                      secret_id: Optional[str] = None)
    func NewSourceMyHours(ctx *Context, name string, args SourceMyHoursArgs, opts ...ResourceOption) (*SourceMyHours, error)
    public SourceMyHours(string name, SourceMyHoursArgs args, CustomResourceOptions? opts = null)
    public SourceMyHours(String name, SourceMyHoursArgs args)
    public SourceMyHours(String name, SourceMyHoursArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceMyHours
    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 SourceMyHoursArgs
    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 SourceMyHoursArgs
    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 SourceMyHoursArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceMyHoursArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceMyHoursArgs
    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 sourceMyHoursResource = new Airbyte.SourceMyHours("sourceMyHoursResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceMyHoursConfigurationArgs
        {
            Email = "string",
            Password = "string",
            StartDate = "string",
            LogsBatchSize = 0,
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceMyHours(ctx, "sourceMyHoursResource", &airbyte.SourceMyHoursArgs{
    Configuration: &.SourceMyHoursConfigurationArgs{
    Email: pulumi.String("string"),
    Password: pulumi.String("string"),
    StartDate: pulumi.String("string"),
    LogsBatchSize: pulumi.Float64(0),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceMyHoursResource = new SourceMyHours("sourceMyHoursResource", SourceMyHoursArgs.builder()
        .configuration(SourceMyHoursConfigurationArgs.builder()
            .email("string")
            .password("string")
            .startDate("string")
            .logsBatchSize(0)
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_my_hours_resource = airbyte.SourceMyHours("sourceMyHoursResource",
        configuration={
            "email": "string",
            "password": "string",
            "start_date": "string",
            "logs_batch_size": 0,
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceMyHoursResource = new airbyte.SourceMyHours("sourceMyHoursResource", {
        configuration: {
            email: "string",
            password: "string",
            startDate: "string",
            logsBatchSize: 0,
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceMyHours
    properties:
        configuration:
            email: string
            logsBatchSize: 0
            password: string
            startDate: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourceMyHoursConfiguration
    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 SourceMyHoursConfigurationArgs
    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 SourceMyHoursConfiguration
    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 SourceMyHoursConfiguration
    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 SourceMyHoursConfigurationArgs
    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 SourceMyHours 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 SourceMyHours Resource

    Get an existing SourceMyHours 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?: SourceMyHoursState, opts?: CustomResourceOptions): SourceMyHours
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceMyHoursConfigurationArgs] = 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) -> SourceMyHours
    func GetSourceMyHours(ctx *Context, name string, id IDInput, state *SourceMyHoursState, opts ...ResourceOption) (*SourceMyHours, error)
    public static SourceMyHours Get(string name, Input<string> id, SourceMyHoursState? state, CustomResourceOptions? opts = null)
    public static SourceMyHours get(String name, Output<String> id, SourceMyHoursState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceMyHours    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.
    The following state arguments are supported:
    Configuration SourceMyHoursConfiguration
    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 SourceMyHoursConfigurationArgs
    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 SourceMyHoursConfiguration
    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 SourceMyHoursConfiguration
    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 SourceMyHoursConfigurationArgs
    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

    SourceMyHoursConfiguration, SourceMyHoursConfigurationArgs

    Email string
    Your My Hours username
    Password string
    The password associated to the username
    StartDate string
    Start date for collecting time logs
    LogsBatchSize double
    Pagination size used for retrieving logs in days. Default: 30
    Email string
    Your My Hours username
    Password string
    The password associated to the username
    StartDate string
    Start date for collecting time logs
    LogsBatchSize float64
    Pagination size used for retrieving logs in days. Default: 30
    email String
    Your My Hours username
    password String
    The password associated to the username
    startDate String
    Start date for collecting time logs
    logsBatchSize Double
    Pagination size used for retrieving logs in days. Default: 30
    email string
    Your My Hours username
    password string
    The password associated to the username
    startDate string
    Start date for collecting time logs
    logsBatchSize number
    Pagination size used for retrieving logs in days. Default: 30
    email str
    Your My Hours username
    password str
    The password associated to the username
    start_date str
    Start date for collecting time logs
    logs_batch_size float
    Pagination size used for retrieving logs in days. Default: 30
    email String
    Your My Hours username
    password String
    The password associated to the username
    startDate String
    Start date for collecting time logs
    logsBatchSize Number
    Pagination size used for retrieving logs in days. Default: 30

    Import

    $ pulumi import airbyte:index/sourceMyHours:SourceMyHours my_airbyte_source_my_hours ""
    

    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.
    airbyte logo
    airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq