airbyte.SourceMicrosoftTeams
Explore with Pulumi AI
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...",
},
authenticateViaMicrosoftOAuth20: {
clientId: "...my_client_id...",
clientSecret: "...my_client_secret...",
refreshToken: "...my_refresh_token...",
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...",
},
"authenticate_via_microsoft_o_auth20": {
"client_id": "...my_client_id...",
"client_secret": "...my_client_secret...",
"refresh_token": "...my_refresh_token...",
"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..."),
},
AuthenticateViaMicrosoftOAuth20: &airbyte.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args{
ClientId: pulumi.String("...my_client_id..."),
ClientSecret: pulumi.String("...my_client_secret..."),
RefreshToken: pulumi.String("...my_refresh_token..."),
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...",
},
AuthenticateViaMicrosoftOAuth20 = new Airbyte.Inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args
{
ClientId = "...my_client_id...",
ClientSecret = "...my_client_secret...",
RefreshToken = "...my_refresh_token...",
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 com.pulumi.airbyte.inputs.SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args;
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())
.authenticateViaMicrosoftOAuth20(SourceMicrosoftTeamsConfigurationCredentialsAuthenticateViaMicrosoftOAuth20Args.builder()
.clientId("...my_client_id...")
.clientSecret("...my_client_secret...")
.refreshToken("...my_refresh_token...")
.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...'
authenticateViaMicrosoftOAuth20:
clientId: '...my_client_id...'
clientSecret: '...my_client_secret...'
refreshToken: '...my_refresh_token...'
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
Source
Microsoft Teams Configuration - Workspace
Id string - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Microsoft Teams Configuration Args - Workspace
Id string - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Microsoft Teams Configuration - workspace
Id String - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Microsoft Teams Configuration - workspace
Id string - definition
Id 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.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Microsoft Teams 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
- workspace
Id String - definition
Id 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.
- secret
Id 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:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type 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,
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.
- Configuration
Source
Microsoft Teams Configuration - Created
At double - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Microsoft Teams Configuration Args - Created
At float64 - Definition
Id 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.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Microsoft Teams Configuration - created
At Double - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Microsoft Teams Configuration - created
At number - definition
Id 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.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Microsoft Teams 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
- created
At Number - definition
Id 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.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id 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
Source
Microsoft Teams Configuration Credentials - 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
Source
Microsoft Teams Configuration Credentials - 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
Source
Microsoft Teams Configuration Credentials - 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
Source
Microsoft Teams Configuration Credentials - 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
Source
Microsoft Teams Configuration Credentials - 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
- Client
Id string - The Client ID of your Microsoft Teams developer application.
- Client
Secret string - The Client Secret of your Microsoft Teams developer application.
- Tenant
Id 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 string - The Client ID of your Microsoft Teams developer application.
- Client
Secret string - The Client Secret of your Microsoft Teams developer application.
- Tenant
Id 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 String - The Client ID of your Microsoft Teams developer application.
- client
Secret String - The Client Secret of your Microsoft Teams developer application.
- tenant
Id 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 string - The Client ID of your Microsoft Teams developer application.
- client
Secret string - The Client Secret of your Microsoft Teams developer application.
- tenant
Id 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
- client
Id String - The Client ID of your Microsoft Teams developer application.
- client
Secret String - The Client Secret of your Microsoft Teams developer application.
- tenant
Id 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
- Client
Id string - The Client ID of your Microsoft Teams developer application.
- Client
Secret string - The Client Secret of your Microsoft Teams developer application.
- Refresh
Token string - A Refresh Token to renew the expired Access Token.
- Tenant
Id 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 string - The Client ID of your Microsoft Teams developer application.
- Client
Secret string - The Client Secret of your Microsoft Teams developer application.
- Refresh
Token string - A Refresh Token to renew the expired Access Token.
- Tenant
Id 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 String - The Client ID of your Microsoft Teams developer application.
- client
Secret String - The Client Secret of your Microsoft Teams developer application.
- refresh
Token String - A Refresh Token to renew the expired Access Token.
- tenant
Id 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 string - The Client ID of your Microsoft Teams developer application.
- client
Secret string - The Client Secret of your Microsoft Teams developer application.
- refresh
Token string - A Refresh Token to renew the expired Access Token.
- tenant
Id 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
- client
Id String - The Client ID of your Microsoft Teams developer application.
- client
Secret String - The Client Secret of your Microsoft Teams developer application.
- refresh
Token String - A Refresh Token to renew the expired Access Token.
- tenant
Id 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
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.