airbyte.Workspace
Explore with Pulumi AI
Workspace 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.Workspace;
import com.pulumi.airbyte.WorkspaceArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsFailureArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsFailureEmailArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsFailureWebhookArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsSuccessArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsSuccessEmailArgs;
import com.pulumi.airbyte.inputs.WorkspaceNotificationsSuccessWebhookArgs;
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 myWorkspace = new Workspace("myWorkspace", WorkspaceArgs.builder()
            .notifications(WorkspaceNotificationsArgs.builder()
                .connection_update(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .connection_update_action_required(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .failure(WorkspaceNotificationsFailureArgs.builder()
                    .email(WorkspaceNotificationsFailureEmailArgs.builder()
                        .enabled(false)
                        .build())
                    .webhook(WorkspaceNotificationsFailureWebhookArgs.builder()
                        .enabled(false)
                        .url("...my_url...")
                        .build())
                    .build())
                .success(WorkspaceNotificationsSuccessArgs.builder()
                    .email(WorkspaceNotificationsSuccessEmailArgs.builder()
                        .enabled(false)
                        .build())
                    .webhook(WorkspaceNotificationsSuccessWebhookArgs.builder()
                        .enabled(true)
                        .url("...my_url...")
                        .build())
                    .build())
                .sync_disabled(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .sync_disabled_warning(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .organizationId("4d886138-b4b4-4da8-9dca-f4d28f8550f8")
            .build());
    }
}
resources:
  myWorkspace:
    type: airbyte:Workspace
    properties:
      notifications:
        connection_update:
          email:
            enabled: false
          webhook:
            enabled: false
            url: '...my_url...'
        connection_update_action_required:
          email:
            enabled: true
          webhook:
            enabled: true
            url: '...my_url...'
        failure:
          email:
            enabled: false
          webhook:
            enabled: false
            url: '...my_url...'
        success:
          email:
            enabled: false
          webhook:
            enabled: true
            url: '...my_url...'
        sync_disabled:
          email:
            enabled: true
          webhook:
            enabled: true
            url: '...my_url...'
        sync_disabled_warning:
          email:
            enabled: false
          webhook:
            enabled: false
            url: '...my_url...'
      organizationId: 4d886138-b4b4-4da8-9dca-f4d28f8550f8
Create Workspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workspace(name: string, args?: WorkspaceArgs, opts?: CustomResourceOptions);@overload
def Workspace(resource_name: str,
              args: Optional[WorkspaceArgs] = None,
              opts: Optional[ResourceOptions] = None)
@overload
def Workspace(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              name: Optional[str] = None,
              notifications: Optional[WorkspaceNotificationsArgs] = None,
              organization_id: Optional[str] = None)func NewWorkspace(ctx *Context, name string, args *WorkspaceArgs, opts ...ResourceOption) (*Workspace, error)public Workspace(string name, WorkspaceArgs? args = null, CustomResourceOptions? opts = null)
public Workspace(String name, WorkspaceArgs args)
public Workspace(String name, WorkspaceArgs args, CustomResourceOptions options)
type: airbyte:Workspace
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 WorkspaceArgs
- 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 WorkspaceArgs
- 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 WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceArgs
- 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 workspaceResource = new Airbyte.Workspace("workspaceResource", new()
{
    Name = "string",
    Notifications = new Airbyte.Inputs.WorkspaceNotificationsArgs
    {
        ConnectionUpdate = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
        ConnectionUpdateActionRequired = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateActionRequiredArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateActionRequiredEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsConnectionUpdateActionRequiredWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
        Failure = new Airbyte.Inputs.WorkspaceNotificationsFailureArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsFailureEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsFailureWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
        Success = new Airbyte.Inputs.WorkspaceNotificationsSuccessArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsSuccessEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsSuccessWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
        SyncDisabled = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
        SyncDisabledWarning = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledWarningArgs
        {
            Email = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledWarningEmailArgs
            {
                Enabled = false,
            },
            Webhook = new Airbyte.Inputs.WorkspaceNotificationsSyncDisabledWarningWebhookArgs
            {
                Enabled = false,
                Url = "string",
            },
        },
    },
    OrganizationId = "string",
});
example, err := airbyte.NewWorkspace(ctx, "workspaceResource", &airbyte.WorkspaceArgs{
Name: pulumi.String("string"),
Notifications: &.WorkspaceNotificationsArgs{
ConnectionUpdate: &.WorkspaceNotificationsConnectionUpdateArgs{
Email: &.WorkspaceNotificationsConnectionUpdateEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsConnectionUpdateWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
ConnectionUpdateActionRequired: &.WorkspaceNotificationsConnectionUpdateActionRequiredArgs{
Email: &.WorkspaceNotificationsConnectionUpdateActionRequiredEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsConnectionUpdateActionRequiredWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
Failure: &.WorkspaceNotificationsFailureArgs{
Email: &.WorkspaceNotificationsFailureEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsFailureWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
Success: &.WorkspaceNotificationsSuccessArgs{
Email: &.WorkspaceNotificationsSuccessEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsSuccessWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
SyncDisabled: &.WorkspaceNotificationsSyncDisabledArgs{
Email: &.WorkspaceNotificationsSyncDisabledEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsSyncDisabledWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
SyncDisabledWarning: &.WorkspaceNotificationsSyncDisabledWarningArgs{
Email: &.WorkspaceNotificationsSyncDisabledWarningEmailArgs{
Enabled: pulumi.Bool(false),
},
Webhook: &.WorkspaceNotificationsSyncDisabledWarningWebhookArgs{
Enabled: pulumi.Bool(false),
Url: pulumi.String("string"),
},
},
},
OrganizationId: pulumi.String("string"),
})
var workspaceResource = new Workspace("workspaceResource", WorkspaceArgs.builder()
    .name("string")
    .notifications(WorkspaceNotificationsArgs.builder()
        .connectionUpdate(WorkspaceNotificationsConnectionUpdateArgs.builder()
            .email(WorkspaceNotificationsConnectionUpdateEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsConnectionUpdateWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .connectionUpdateActionRequired(WorkspaceNotificationsConnectionUpdateActionRequiredArgs.builder()
            .email(WorkspaceNotificationsConnectionUpdateActionRequiredEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsConnectionUpdateActionRequiredWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .failure(WorkspaceNotificationsFailureArgs.builder()
            .email(WorkspaceNotificationsFailureEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsFailureWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .success(WorkspaceNotificationsSuccessArgs.builder()
            .email(WorkspaceNotificationsSuccessEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsSuccessWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .syncDisabled(WorkspaceNotificationsSyncDisabledArgs.builder()
            .email(WorkspaceNotificationsSyncDisabledEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsSyncDisabledWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .syncDisabledWarning(WorkspaceNotificationsSyncDisabledWarningArgs.builder()
            .email(WorkspaceNotificationsSyncDisabledWarningEmailArgs.builder()
                .enabled(false)
                .build())
            .webhook(WorkspaceNotificationsSyncDisabledWarningWebhookArgs.builder()
                .enabled(false)
                .url("string")
                .build())
            .build())
        .build())
    .organizationId("string")
    .build());
workspace_resource = airbyte.Workspace("workspaceResource",
    name="string",
    notifications={
        "connection_update": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
        "connection_update_action_required": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
        "failure": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
        "success": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
        "sync_disabled": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
        "sync_disabled_warning": {
            "email": {
                "enabled": False,
            },
            "webhook": {
                "enabled": False,
                "url": "string",
            },
        },
    },
    organization_id="string")
const workspaceResource = new airbyte.Workspace("workspaceResource", {
    name: "string",
    notifications: {
        connectionUpdate: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
        connectionUpdateActionRequired: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
        failure: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
        success: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
        syncDisabled: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
        syncDisabledWarning: {
            email: {
                enabled: false,
            },
            webhook: {
                enabled: false,
                url: "string",
            },
        },
    },
    organizationId: "string",
});
type: airbyte:Workspace
properties:
    name: string
    notifications:
        connectionUpdate:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
        connectionUpdateActionRequired:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
        failure:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
        success:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
        syncDisabled:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
        syncDisabledWarning:
            email:
                enabled: false
            webhook:
                enabled: false
                url: string
    organizationId: string
Workspace 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 Workspace resource accepts the following input properties:
- Name string
- Name of the workspace
- Notifications
WorkspaceNotifications 
- Configures workspace notifications.
- OrganizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- Name string
- Name of the workspace
- Notifications
WorkspaceNotifications Args 
- Configures workspace notifications.
- OrganizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- name String
- Name of the workspace
- notifications
WorkspaceNotifications 
- Configures workspace notifications.
- organizationId String
- ID of organization to add workspace to. Requires replacement if changed.
- name string
- Name of the workspace
- notifications
WorkspaceNotifications 
- Configures workspace notifications.
- organizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- name str
- Name of the workspace
- notifications
WorkspaceNotifications Args 
- Configures workspace notifications.
- organization_id str
- ID of organization to add workspace to. Requires replacement if changed.
- name String
- Name of the workspace
- notifications Property Map
- Configures workspace notifications.
- organizationId String
- ID of organization to add workspace to. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:
- DataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- Id string
- The provider-assigned unique ID for this managed resource.
- WorkspaceId string
- DataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- Id string
- The provider-assigned unique ID for this managed resource.
- WorkspaceId string
- dataResidency String
- Default: "auto"; must be one of ["auto", "us", "eu"]
- id String
- The provider-assigned unique ID for this managed resource.
- workspaceId String
- dataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- id string
- The provider-assigned unique ID for this managed resource.
- workspaceId string
- data_residency str
- Default: "auto"; must be one of ["auto", "us", "eu"]
- id str
- The provider-assigned unique ID for this managed resource.
- workspace_id str
- dataResidency String
- Default: "auto"; must be one of ["auto", "us", "eu"]
- id String
- The provider-assigned unique ID for this managed resource.
- workspaceId String
Look up Existing Workspace Resource
Get an existing Workspace 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?: WorkspaceState, opts?: CustomResourceOptions): Workspace@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        data_residency: Optional[str] = None,
        name: Optional[str] = None,
        notifications: Optional[WorkspaceNotificationsArgs] = None,
        organization_id: Optional[str] = None,
        workspace_id: Optional[str] = None) -> Workspacefunc GetWorkspace(ctx *Context, name string, id IDInput, state *WorkspaceState, opts ...ResourceOption) (*Workspace, error)public static Workspace Get(string name, Input<string> id, WorkspaceState? state, CustomResourceOptions? opts = null)public static Workspace get(String name, Output<String> id, WorkspaceState state, CustomResourceOptions options)resources:  _:    type: airbyte:Workspace    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.
- DataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- Name string
- Name of the workspace
- Notifications
WorkspaceNotifications 
- Configures workspace notifications.
- OrganizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- WorkspaceId string
- DataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- Name string
- Name of the workspace
- Notifications
WorkspaceNotifications Args 
- Configures workspace notifications.
- OrganizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- WorkspaceId string
- dataResidency String
- Default: "auto"; must be one of ["auto", "us", "eu"]
- name String
- Name of the workspace
- notifications
WorkspaceNotifications 
- Configures workspace notifications.
- organizationId String
- ID of organization to add workspace to. Requires replacement if changed.
- workspaceId String
- dataResidency string
- Default: "auto"; must be one of ["auto", "us", "eu"]
- name string
- Name of the workspace
- notifications
WorkspaceNotifications 
- Configures workspace notifications.
- organizationId string
- ID of organization to add workspace to. Requires replacement if changed.
- workspaceId string
- data_residency str
- Default: "auto"; must be one of ["auto", "us", "eu"]
- name str
- Name of the workspace
- notifications
WorkspaceNotifications Args 
- Configures workspace notifications.
- organization_id str
- ID of organization to add workspace to. Requires replacement if changed.
- workspace_id str
- dataResidency String
- Default: "auto"; must be one of ["auto", "us", "eu"]
- name String
- Name of the workspace
- notifications Property Map
- Configures workspace notifications.
- organizationId String
- ID of organization to add workspace to. Requires replacement if changed.
- workspaceId String
Supporting Types
WorkspaceNotifications, WorkspaceNotificationsArgs    
- ConnectionUpdate WorkspaceNotifications Connection Update 
- Configures a notification.
- ConnectionUpdate WorkspaceAction Required Notifications Connection Update Action Required 
- Configures a notification.
- Failure
WorkspaceNotifications Failure 
- Configures a notification.
- Success
WorkspaceNotifications Success 
- Configures a notification.
- SyncDisabled WorkspaceNotifications Sync Disabled 
- Configures a notification.
- SyncDisabled WorkspaceWarning Notifications Sync Disabled Warning 
- Configures a notification.
- ConnectionUpdate WorkspaceNotifications Connection Update 
- Configures a notification.
- ConnectionUpdate WorkspaceAction Required Notifications Connection Update Action Required 
- Configures a notification.
- Failure
WorkspaceNotifications Failure 
- Configures a notification.
- Success
WorkspaceNotifications Success 
- Configures a notification.
- SyncDisabled WorkspaceNotifications Sync Disabled 
- Configures a notification.
- SyncDisabled WorkspaceWarning Notifications Sync Disabled Warning 
- Configures a notification.
- connectionUpdate WorkspaceNotifications Connection Update 
- Configures a notification.
- connectionUpdate WorkspaceAction Required Notifications Connection Update Action Required 
- Configures a notification.
- failure
WorkspaceNotifications Failure 
- Configures a notification.
- success
WorkspaceNotifications Success 
- Configures a notification.
- syncDisabled WorkspaceNotifications Sync Disabled 
- Configures a notification.
- syncDisabled WorkspaceWarning Notifications Sync Disabled Warning 
- Configures a notification.
- connectionUpdate WorkspaceNotifications Connection Update 
- Configures a notification.
- connectionUpdate WorkspaceAction Required Notifications Connection Update Action Required 
- Configures a notification.
- failure
WorkspaceNotifications Failure 
- Configures a notification.
- success
WorkspaceNotifications Success 
- Configures a notification.
- syncDisabled WorkspaceNotifications Sync Disabled 
- Configures a notification.
- syncDisabled WorkspaceWarning Notifications Sync Disabled Warning 
- Configures a notification.
- connection_update WorkspaceNotifications Connection Update 
- Configures a notification.
- connection_update_ Workspaceaction_ required Notifications Connection Update Action Required 
- Configures a notification.
- failure
WorkspaceNotifications Failure 
- Configures a notification.
- success
WorkspaceNotifications Success 
- Configures a notification.
- sync_disabled WorkspaceNotifications Sync Disabled 
- Configures a notification.
- sync_disabled_ Workspacewarning Notifications Sync Disabled Warning 
- Configures a notification.
- connectionUpdate Property Map
- Configures a notification.
- connectionUpdate Property MapAction Required 
- Configures a notification.
- failure Property Map
- Configures a notification.
- success Property Map
- Configures a notification.
- syncDisabled Property Map
- Configures a notification.
- syncDisabled Property MapWarning 
- Configures a notification.
WorkspaceNotificationsConnectionUpdate, WorkspaceNotificationsConnectionUpdateArgs        
- Email
WorkspaceNotifications Connection Update Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Connection Update Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Connection Update Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Connection Update Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsConnectionUpdateActionRequired, WorkspaceNotificationsConnectionUpdateActionRequiredArgs            
- Email
WorkspaceNotifications Connection Update Action Required Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Connection Update Action Required Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Connection Update Action Required Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Connection Update Action Required Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Action Required Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Action Required Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Action Required Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Action Required Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Connection Update Action Required Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Connection Update Action Required Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsConnectionUpdateActionRequiredEmail, WorkspaceNotificationsConnectionUpdateActionRequiredEmailArgs              
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsConnectionUpdateActionRequiredWebhook, WorkspaceNotificationsConnectionUpdateActionRequiredWebhookArgs              
WorkspaceNotificationsConnectionUpdateEmail, WorkspaceNotificationsConnectionUpdateEmailArgs          
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsConnectionUpdateWebhook, WorkspaceNotificationsConnectionUpdateWebhookArgs          
WorkspaceNotificationsFailure, WorkspaceNotificationsFailureArgs      
- Email
WorkspaceNotifications Failure Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Failure Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Failure Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Failure Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Failure Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Failure Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Failure Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Failure Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Failure Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Failure Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsFailureEmail, WorkspaceNotificationsFailureEmailArgs        
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsFailureWebhook, WorkspaceNotificationsFailureWebhookArgs        
WorkspaceNotificationsSuccess, WorkspaceNotificationsSuccessArgs      
- Email
WorkspaceNotifications Success Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Success Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Success Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Success Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Success Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Success Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Success Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Success Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Success Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Success Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsSuccessEmail, WorkspaceNotificationsSuccessEmailArgs        
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsSuccessWebhook, WorkspaceNotificationsSuccessWebhookArgs        
WorkspaceNotificationsSyncDisabled, WorkspaceNotificationsSyncDisabledArgs        
- Email
WorkspaceNotifications Sync Disabled Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Sync Disabled Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Sync Disabled Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Sync Disabled Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsSyncDisabledEmail, WorkspaceNotificationsSyncDisabledEmailArgs          
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsSyncDisabledWarning, WorkspaceNotificationsSyncDisabledWarningArgs          
- Email
WorkspaceNotifications Sync Disabled Warning Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Sync Disabled Warning Webhook 
- Configures a webhook notification.
- Email
WorkspaceNotifications Sync Disabled Warning Email 
- Configures an email notification.
- Webhook
WorkspaceNotifications Sync Disabled Warning Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Warning Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Warning Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Warning Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Warning Webhook 
- Configures a webhook notification.
- email
WorkspaceNotifications Sync Disabled Warning Email 
- Configures an email notification.
- webhook
WorkspaceNotifications Sync Disabled Warning Webhook 
- Configures a webhook notification.
- email Property Map
- Configures an email notification.
- webhook Property Map
- Configures a webhook notification.
WorkspaceNotificationsSyncDisabledWarningEmail, WorkspaceNotificationsSyncDisabledWarningEmailArgs            
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
WorkspaceNotificationsSyncDisabledWarningWebhook, WorkspaceNotificationsSyncDisabledWarningWebhookArgs            
WorkspaceNotificationsSyncDisabledWebhook, WorkspaceNotificationsSyncDisabledWebhookArgs          
Import
$ pulumi import airbyte:index/workspace:Workspace my_airbyte_workspace ""
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.