published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
A BundleNotification is an E-Mail sent out to users when certain actions are performed on or within a shared set of files and folders.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleBundleNotification = new filescom.BundleNotification("example_bundle_notification", {
userId: 1,
bundleId: 1,
notifyUserId: 1,
notifyOnRegistration: true,
notifyOnUpload: true,
});
import pulumi
import pulumi_filescom as filescom
example_bundle_notification = filescom.BundleNotification("example_bundle_notification",
user_id=1,
bundle_id=1,
notify_user_id=1,
notify_on_registration=True,
notify_on_upload=True)
package main
import (
"github.com/jschady/pulumi-filescom/sdk/go/filescom"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := filescom.NewBundleNotification(ctx, "example_bundle_notification", &filescom.BundleNotificationArgs{
UserId: pulumi.Int(1),
BundleId: pulumi.Int(1),
NotifyUserId: pulumi.Int(1),
NotifyOnRegistration: pulumi.Bool(true),
NotifyOnUpload: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Filescom = Jschady.Filescom;
return await Deployment.RunAsync(() =>
{
var exampleBundleNotification = new Filescom.BundleNotification("example_bundle_notification", new()
{
UserId = 1,
BundleId = 1,
NotifyUserId = 1,
NotifyOnRegistration = true,
NotifyOnUpload = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.BundleNotification;
import com.pulumi.filescom.BundleNotificationArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 exampleBundleNotification = new BundleNotification("exampleBundleNotification", BundleNotificationArgs.builder()
.userId(1)
.bundleId(1)
.notifyUserId(1)
.notifyOnRegistration(true)
.notifyOnUpload(true)
.build());
}
}
resources:
exampleBundleNotification:
type: filescom:BundleNotification
name: example_bundle_notification
properties:
userId: 1
bundleId: 1
notifyUserId: 1
notifyOnRegistration: true
notifyOnUpload: true
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
resource "filescom_bundlenotification" "example_bundle_notification" {
user_id = 1
bundle_id = 1
notify_user_id = 1
notify_on_registration = true
notify_on_upload = true
}
Create BundleNotification Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BundleNotification(name: string, args: BundleNotificationArgs, opts?: CustomResourceOptions);@overload
def BundleNotification(resource_name: str,
args: BundleNotificationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BundleNotification(resource_name: str,
opts: Optional[ResourceOptions] = None,
bundle_id: Optional[int] = None,
notify_on_registration: Optional[bool] = None,
notify_on_upload: Optional[bool] = None,
notify_user_id: Optional[int] = None,
user_id: Optional[int] = None)func NewBundleNotification(ctx *Context, name string, args BundleNotificationArgs, opts ...ResourceOption) (*BundleNotification, error)public BundleNotification(string name, BundleNotificationArgs args, CustomResourceOptions? opts = null)
public BundleNotification(String name, BundleNotificationArgs args)
public BundleNotification(String name, BundleNotificationArgs args, CustomResourceOptions options)
type: filescom:BundleNotification
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "filescom_bundle_notification" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args BundleNotificationArgs
- 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 BundleNotificationArgs
- 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 BundleNotificationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BundleNotificationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BundleNotificationArgs
- 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 bundleNotificationResource = new Filescom.BundleNotification("bundleNotificationResource", new()
{
BundleId = 0,
NotifyOnRegistration = false,
NotifyOnUpload = false,
NotifyUserId = 0,
UserId = 0,
});
example, err := filescom.NewBundleNotification(ctx, "bundleNotificationResource", &filescom.BundleNotificationArgs{
BundleId: pulumi.Int(0),
NotifyOnRegistration: pulumi.Bool(false),
NotifyOnUpload: pulumi.Bool(false),
NotifyUserId: pulumi.Int(0),
UserId: pulumi.Int(0),
})
resource "filescom_bundle_notification" "bundleNotificationResource" {
lifecycle {
create_before_destroy = true
}
bundle_id = 0
notify_on_registration = false
notify_on_upload = false
notify_user_id = 0
user_id = 0
}
var bundleNotificationResource = new BundleNotification("bundleNotificationResource", BundleNotificationArgs.builder()
.bundleId(0)
.notifyOnRegistration(false)
.notifyOnUpload(false)
.notifyUserId(0)
.userId(0)
.build());
bundle_notification_resource = filescom.BundleNotification("bundleNotificationResource",
bundle_id=0,
notify_on_registration=False,
notify_on_upload=False,
notify_user_id=0,
user_id=0)
const bundleNotificationResource = new filescom.BundleNotification("bundleNotificationResource", {
bundleId: 0,
notifyOnRegistration: false,
notifyOnUpload: false,
notifyUserId: 0,
userId: 0,
});
type: filescom:BundleNotification
properties:
bundleId: 0
notifyOnRegistration: false
notifyOnUpload: false
notifyUserId: 0
userId: 0
BundleNotification 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 BundleNotification resource accepts the following input properties:
- Bundle
Id int - Bundle ID to notify on
- Notify
On boolRegistration - Triggers bundle notification when a registration action occurs for it.
- Notify
On boolUpload - Triggers bundle notification when a upload action occurs for it.
- Notify
User intId - The id of the user to notify.
- User
Id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- Bundle
Id int - Bundle ID to notify on
- Notify
On boolRegistration - Triggers bundle notification when a registration action occurs for it.
- Notify
On boolUpload - Triggers bundle notification when a upload action occurs for it.
- Notify
User intId - The id of the user to notify.
- User
Id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- bundle_
id number - Bundle ID to notify on
- notify_
on_ boolregistration - Triggers bundle notification when a registration action occurs for it.
- notify_
on_ boolupload - Triggers bundle notification when a upload action occurs for it.
- notify_
user_ numberid - The id of the user to notify.
- user_
id number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- bundle
Id Integer - Bundle ID to notify on
- notify
On BooleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On BooleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User IntegerId - The id of the user to notify.
- user
Id Integer - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- bundle
Id number - Bundle ID to notify on
- notify
On booleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On booleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User numberId - The id of the user to notify.
- user
Id number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- bundle_
id int - Bundle ID to notify on
- notify_
on_ boolregistration - Triggers bundle notification when a registration action occurs for it.
- notify_
on_ boolupload - Triggers bundle notification when a upload action occurs for it.
- notify_
user_ intid - The id of the user to notify.
- user_
id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
- bundle
Id Number - Bundle ID to notify on
- notify
On BooleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On BooleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User NumberId - The id of the user to notify.
- user
Id Number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user.
Outputs
All input properties are implicitly available as output properties. Additionally, the BundleNotification resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Notify
Current boolUser - Is the current user the user to notify?
- Workspace
Id int - Workspace ID.
0means the default workspace.
- Id string
- The provider-assigned unique ID for this managed resource.
- Notify
Current boolUser - Is the current user the user to notify?
- Workspace
Id int - Workspace ID.
0means the default workspace.
- id string
- The provider-assigned unique ID for this managed resource.
- notify_
current_ booluser - Is the current user the user to notify?
- workspace_
id number - Workspace ID.
0means the default workspace.
- id String
- The provider-assigned unique ID for this managed resource.
- notify
Current BooleanUser - Is the current user the user to notify?
- workspace
Id Integer - Workspace ID.
0means the default workspace.
- id string
- The provider-assigned unique ID for this managed resource.
- notify
Current booleanUser - Is the current user the user to notify?
- workspace
Id number - Workspace ID.
0means the default workspace.
- id str
- The provider-assigned unique ID for this managed resource.
- notify_
current_ booluser - Is the current user the user to notify?
- workspace_
id int - Workspace ID.
0means the default workspace.
- id String
- The provider-assigned unique ID for this managed resource.
- notify
Current BooleanUser - Is the current user the user to notify?
- workspace
Id Number - Workspace ID.
0means the default workspace.
Look up Existing BundleNotification Resource
Get an existing BundleNotification 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?: BundleNotificationState, opts?: CustomResourceOptions): BundleNotification@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bundle_id: Optional[int] = None,
notify_current_user: Optional[bool] = None,
notify_on_registration: Optional[bool] = None,
notify_on_upload: Optional[bool] = None,
notify_user_id: Optional[int] = None,
user_id: Optional[int] = None,
workspace_id: Optional[int] = None) -> BundleNotificationfunc GetBundleNotification(ctx *Context, name string, id IDInput, state *BundleNotificationState, opts ...ResourceOption) (*BundleNotification, error)public static BundleNotification Get(string name, Input<string> id, BundleNotificationState? state, CustomResourceOptions? opts = null)public static BundleNotification get(String name, Output<String> id, BundleNotificationState state, CustomResourceOptions options)resources: _: type: filescom:BundleNotification get: id: ${id}import {
to = filescom_bundle_notification.example
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.
- Bundle
Id int - Bundle ID to notify on
- Notify
Current boolUser - Is the current user the user to notify?
- Notify
On boolRegistration - Triggers bundle notification when a registration action occurs for it.
- Notify
On boolUpload - Triggers bundle notification when a upload action occurs for it.
- Notify
User intId - The id of the user to notify.
- User
Id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - Workspace
Id int - Workspace ID.
0means the default workspace.
- Bundle
Id int - Bundle ID to notify on
- Notify
Current boolUser - Is the current user the user to notify?
- Notify
On boolRegistration - Triggers bundle notification when a registration action occurs for it.
- Notify
On boolUpload - Triggers bundle notification when a upload action occurs for it.
- Notify
User intId - The id of the user to notify.
- User
Id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - Workspace
Id int - Workspace ID.
0means the default workspace.
- bundle_
id number - Bundle ID to notify on
- notify_
current_ booluser - Is the current user the user to notify?
- notify_
on_ boolregistration - Triggers bundle notification when a registration action occurs for it.
- notify_
on_ boolupload - Triggers bundle notification when a upload action occurs for it.
- notify_
user_ numberid - The id of the user to notify.
- user_
id number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - workspace_
id number - Workspace ID.
0means the default workspace.
- bundle
Id Integer - Bundle ID to notify on
- notify
Current BooleanUser - Is the current user the user to notify?
- notify
On BooleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On BooleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User IntegerId - The id of the user to notify.
- user
Id Integer - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - workspace
Id Integer - Workspace ID.
0means the default workspace.
- bundle
Id number - Bundle ID to notify on
- notify
Current booleanUser - Is the current user the user to notify?
- notify
On booleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On booleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User numberId - The id of the user to notify.
- user
Id number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - workspace
Id number - Workspace ID.
0means the default workspace.
- bundle_
id int - Bundle ID to notify on
- notify_
current_ booluser - Is the current user the user to notify?
- notify_
on_ boolregistration - Triggers bundle notification when a registration action occurs for it.
- notify_
on_ boolupload - Triggers bundle notification when a upload action occurs for it.
- notify_
user_ intid - The id of the user to notify.
- user_
id int - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - workspace_
id int - Workspace ID.
0means the default workspace.
- bundle
Id Number - Bundle ID to notify on
- notify
Current BooleanUser - Is the current user the user to notify?
- notify
On BooleanRegistration - Triggers bundle notification when a registration action occurs for it.
- notify
On BooleanUpload - Triggers bundle notification when a upload action occurs for it.
- notify
User NumberId - The id of the user to notify.
- user
Id Number - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
User ID. Provide a value of
0to operate the current session's user. - workspace
Id Number - Workspace ID.
0means the default workspace.
Import
The pulumi import command can be used, for example:
Bundle Notifications can be imported by specifying the id.
$ pulumi import filescom:index/bundleNotification:BundleNotification example_bundle_notification 1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- filescom jschady/pulumi-filescom
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
filescomTerraform Provider.
published on Thursday, Aug 20, 2026 by jschady