published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
An Integration Centric Profile defines the Remote Server integrations a user is expected to add and connect during integration-centric onboarding.
Use this to automate setup guidance for users who need access to multiple business systems without sending long manual instructions. Common scenarios include ongoing access to systems such as SharePoint, bridging Google, Microsoft, and Box environments after M&A activity, and migrations where users connect legacy EFSS accounts during transition work.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleIntegrationCentricProfile = new filescom.IntegrationCentricProfile("example_integration_centric_profile", {
name: "Business Systems Onboarding",
expectedRemoteServers: ["example"],
workspaceId: 1,
useForAllUsers: false,
});
import pulumi
import pulumi_filescom as filescom
example_integration_centric_profile = filescom.IntegrationCentricProfile("example_integration_centric_profile",
name="Business Systems Onboarding",
expected_remote_servers=["example"],
workspace_id=1,
use_for_all_users=False)
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.NewIntegrationCentricProfile(ctx, "example_integration_centric_profile", &filescom.IntegrationCentricProfileArgs{
Name: pulumi.String("Business Systems Onboarding"),
ExpectedRemoteServers: pulumi.Any{
"example",
},
WorkspaceId: pulumi.Int(1),
UseForAllUsers: pulumi.Bool(false),
})
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 exampleIntegrationCentricProfile = new Filescom.IntegrationCentricProfile("example_integration_centric_profile", new()
{
Name = "Business Systems Onboarding",
ExpectedRemoteServers = new[]
{
"example",
},
WorkspaceId = 1,
UseForAllUsers = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.IntegrationCentricProfile;
import com.pulumi.filescom.IntegrationCentricProfileArgs;
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 exampleIntegrationCentricProfile = new IntegrationCentricProfile("exampleIntegrationCentricProfile", IntegrationCentricProfileArgs.builder()
.name("Business Systems Onboarding")
.expectedRemoteServers("example")
.workspaceId(1)
.useForAllUsers(false)
.build());
}
}
resources:
exampleIntegrationCentricProfile:
type: filescom:IntegrationCentricProfile
name: example_integration_centric_profile
properties:
name: Business Systems Onboarding
expectedRemoteServers:
- example
workspaceId: 1
useForAllUsers: false
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
resource "filescom_integrationcentricprofile" "example_integration_centric_profile" {
name = "Business Systems Onboarding"
expected_remote_servers = ["example"]
workspace_id = 1
use_for_all_users = false
}
Create IntegrationCentricProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationCentricProfile(name: string, args: IntegrationCentricProfileArgs, opts?: CustomResourceOptions);@overload
def IntegrationCentricProfile(resource_name: str,
args: IntegrationCentricProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationCentricProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
expected_remote_servers: Optional[Any] = None,
name: Optional[str] = None,
use_for_all_users: Optional[bool] = None,
workspace_id: Optional[int] = None)func NewIntegrationCentricProfile(ctx *Context, name string, args IntegrationCentricProfileArgs, opts ...ResourceOption) (*IntegrationCentricProfile, error)public IntegrationCentricProfile(string name, IntegrationCentricProfileArgs args, CustomResourceOptions? opts = null)
public IntegrationCentricProfile(String name, IntegrationCentricProfileArgs args)
public IntegrationCentricProfile(String name, IntegrationCentricProfileArgs args, CustomResourceOptions options)
type: filescom:IntegrationCentricProfile
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "filescom_integration_centric_profile" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args IntegrationCentricProfileArgs
- 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 IntegrationCentricProfileArgs
- 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 IntegrationCentricProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationCentricProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationCentricProfileArgs
- 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 integrationCentricProfileResource = new Filescom.IntegrationCentricProfile("integrationCentricProfileResource", new()
{
ExpectedRemoteServers = "any",
Name = "string",
UseForAllUsers = false,
WorkspaceId = 0,
});
example, err := filescom.NewIntegrationCentricProfile(ctx, "integrationCentricProfileResource", &filescom.IntegrationCentricProfileArgs{
ExpectedRemoteServers: pulumi.Any("any"),
Name: pulumi.String("string"),
UseForAllUsers: pulumi.Bool(false),
WorkspaceId: pulumi.Int(0),
})
resource "filescom_integration_centric_profile" "integrationCentricProfileResource" {
lifecycle {
create_before_destroy = true
}
expected_remote_servers = "any"
name = "string"
use_for_all_users = false
workspace_id = 0
}
var integrationCentricProfileResource = new IntegrationCentricProfile("integrationCentricProfileResource", IntegrationCentricProfileArgs.builder()
.expectedRemoteServers("any")
.name("string")
.useForAllUsers(false)
.workspaceId(0)
.build());
integration_centric_profile_resource = filescom.IntegrationCentricProfile("integrationCentricProfileResource",
expected_remote_servers="any",
name="string",
use_for_all_users=False,
workspace_id=0)
const integrationCentricProfileResource = new filescom.IntegrationCentricProfile("integrationCentricProfileResource", {
expectedRemoteServers: "any",
name: "string",
useForAllUsers: false,
workspaceId: 0,
});
type: filescom:IntegrationCentricProfile
properties:
expectedRemoteServers: any
name: string
useForAllUsers: false
workspaceId: 0
IntegrationCentricProfile 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 IntegrationCentricProfile resource accepts the following input properties:
- Expected
Remote objectServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - Name string
- Profile name
- Use
For boolAll Users - Whether this profile applies to all users in the Workspace by default
- Workspace
Id int - Workspace ID
- Expected
Remote interface{}Servers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - Name string
- Profile name
- Use
For boolAll Users - Whether this profile applies to all users in the Workspace by default
- Workspace
Id int - Workspace ID
- expected_
remote_ anyservers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name string
- Profile name
- use_
for_ boolall_ users - Whether this profile applies to all users in the Workspace by default
- workspace_
id number - Workspace ID
- expected
Remote ObjectServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name String
- Profile name
- use
For BooleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id Integer - Workspace ID
- expected
Remote anyServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name string
- Profile name
- use
For booleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id number - Workspace ID
- expected_
remote_ Anyservers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name str
- Profile name
- use_
for_ boolall_ users - Whether this profile applies to all users in the Workspace by default
- workspace_
id int - Workspace ID
- expected
Remote AnyServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name String
- Profile name
- use
For BooleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id Number - Workspace ID
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationCentricProfile resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing IntegrationCentricProfile Resource
Get an existing IntegrationCentricProfile 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?: IntegrationCentricProfileState, opts?: CustomResourceOptions): IntegrationCentricProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
expected_remote_servers: Optional[Any] = None,
name: Optional[str] = None,
use_for_all_users: Optional[bool] = None,
workspace_id: Optional[int] = None) -> IntegrationCentricProfilefunc GetIntegrationCentricProfile(ctx *Context, name string, id IDInput, state *IntegrationCentricProfileState, opts ...ResourceOption) (*IntegrationCentricProfile, error)public static IntegrationCentricProfile Get(string name, Input<string> id, IntegrationCentricProfileState? state, CustomResourceOptions? opts = null)public static IntegrationCentricProfile get(String name, Output<String> id, IntegrationCentricProfileState state, CustomResourceOptions options)resources: _: type: filescom:IntegrationCentricProfile get: id: ${id}import {
to = filescom_integration_centric_profile.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.
- Expected
Remote objectServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - Name string
- Profile name
- Use
For boolAll Users - Whether this profile applies to all users in the Workspace by default
- Workspace
Id int - Workspace ID
- Expected
Remote interface{}Servers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - Name string
- Profile name
- Use
For boolAll Users - Whether this profile applies to all users in the Workspace by default
- Workspace
Id int - Workspace ID
- expected_
remote_ anyservers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name string
- Profile name
- use_
for_ boolall_ users - Whether this profile applies to all users in the Workspace by default
- workspace_
id number - Workspace ID
- expected
Remote ObjectServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name String
- Profile name
- use
For BooleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id Integer - Workspace ID
- expected
Remote anyServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name string
- Profile name
- use
For booleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id number - Workspace ID
- expected_
remote_ Anyservers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name str
- Profile name
- use_
for_ boolall_ users - Whether this profile applies to all users in the Workspace by default
- workspace_
id int - Workspace ID
- expected
Remote AnyServers - Remote Server integrations the user is expected to add and connect. Each entry requires
serverTypeand may include a displayname. - name String
- Profile name
- use
For BooleanAll Users - Whether this profile applies to all users in the Workspace by default
- workspace
Id Number - Workspace ID
Import
The pulumi import command can be used, for example:
Integration Centric Profiles can be imported by specifying the id.
$ pulumi import filescom:index/integrationCentricProfile:IntegrationCentricProfile example_integration_centric_profile 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