1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceMicrosoftTeams
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.SourceMicrosoftTeams

Explore with Pulumi AI

airbyte logo
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

    SourceMicrosoftTeams Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as airbyte from "@pulumi/airbyte";
    
    const mySourceMicrosoftteams = new airbyte.SourceMicrosoftTeams("mySourceMicrosoftteams", {
        configuration: {
            credentials: {
                authenticateViaMicrosoft: {
                    clientId: "...my_client_id...",
                    clientSecret: "...my_client_secret...",
                    tenantId: "...my_tenant_id...",
                },
            },
            period: "D7",
        },
        definitionId: "9c7c92b5-c652-4363-8342-1deb8b5e46f4",
        secretId: "...my_secret_id...",
        workspaceId: "5bc16313-0df8-4b0a-937a-7ae3de2c21ca",
    });
    
    import pulumi
    import pulumi_airbyte as airbyte
    
    my_source_microsoftteams = airbyte.SourceMicrosoftTeams("mySourceMicrosoftteams",
        configuration={
            "credentials": {
                "authenticate_via_microsoft": {
                    "client_id": "...my_client_id...",
                    "client_secret": "...my_client_secret...",
                    "tenant_id": "...my_tenant_id...",
                },
            },
            "period": "D7",
        },
        definition_id="9c7c92b5-c652-4363-8342-1deb8b5e46f4",
        secret_id="...my_secret_id...",
        workspace_id="5bc16313-0df8-4b0a-937a-7ae3de2c21ca")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := airbyte.NewSourceMicrosoftTeams(ctx, "mySourceMicrosoftteams", &airbyte.SourceMicrosoftTeamsArgs{
    			Configuration: &airbyte.SourceMicrosoftTeamsConfigurationArgs{
    				Credentials: &airbyte.SourceMicrosoftTeamsConfigurationCredentialsArgs{
    					AuthenticateViaMicrosoft: &airbyte.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs{
    						ClientId:     pulumi.String("...my_client_id..."),
    						ClientSecret: pulumi.String("...my_client_secret..."),
    						TenantId:     pulumi.String("...my_tenant_id..."),
    					},
    				},
    				Period: pulumi.String("D7"),
    			},
    			DefinitionId: pulumi.String("9c7c92b5-c652-4363-8342-1deb8b5e46f4"),
    			SecretId:     pulumi.String("...my_secret_id..."),
    			WorkspaceId:  pulumi.String("5bc16313-0df8-4b0a-937a-7ae3de2c21ca"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Airbyte = Pulumi.Airbyte;
    
    return await Deployment.RunAsync(() => 
    {
        var mySourceMicrosoftteams = new Airbyte.SourceMicrosoftTeams("mySourceMicrosoftteams", new()
        {
            Configuration = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationArgs
            {
                Credentials = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsArgs
                {
                    AuthenticateViaMicrosoft = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs
                    {
                        ClientId = "...my_client_id...",
                        ClientSecret = "...my_client_secret...",
                        TenantId = "...my_tenant_id...",
                    },
                },
                Period = "D7",
            },
            DefinitionId = "9c7c92b5-c652-4363-8342-1deb8b5e46f4",
            SecretId = "...my_secret_id...",
            WorkspaceId = "5bc16313-0df8-4b0a-937a-7ae3de2c21ca",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.SourceMicrosoftTeams;
    import com.pulumi.airbyte.SourceMicrosoftTeamsArgs;
    import com.pulumi.airbyte.inputs.SourceMicrosoftTeamsConfigurationArgs;
    import com.pulumi.airbyte.inputs.SourceMicrosoftTeamsConfigurationCredentialsArgs;
    import com.pulumi.airbyte.inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs;
    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 mySourceMicrosoftteams = new SourceMicrosoftTeams("mySourceMicrosoftteams", SourceMicrosoftTeamsArgs.builder()
                .configuration(SourceMicrosoftTeamsConfigurationArgs.builder()
                    .credentials(SourceMicrosoftTeamsConfigurationCredentialsArgs.builder()
                        .authenticateViaMicrosoft(SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs.builder()
                            .clientId("...my_client_id...")
                            .clientSecret("...my_client_secret...")
                            .tenantId("...my_tenant_id...")
                            .build())
                        .build())
                    .period("D7")
                    .build())
                .definitionId("9c7c92b5-c652-4363-8342-1deb8b5e46f4")
                .secretId("...my_secret_id...")
                .workspaceId("5bc16313-0df8-4b0a-937a-7ae3de2c21ca")
                .build());
    
        }
    }
    
    resources:
      mySourceMicrosoftteams:
        type: airbyte:SourceMicrosoftTeams
        properties:
          configuration:
            credentials:
              authenticateViaMicrosoft:
                clientId: '...my_client_id...'
                clientSecret: '...my_client_secret...'
                tenantId: '...my_tenant_id...'
            period: D7
          definitionId: 9c7c92b5-c652-4363-8342-1deb8b5e46f4
          secretId: '...my_secret_id...'
          workspaceId: 5bc16313-0df8-4b0a-937a-7ae3de2c21ca
    

    Create SourceMicrosoftTeams Resource

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

    Constructor syntax

    new SourceMicrosoftTeams(name: string, args: SourceMicrosoftTeamsArgs, opts?: CustomResourceOptions);
    @overload
    def SourceMicrosoftTeams(resource_name: str,
                             args: SourceMicrosoftTeamsArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceMicrosoftTeams(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             configuration: Optional[SourceMicrosoftTeamsConfigurationArgs] = None,
                             workspace_id: Optional[str] = None,
                             definition_id: Optional[str] = None,
                             name: Optional[str] = None,
                             secret_id: Optional[str] = None)
    func NewSourceMicrosoftTeams(ctx *Context, name string, args SourceMicrosoftTeamsArgs, opts ...ResourceOption) (*SourceMicrosoftTeams, error)
    public SourceMicrosoftTeams(string name, SourceMicrosoftTeamsArgs args, CustomResourceOptions? opts = null)
    public SourceMicrosoftTeams(String name, SourceMicrosoftTeamsArgs args)
    public SourceMicrosoftTeams(String name, SourceMicrosoftTeamsArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceMicrosoftTeams
    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 SourceMicrosoftTeamsArgs
    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 SourceMicrosoftTeamsArgs
    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 SourceMicrosoftTeamsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceMicrosoftTeamsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceMicrosoftTeamsArgs
    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 sourceMicrosoftTeamsResource = new Airbyte.SourceMicrosoftTeams("sourceMicrosoftTeamsResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationArgs
        {
            Period = "string",
            Credentials = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsArgs
            {
                AuthenticateViaMicrosoft = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs
                {
                    ClientId = "string",
                    ClientSecret = "string",
                    TenantId = "string",
                },
                AuthenticateViaMicrosoftOAuth20 = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args
                {
                    ClientId = "string",
                    ClientSecret = "string",
                    RefreshToken = "string",
                    TenantId = "string",
                },
            },
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceMicrosoftTeams(ctx, "sourceMicrosoftTeamsResource", &airbyte.SourceMicrosoftTeamsArgs{
    Configuration: &.SourceMicrosoftTeamsConfigurationArgs{
    Period: pulumi.String("string"),
    Credentials: &.SourceMicrosoftTeamsConfigurationCredentialsArgs{
    AuthenticateViaMicrosoft: &.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    TenantId: pulumi.String("string"),
    },
    AuthenticateViaMicrosoftOAuth20: &.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    RefreshToken: pulumi.String("string"),
    TenantId: pulumi.String("string"),
    },
    },
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceMicrosoftTeamsResource = new SourceMicrosoftTeams("sourceMicrosoftTeamsResource", SourceMicrosoftTeamsArgs.builder()
        .configuration(SourceMicrosoftTeamsConfigurationArgs.builder()
            .period("string")
            .credentials(SourceMicrosoftTeamsConfigurationCredentialsArgs.builder()
                .authenticateViaMicrosoft(SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs.builder()
                    .clientId("string")
                    .clientSecret("string")
                    .tenantId("string")
                    .build())
                .authenticateViaMicrosoftOAuth20(SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args.builder()
                    .clientId("string")
                    .clientSecret("string")
                    .refreshToken("string")
                    .tenantId("string")
                    .build())
                .build())
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_microsoft_teams_resource = airbyte.SourceMicrosoftTeams("sourceMicrosoftTeamsResource",
        configuration={
            "period": "string",
            "credentials": {
                "authenticate_via_microsoft": {
                    "client_id": "string",
                    "client_secret": "string",
                    "tenant_id": "string",
                },
                "authenticate_via_microsoft_o_auth20": {
                    "client_id": "string",
                    "client_secret": "string",
                    "refresh_token": "string",
                    "tenant_id": "string",
                },
            },
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceMicrosoftTeamsResource = new airbyte.SourceMicrosoftTeams("sourceMicrosoftTeamsResource", {
        configuration: {
            period: "string",
            credentials: {
                authenticateViaMicrosoft: {
                    clientId: "string",
                    clientSecret: "string",
                    tenantId: "string",
                },
                authenticateViaMicrosoftOAuth20: {
                    clientId: "string",
                    clientSecret: "string",
                    refreshToken: "string",
                    tenantId: "string",
                },
            },
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceMicrosoftTeams
    properties:
        configuration:
            credentials:
                authenticateViaMicrosoft:
                    clientId: string
                    clientSecret: string
                    tenantId: string
                authenticateViaMicrosoftOAuth20:
                    clientId: string
                    clientSecret: string
                    refreshToken: string
                    tenantId: string
            period: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourceMicrosoftTeamsConfiguration
    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 SourceMicrosoftTeamsConfigurationArgs
    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 SourceMicrosoftTeamsConfiguration
    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 SourceMicrosoftTeamsConfiguration
    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 SourceMicrosoftTeamsConfigurationArgs
    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 SourceMicrosoftTeams resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    SourceId string
    SourceType string
    CreatedAt float64
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    SourceId string
    SourceType string
    createdAt Double
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    sourceId String
    sourceType String
    createdAt number
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    sourceId string
    sourceType string
    created_at float
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation SourceMicrosoftTeamsResourceAllocation
    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.
    source_id str
    source_type str
    createdAt Number
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    sourceId String
    sourceType String

    Look up Existing SourceMicrosoftTeams Resource

    Get an existing SourceMicrosoftTeams 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?: SourceMicrosoftTeamsState, opts?: CustomResourceOptions): SourceMicrosoftTeams
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceMicrosoftTeamsConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[SourceMicrosoftTeamsResourceAllocationArgs] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourceMicrosoftTeams
    func GetSourceMicrosoftTeams(ctx *Context, name string, id IDInput, state *SourceMicrosoftTeamsState, opts ...ResourceOption) (*SourceMicrosoftTeams, error)
    public static SourceMicrosoftTeams Get(string name, Input<string> id, SourceMicrosoftTeamsState? state, CustomResourceOptions? opts = null)
    public static SourceMicrosoftTeams get(String name, Output<String> id, SourceMicrosoftTeamsState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceMicrosoftTeams    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 SourceMicrosoftTeamsConfiguration
    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.
    ResourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Configuration SourceMicrosoftTeamsConfigurationArgs
    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.
    ResourceAllocation SourceMicrosoftTeamsResourceAllocationArgs
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    configuration SourceMicrosoftTeamsConfiguration
    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.
    resourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    configuration SourceMicrosoftTeamsConfiguration
    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.
    resourceAllocation SourceMicrosoftTeamsResourceAllocation
    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.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId string
    sourceType string
    workspaceId string
    configuration SourceMicrosoftTeamsConfigurationArgs
    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.
    resource_allocation SourceMicrosoftTeamsResourceAllocationArgs
    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.
    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.
    resourceAllocation Property Map
    actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String

    Supporting Types

    SourceMicrosoftTeamsConfiguration, SourceMicrosoftTeamsConfigurationArgs

    Period string
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    Credentials SourceMicrosoftTeamsConfigurationCredentials
    Choose how to authenticate to Microsoft
    Period string
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    Credentials SourceMicrosoftTeamsConfigurationCredentials
    Choose how to authenticate to Microsoft
    period String
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    credentials SourceMicrosoftTeamsConfigurationCredentials
    Choose how to authenticate to Microsoft
    period string
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    credentials SourceMicrosoftTeamsConfigurationCredentials
    Choose how to authenticate to Microsoft
    period str
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    credentials SourceMicrosoftTeamsConfigurationCredentials
    Choose how to authenticate to Microsoft
    period String
    Specifies the length of time over which the Team Device Report stream is aggregated. The supported values are: D7, D30, D90, and D180.
    credentials Property Map
    Choose how to authenticate to Microsoft

    SourceMicrosoftTeamsConfigurationCredentials, SourceMicrosoftTeamsConfigurationCredentialsArgs

    SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoft, SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftArgs

    ClientId string
    The Client ID of your Microsoft Teams developer application.
    ClientSecret string
    The Client Secret of your Microsoft Teams developer application.
    TenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    ClientId string
    The Client ID of your Microsoft Teams developer application.
    ClientSecret string
    The Client Secret of your Microsoft Teams developer application.
    TenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId String
    The Client ID of your Microsoft Teams developer application.
    clientSecret String
    The Client Secret of your Microsoft Teams developer application.
    tenantId String
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId string
    The Client ID of your Microsoft Teams developer application.
    clientSecret string
    The Client Secret of your Microsoft Teams developer application.
    tenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    client_id str
    The Client ID of your Microsoft Teams developer application.
    client_secret str
    The Client Secret of your Microsoft Teams developer application.
    tenant_id str
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId String
    The Client ID of your Microsoft Teams developer application.
    clientSecret String
    The Client Secret of your Microsoft Teams developer application.
    tenantId String
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL

    SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20, SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args

    ClientId string
    The Client ID of your Microsoft Teams developer application.
    ClientSecret string
    The Client Secret of your Microsoft Teams developer application.
    RefreshToken string
    A Refresh Token to renew the expired Access Token.
    TenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    ClientId string
    The Client ID of your Microsoft Teams developer application.
    ClientSecret string
    The Client Secret of your Microsoft Teams developer application.
    RefreshToken string
    A Refresh Token to renew the expired Access Token.
    TenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId String
    The Client ID of your Microsoft Teams developer application.
    clientSecret String
    The Client Secret of your Microsoft Teams developer application.
    refreshToken String
    A Refresh Token to renew the expired Access Token.
    tenantId String
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId string
    The Client ID of your Microsoft Teams developer application.
    clientSecret string
    The Client Secret of your Microsoft Teams developer application.
    refreshToken string
    A Refresh Token to renew the expired Access Token.
    tenantId string
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    client_id str
    The Client ID of your Microsoft Teams developer application.
    client_secret str
    The Client Secret of your Microsoft Teams developer application.
    refresh_token str
    A Refresh Token to renew the expired Access Token.
    tenant_id str
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL
    clientId String
    The Client ID of your Microsoft Teams developer application.
    clientSecret String
    The Client Secret of your Microsoft Teams developer application.
    refreshToken String
    A Refresh Token to renew the expired Access Token.
    tenantId String
    A globally unique identifier (GUID) that is different than your organization name or domain. Follow these steps to obtain: open one of the Teams where you belong inside the Teams Application > Click on the … next to the Team title > Click on Get link to team > Copy the link to the team and grab the tenant ID form the URL

    SourceMicrosoftTeamsResourceAllocation, SourceMicrosoftTeamsResourceAllocationArgs

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

    SourceMicrosoftTeamsResourceAllocationDefault, SourceMicrosoftTeamsResourceAllocationDefaultArgs

    SourceMicrosoftTeamsResourceAllocationJobSpecific, SourceMicrosoftTeamsResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    ResourceRequirements SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType string
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements
    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 SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType String
    enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirements, SourceMicrosoftTeamsResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/sourceMicrosoftTeams:SourceMicrosoftTeams my_airbyte_source_microsoft_teams ""
    

    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.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq