1. Packages
  2. Airbyte Provider
  3. API Docs
  4. Workspace
airbyte 0.10.0 published on Monday, Apr 14, 2025 by airbytehq

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")
            .regionId("cbd99489-c363-45e8-9d04-2de8d03ae703")
            .build());

    }
}
Copy
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
      regionId: cbd99489-c363-45e8-9d04-2de8d03ae703
Copy

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,
              region_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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. String
The unique name of the resource.
args This property is required. 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",
    RegionId = "string",
});
Copy
example, err := airbyte.NewWorkspace(ctx, "workspaceResource", &airbyte.WorkspaceArgs{
	Name: pulumi.String("string"),
	Notifications: &airbyte.WorkspaceNotificationsArgs{
		ConnectionUpdate: &airbyte.WorkspaceNotificationsConnectionUpdateArgs{
			Email: &airbyte.WorkspaceNotificationsConnectionUpdateEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsConnectionUpdateWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
		ConnectionUpdateActionRequired: &airbyte.WorkspaceNotificationsConnectionUpdateActionRequiredArgs{
			Email: &airbyte.WorkspaceNotificationsConnectionUpdateActionRequiredEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsConnectionUpdateActionRequiredWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
		Failure: &airbyte.WorkspaceNotificationsFailureArgs{
			Email: &airbyte.WorkspaceNotificationsFailureEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsFailureWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
		Success: &airbyte.WorkspaceNotificationsSuccessArgs{
			Email: &airbyte.WorkspaceNotificationsSuccessEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsSuccessWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
		SyncDisabled: &airbyte.WorkspaceNotificationsSyncDisabledArgs{
			Email: &airbyte.WorkspaceNotificationsSyncDisabledEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsSyncDisabledWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
		SyncDisabledWarning: &airbyte.WorkspaceNotificationsSyncDisabledWarningArgs{
			Email: &airbyte.WorkspaceNotificationsSyncDisabledWarningEmailArgs{
				Enabled: pulumi.Bool(false),
			},
			Webhook: &airbyte.WorkspaceNotificationsSyncDisabledWarningWebhookArgs{
				Enabled: pulumi.Bool(false),
				Url:     pulumi.String("string"),
			},
		},
	},
	OrganizationId: pulumi.String("string"),
	RegionId:       pulumi.String("string"),
})
Copy
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")
    .regionId("string")
    .build());
Copy
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",
    region_id="string")
Copy
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",
    regionId: "string",
});
Copy
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
    regionId: string
Copy

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.
RegionId string
Name string
Name of the workspace
Notifications WorkspaceNotificationsArgs
Configures workspace notifications.
OrganizationId string
ID of organization to add workspace to. Requires replacement if changed.
RegionId string
name String
Name of the workspace
notifications WorkspaceNotifications
Configures workspace notifications.
organizationId String
ID of organization to add workspace to. Requires replacement if changed.
regionId String
name string
Name of the workspace
notifications WorkspaceNotifications
Configures workspace notifications.
organizationId string
ID of organization to add workspace to. Requires replacement if changed.
regionId string
name str
Name of the workspace
notifications WorkspaceNotificationsArgs
Configures workspace notifications.
organization_id str
ID of organization to add workspace to. Requires replacement if changed.
region_id str
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.
regionId String

Outputs

All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:

DataResidency string
Id string
The provider-assigned unique ID for this managed resource.
WorkspaceId string
DataResidency string
Id string
The provider-assigned unique ID for this managed resource.
WorkspaceId string
dataResidency String
id String
The provider-assigned unique ID for this managed resource.
workspaceId String
dataResidency string
id string
The provider-assigned unique ID for this managed resource.
workspaceId string
data_residency str
id str
The provider-assigned unique ID for this managed resource.
workspace_id str
dataResidency String
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,
        region_id: Optional[str] = None,
        workspace_id: Optional[str] = None) -> Workspace
func 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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
DataResidency string
Name string
Name of the workspace
Notifications WorkspaceNotifications
Configures workspace notifications.
OrganizationId string
ID of organization to add workspace to. Requires replacement if changed.
RegionId string
WorkspaceId string
DataResidency string
Name string
Name of the workspace
Notifications WorkspaceNotificationsArgs
Configures workspace notifications.
OrganizationId string
ID of organization to add workspace to. Requires replacement if changed.
RegionId string
WorkspaceId string
dataResidency String
name String
Name of the workspace
notifications WorkspaceNotifications
Configures workspace notifications.
organizationId String
ID of organization to add workspace to. Requires replacement if changed.
regionId String
workspaceId String
dataResidency string
name string
Name of the workspace
notifications WorkspaceNotifications
Configures workspace notifications.
organizationId string
ID of organization to add workspace to. Requires replacement if changed.
regionId string
workspaceId string
data_residency str
name str
Name of the workspace
notifications WorkspaceNotificationsArgs
Configures workspace notifications.
organization_id str
ID of organization to add workspace to. Requires replacement if changed.
region_id str
workspace_id str
dataResidency String
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.
regionId String
workspaceId String

Supporting Types

WorkspaceNotifications
, WorkspaceNotificationsArgs

connectionUpdate Property Map
Configures a notification.
connectionUpdateActionRequired Property Map
Configures a notification.
failure Property Map
Configures a notification.
success Property Map
Configures a notification.
syncDisabled Property Map
Configures a notification.
syncDisabledWarning Property Map
Configures a notification.

WorkspaceNotificationsConnectionUpdate
, WorkspaceNotificationsConnectionUpdateArgs

Email WorkspaceNotificationsConnectionUpdateEmail
Configures an email notification.
Webhook WorkspaceNotificationsConnectionUpdateWebhook
Configures a webhook notification.
Email WorkspaceNotificationsConnectionUpdateEmail
Configures an email notification.
Webhook WorkspaceNotificationsConnectionUpdateWebhook
Configures a webhook notification.
email WorkspaceNotificationsConnectionUpdateEmail
Configures an email notification.
webhook WorkspaceNotificationsConnectionUpdateWebhook
Configures a webhook notification.
email WorkspaceNotificationsConnectionUpdateEmail
Configures an email notification.
webhook WorkspaceNotificationsConnectionUpdateWebhook
Configures a webhook notification.
email WorkspaceNotificationsConnectionUpdateEmail
Configures an email notification.
webhook WorkspaceNotificationsConnectionUpdateWebhook
Configures a webhook notification.
email Property Map
Configures an email notification.
webhook Property Map
Configures a webhook notification.

WorkspaceNotificationsConnectionUpdateActionRequired
, WorkspaceNotificationsConnectionUpdateActionRequiredArgs

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

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

WorkspaceNotificationsConnectionUpdateEmail
, WorkspaceNotificationsConnectionUpdateEmailArgs

Enabled bool
Enabled bool
enabled Boolean
enabled boolean
enabled bool
enabled Boolean

WorkspaceNotificationsConnectionUpdateWebhook
, WorkspaceNotificationsConnectionUpdateWebhookArgs

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

WorkspaceNotificationsFailure
, WorkspaceNotificationsFailureArgs

Email WorkspaceNotificationsFailureEmail
Configures an email notification.
Webhook WorkspaceNotificationsFailureWebhook
Configures a webhook notification.
Email WorkspaceNotificationsFailureEmail
Configures an email notification.
Webhook WorkspaceNotificationsFailureWebhook
Configures a webhook notification.
email WorkspaceNotificationsFailureEmail
Configures an email notification.
webhook WorkspaceNotificationsFailureWebhook
Configures a webhook notification.
email WorkspaceNotificationsFailureEmail
Configures an email notification.
webhook WorkspaceNotificationsFailureWebhook
Configures a webhook notification.
email WorkspaceNotificationsFailureEmail
Configures an email notification.
webhook WorkspaceNotificationsFailureWebhook
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

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

WorkspaceNotificationsSuccess
, WorkspaceNotificationsSuccessArgs

Email WorkspaceNotificationsSuccessEmail
Configures an email notification.
Webhook WorkspaceNotificationsSuccessWebhook
Configures a webhook notification.
Email WorkspaceNotificationsSuccessEmail
Configures an email notification.
Webhook WorkspaceNotificationsSuccessWebhook
Configures a webhook notification.
email WorkspaceNotificationsSuccessEmail
Configures an email notification.
webhook WorkspaceNotificationsSuccessWebhook
Configures a webhook notification.
email WorkspaceNotificationsSuccessEmail
Configures an email notification.
webhook WorkspaceNotificationsSuccessWebhook
Configures a webhook notification.
email WorkspaceNotificationsSuccessEmail
Configures an email notification.
webhook WorkspaceNotificationsSuccessWebhook
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

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

WorkspaceNotificationsSyncDisabled
, WorkspaceNotificationsSyncDisabledArgs

Email WorkspaceNotificationsSyncDisabledEmail
Configures an email notification.
Webhook WorkspaceNotificationsSyncDisabledWebhook
Configures a webhook notification.
Email WorkspaceNotificationsSyncDisabledEmail
Configures an email notification.
Webhook WorkspaceNotificationsSyncDisabledWebhook
Configures a webhook notification.
email WorkspaceNotificationsSyncDisabledEmail
Configures an email notification.
webhook WorkspaceNotificationsSyncDisabledWebhook
Configures a webhook notification.
email WorkspaceNotificationsSyncDisabledEmail
Configures an email notification.
webhook WorkspaceNotificationsSyncDisabledWebhook
Configures a webhook notification.
email WorkspaceNotificationsSyncDisabledEmail
Configures an email notification.
webhook WorkspaceNotificationsSyncDisabledWebhook
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 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

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

WorkspaceNotificationsSyncDisabledWebhook
, WorkspaceNotificationsSyncDisabledWebhookArgs

Enabled bool
Url string
Enabled bool
Url string
enabled Boolean
url String
enabled boolean
url string
enabled bool
url str
enabled Boolean
url String

Import

$ pulumi import airbyte:index/workspace:Workspace my_airbyte_workspace ""
Copy

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.