1. Registry
  2. Packages
  3. Files.com
  4. API Docs
  5. PartnerChannel
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
filescom logo
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady

    A PartnerChannel defines a structured communication path within a Partner root folder, including directional folder names and partner-scoped routing configuration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as filescom from "pulumi-filescom";
    
    const examplePartnerChannel = new filescom.PartnerChannel("example_partner_channel", {
        fromPartnerFolderName: "incoming",
        fromPartnerManagedFolderPaths: ["claims/received"],
        fromPartnerRoutePath: "processing/from-partner",
        toPartnerFolderName: "outgoing",
        toPartnerManagedFolderPaths: ["reports/monthly"],
        toPartnerRoutePath: "delivery/to-partner",
        partnerId: 1,
        path: "claims/medical",
        workspaceId: 0,
    });
    
    import pulumi
    import pulumi_filescom as filescom
    
    example_partner_channel = filescom.PartnerChannel("example_partner_channel",
        from_partner_folder_name="incoming",
        from_partner_managed_folder_paths=["claims/received"],
        from_partner_route_path="processing/from-partner",
        to_partner_folder_name="outgoing",
        to_partner_managed_folder_paths=["reports/monthly"],
        to_partner_route_path="delivery/to-partner",
        partner_id=1,
        path="claims/medical",
        workspace_id=0)
    
    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.NewPartnerChannel(ctx, "example_partner_channel", &filescom.PartnerChannelArgs{
    			FromPartnerFolderName: pulumi.String("incoming"),
    			FromPartnerManagedFolderPaths: pulumi.StringArray{
    				pulumi.String("claims/received"),
    			},
    			FromPartnerRoutePath: pulumi.String("processing/from-partner"),
    			ToPartnerFolderName:  pulumi.String("outgoing"),
    			ToPartnerManagedFolderPaths: pulumi.StringArray{
    				pulumi.String("reports/monthly"),
    			},
    			ToPartnerRoutePath: pulumi.String("delivery/to-partner"),
    			PartnerId:          pulumi.Int(1),
    			Path:               pulumi.String("claims/medical"),
    			WorkspaceId:        pulumi.Int(0),
    		})
    		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 examplePartnerChannel = new Filescom.PartnerChannel("example_partner_channel", new()
        {
            FromPartnerFolderName = "incoming",
            FromPartnerManagedFolderPaths = new[]
            {
                "claims/received",
            },
            FromPartnerRoutePath = "processing/from-partner",
            ToPartnerFolderName = "outgoing",
            ToPartnerManagedFolderPaths = new[]
            {
                "reports/monthly",
            },
            ToPartnerRoutePath = "delivery/to-partner",
            PartnerId = 1,
            Path = "claims/medical",
            WorkspaceId = 0,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.filescom.PartnerChannel;
    import com.pulumi.filescom.PartnerChannelArgs;
    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 examplePartnerChannel = new PartnerChannel("examplePartnerChannel", PartnerChannelArgs.builder()
                .fromPartnerFolderName("incoming")
                .fromPartnerManagedFolderPaths("claims/received")
                .fromPartnerRoutePath("processing/from-partner")
                .toPartnerFolderName("outgoing")
                .toPartnerManagedFolderPaths("reports/monthly")
                .toPartnerRoutePath("delivery/to-partner")
                .partnerId(1)
                .path("claims/medical")
                .workspaceId(0)
                .build());
    
        }
    }
    
    resources:
      examplePartnerChannel:
        type: filescom:PartnerChannel
        name: example_partner_channel
        properties:
          fromPartnerFolderName: incoming
          fromPartnerManagedFolderPaths:
            - claims/received
          fromPartnerRoutePath: processing/from-partner
          toPartnerFolderName: outgoing
          toPartnerManagedFolderPaths:
            - reports/monthly
          toPartnerRoutePath: delivery/to-partner
          partnerId: 1
          path: claims/medical
          workspaceId: 0
    
    pulumi {
      required_providers {
        filescom = {
          source = "pulumi/filescom"
        }
      }
    }
    
    resource "filescom_partnerchannel" "example_partner_channel" {
      from_partner_folder_name          = "incoming"
      from_partner_managed_folder_paths = ["claims/received"]
      from_partner_route_path           = "processing/from-partner"
      to_partner_folder_name            = "outgoing"
      to_partner_managed_folder_paths   = ["reports/monthly"]
      to_partner_route_path             = "delivery/to-partner"
      partner_id                        = 1
      path                              = "claims/medical"
      workspace_id                      = 0
    }
    

    Create PartnerChannel Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new PartnerChannel(name: string, args: PartnerChannelArgs, opts?: CustomResourceOptions);
    @overload
    def PartnerChannel(resource_name: str,
                       args: PartnerChannelArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def PartnerChannel(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       partner_id: Optional[int] = None,
                       path: Optional[str] = None,
                       from_partner_folder_name: Optional[str] = None,
                       from_partner_managed_folder_paths: Optional[Sequence[str]] = None,
                       from_partner_route_path: Optional[str] = None,
                       to_partner_folder_name: Optional[str] = None,
                       to_partner_managed_folder_paths: Optional[Sequence[str]] = None,
                       to_partner_route_path: Optional[str] = None,
                       workspace_id: Optional[int] = None)
    func NewPartnerChannel(ctx *Context, name string, args PartnerChannelArgs, opts ...ResourceOption) (*PartnerChannel, error)
    public PartnerChannel(string name, PartnerChannelArgs args, CustomResourceOptions? opts = null)
    public PartnerChannel(String name, PartnerChannelArgs args)
    public PartnerChannel(String name, PartnerChannelArgs args, CustomResourceOptions options)
    
    type: filescom:PartnerChannel
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "filescom_partner_channel" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PartnerChannelArgs
    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 PartnerChannelArgs
    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 PartnerChannelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PartnerChannelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PartnerChannelArgs
    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 partnerChannelResource = new Filescom.PartnerChannel("partnerChannelResource", new()
    {
        PartnerId = 0,
        Path = "string",
        FromPartnerFolderName = "string",
        FromPartnerManagedFolderPaths = new[]
        {
            "string",
        },
        FromPartnerRoutePath = "string",
        ToPartnerFolderName = "string",
        ToPartnerManagedFolderPaths = new[]
        {
            "string",
        },
        ToPartnerRoutePath = "string",
        WorkspaceId = 0,
    });
    
    example, err := filescom.NewPartnerChannel(ctx, "partnerChannelResource", &filescom.PartnerChannelArgs{
    	PartnerId:             pulumi.Int(0),
    	Path:                  pulumi.String("string"),
    	FromPartnerFolderName: pulumi.String("string"),
    	FromPartnerManagedFolderPaths: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	FromPartnerRoutePath: pulumi.String("string"),
    	ToPartnerFolderName:  pulumi.String("string"),
    	ToPartnerManagedFolderPaths: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ToPartnerRoutePath: pulumi.String("string"),
    	WorkspaceId:        pulumi.Int(0),
    })
    
    resource "filescom_partner_channel" "partnerChannelResource" {
      lifecycle {
        create_before_destroy = true
      }
      partner_id                        = 0
      path                              = "string"
      from_partner_folder_name          = "string"
      from_partner_managed_folder_paths = ["string"]
      from_partner_route_path           = "string"
      to_partner_folder_name            = "string"
      to_partner_managed_folder_paths   = ["string"]
      to_partner_route_path             = "string"
      workspace_id                      = 0
    }
    
    var partnerChannelResource = new PartnerChannel("partnerChannelResource", PartnerChannelArgs.builder()
        .partnerId(0)
        .path("string")
        .fromPartnerFolderName("string")
        .fromPartnerManagedFolderPaths("string")
        .fromPartnerRoutePath("string")
        .toPartnerFolderName("string")
        .toPartnerManagedFolderPaths("string")
        .toPartnerRoutePath("string")
        .workspaceId(0)
        .build());
    
    partner_channel_resource = filescom.PartnerChannel("partnerChannelResource",
        partner_id=0,
        path="string",
        from_partner_folder_name="string",
        from_partner_managed_folder_paths=["string"],
        from_partner_route_path="string",
        to_partner_folder_name="string",
        to_partner_managed_folder_paths=["string"],
        to_partner_route_path="string",
        workspace_id=0)
    
    const partnerChannelResource = new filescom.PartnerChannel("partnerChannelResource", {
        partnerId: 0,
        path: "string",
        fromPartnerFolderName: "string",
        fromPartnerManagedFolderPaths: ["string"],
        fromPartnerRoutePath: "string",
        toPartnerFolderName: "string",
        toPartnerManagedFolderPaths: ["string"],
        toPartnerRoutePath: "string",
        workspaceId: 0,
    });
    
    type: filescom:PartnerChannel
    properties:
        fromPartnerFolderName: string
        fromPartnerManagedFolderPaths:
            - string
        fromPartnerRoutePath: string
        partnerId: 0
        path: string
        toPartnerFolderName: string
        toPartnerManagedFolderPaths:
            - string
        toPartnerRoutePath: string
        workspaceId: 0
    

    PartnerChannel 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 PartnerChannel resource accepts the following input properties:

    PartnerId int
    ID of the Partner this Channel belongs to.
    Path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    FromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    FromPartnerManagedFolderPaths List<string>
    Managed folder paths inside the from-Partner folder.
    FromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    ToPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    ToPartnerManagedFolderPaths List<string>
    Managed folder paths inside the to-Partner folder.
    ToPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    WorkspaceId int
    ID of the Workspace associated with this Partner Channel.
    PartnerId int
    ID of the Partner this Channel belongs to.
    Path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    FromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    FromPartnerManagedFolderPaths []string
    Managed folder paths inside the from-Partner folder.
    FromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    ToPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    ToPartnerManagedFolderPaths []string
    Managed folder paths inside the to-Partner folder.
    ToPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    WorkspaceId int
    ID of the Workspace associated with this Partner Channel.
    partner_id number
    ID of the Partner this Channel belongs to.
    path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    from_partner_folder_name string
    Optional Channel-level from-Partner folder name override.
    from_partner_managed_folder_paths list(string)
    Managed folder paths inside the from-Partner folder.
    from_partner_route_path string
    Optional route path for files uploaded by the Partner.
    to_partner_folder_name string
    Optional Channel-level to-Partner folder name override.
    to_partner_managed_folder_paths list(string)
    Managed folder paths inside the to-Partner folder.
    to_partner_route_path string
    Optional route path for files delivered to the Partner.
    workspace_id number
    ID of the Workspace associated with this Partner Channel.
    partnerId Integer
    ID of the Partner this Channel belongs to.
    path String
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    fromPartnerFolderName String
    Optional Channel-level from-Partner folder name override.
    fromPartnerManagedFolderPaths List<String>
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath String
    Optional route path for files uploaded by the Partner.
    toPartnerFolderName String
    Optional Channel-level to-Partner folder name override.
    toPartnerManagedFolderPaths List<String>
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath String
    Optional route path for files delivered to the Partner.
    workspaceId Integer
    ID of the Workspace associated with this Partner Channel.
    partnerId number
    ID of the Partner this Channel belongs to.
    path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    fromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    fromPartnerManagedFolderPaths string[]
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    toPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    toPartnerManagedFolderPaths string[]
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    workspaceId number
    ID of the Workspace associated with this Partner Channel.
    partner_id int
    ID of the Partner this Channel belongs to.
    path str
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    from_partner_folder_name str
    Optional Channel-level from-Partner folder name override.
    from_partner_managed_folder_paths Sequence[str]
    Managed folder paths inside the from-Partner folder.
    from_partner_route_path str
    Optional route path for files uploaded by the Partner.
    to_partner_folder_name str
    Optional Channel-level to-Partner folder name override.
    to_partner_managed_folder_paths Sequence[str]
    Managed folder paths inside the to-Partner folder.
    to_partner_route_path str
    Optional route path for files delivered to the Partner.
    workspace_id int
    ID of the Workspace associated with this Partner Channel.
    partnerId Number
    ID of the Partner this Channel belongs to.
    path String
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    fromPartnerFolderName String
    Optional Channel-level from-Partner folder name override.
    fromPartnerManagedFolderPaths List<String>
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath String
    Optional route path for files uploaded by the Partner.
    toPartnerFolderName String
    Optional Channel-level to-Partner folder name override.
    toPartnerManagedFolderPaths List<String>
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath String
    Optional route path for files delivered to the Partner.
    workspaceId Number
    ID of the Workspace associated with this Partner Channel.

    Outputs

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

    ChannelPath string
    Resolved Channel folder path.
    EffectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    EffectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    FromPartnerFolderPath string
    Resolved from-Partner folder path.
    Id string
    The provider-assigned unique ID for this managed resource.
    PartnerChannelTemplateId int
    ID of the Partner Channel Template that manages this Channel, if any.
    ToPartnerFolderPath string
    Resolved to-Partner folder path.
    ChannelPath string
    Resolved Channel folder path.
    EffectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    EffectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    FromPartnerFolderPath string
    Resolved from-Partner folder path.
    Id string
    The provider-assigned unique ID for this managed resource.
    PartnerChannelTemplateId int
    ID of the Partner Channel Template that manages this Channel, if any.
    ToPartnerFolderPath string
    Resolved to-Partner folder path.
    channel_path string
    Resolved Channel folder path.
    effective_from_partner_folder_name string
    Resolved from-Partner folder name after Channel override and default.
    effective_to_partner_folder_name string
    Resolved to-Partner folder name after Channel override and default.
    from_partner_folder_path string
    Resolved from-Partner folder path.
    id string
    The provider-assigned unique ID for this managed resource.
    partner_channel_template_id number
    ID of the Partner Channel Template that manages this Channel, if any.
    to_partner_folder_path string
    Resolved to-Partner folder path.
    channelPath String
    Resolved Channel folder path.
    effectiveFromPartnerFolderName String
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName String
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderPath String
    Resolved from-Partner folder path.
    id String
    The provider-assigned unique ID for this managed resource.
    partnerChannelTemplateId Integer
    ID of the Partner Channel Template that manages this Channel, if any.
    toPartnerFolderPath String
    Resolved to-Partner folder path.
    channelPath string
    Resolved Channel folder path.
    effectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderPath string
    Resolved from-Partner folder path.
    id string
    The provider-assigned unique ID for this managed resource.
    partnerChannelTemplateId number
    ID of the Partner Channel Template that manages this Channel, if any.
    toPartnerFolderPath string
    Resolved to-Partner folder path.
    channel_path str
    Resolved Channel folder path.
    effective_from_partner_folder_name str
    Resolved from-Partner folder name after Channel override and default.
    effective_to_partner_folder_name str
    Resolved to-Partner folder name after Channel override and default.
    from_partner_folder_path str
    Resolved from-Partner folder path.
    id str
    The provider-assigned unique ID for this managed resource.
    partner_channel_template_id int
    ID of the Partner Channel Template that manages this Channel, if any.
    to_partner_folder_path str
    Resolved to-Partner folder path.
    channelPath String
    Resolved Channel folder path.
    effectiveFromPartnerFolderName String
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName String
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderPath String
    Resolved from-Partner folder path.
    id String
    The provider-assigned unique ID for this managed resource.
    partnerChannelTemplateId Number
    ID of the Partner Channel Template that manages this Channel, if any.
    toPartnerFolderPath String
    Resolved to-Partner folder path.

    Look up Existing PartnerChannel Resource

    Get an existing PartnerChannel 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?: PartnerChannelState, opts?: CustomResourceOptions): PartnerChannel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            channel_path: Optional[str] = None,
            effective_from_partner_folder_name: Optional[str] = None,
            effective_to_partner_folder_name: Optional[str] = None,
            from_partner_folder_name: Optional[str] = None,
            from_partner_folder_path: Optional[str] = None,
            from_partner_managed_folder_paths: Optional[Sequence[str]] = None,
            from_partner_route_path: Optional[str] = None,
            partner_channel_template_id: Optional[int] = None,
            partner_id: Optional[int] = None,
            path: Optional[str] = None,
            to_partner_folder_name: Optional[str] = None,
            to_partner_folder_path: Optional[str] = None,
            to_partner_managed_folder_paths: Optional[Sequence[str]] = None,
            to_partner_route_path: Optional[str] = None,
            workspace_id: Optional[int] = None) -> PartnerChannel
    func GetPartnerChannel(ctx *Context, name string, id IDInput, state *PartnerChannelState, opts ...ResourceOption) (*PartnerChannel, error)
    public static PartnerChannel Get(string name, Input<string> id, PartnerChannelState? state, CustomResourceOptions? opts = null)
    public static PartnerChannel get(String name, Output<String> id, PartnerChannelState state, CustomResourceOptions options)
    resources:  _:    type: filescom:PartnerChannel    get:      id: ${id}
    import {
      to = filescom_partner_channel.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.
    The following state arguments are supported:
    ChannelPath string
    Resolved Channel folder path.
    EffectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    EffectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    FromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    FromPartnerFolderPath string
    Resolved from-Partner folder path.
    FromPartnerManagedFolderPaths List<string>
    Managed folder paths inside the from-Partner folder.
    FromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    PartnerChannelTemplateId int
    ID of the Partner Channel Template that manages this Channel, if any.
    PartnerId int
    ID of the Partner this Channel belongs to.
    Path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    ToPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    ToPartnerFolderPath string
    Resolved to-Partner folder path.
    ToPartnerManagedFolderPaths List<string>
    Managed folder paths inside the to-Partner folder.
    ToPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    WorkspaceId int
    ID of the Workspace associated with this Partner Channel.
    ChannelPath string
    Resolved Channel folder path.
    EffectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    EffectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    FromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    FromPartnerFolderPath string
    Resolved from-Partner folder path.
    FromPartnerManagedFolderPaths []string
    Managed folder paths inside the from-Partner folder.
    FromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    PartnerChannelTemplateId int
    ID of the Partner Channel Template that manages this Channel, if any.
    PartnerId int
    ID of the Partner this Channel belongs to.
    Path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    ToPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    ToPartnerFolderPath string
    Resolved to-Partner folder path.
    ToPartnerManagedFolderPaths []string
    Managed folder paths inside the to-Partner folder.
    ToPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    WorkspaceId int
    ID of the Workspace associated with this Partner Channel.
    channel_path string
    Resolved Channel folder path.
    effective_from_partner_folder_name string
    Resolved from-Partner folder name after Channel override and default.
    effective_to_partner_folder_name string
    Resolved to-Partner folder name after Channel override and default.
    from_partner_folder_name string
    Optional Channel-level from-Partner folder name override.
    from_partner_folder_path string
    Resolved from-Partner folder path.
    from_partner_managed_folder_paths list(string)
    Managed folder paths inside the from-Partner folder.
    from_partner_route_path string
    Optional route path for files uploaded by the Partner.
    partner_channel_template_id number
    ID of the Partner Channel Template that manages this Channel, if any.
    partner_id number
    ID of the Partner this Channel belongs to.
    path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    to_partner_folder_name string
    Optional Channel-level to-Partner folder name override.
    to_partner_folder_path string
    Resolved to-Partner folder path.
    to_partner_managed_folder_paths list(string)
    Managed folder paths inside the to-Partner folder.
    to_partner_route_path string
    Optional route path for files delivered to the Partner.
    workspace_id number
    ID of the Workspace associated with this Partner Channel.
    channelPath String
    Resolved Channel folder path.
    effectiveFromPartnerFolderName String
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName String
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderName String
    Optional Channel-level from-Partner folder name override.
    fromPartnerFolderPath String
    Resolved from-Partner folder path.
    fromPartnerManagedFolderPaths List<String>
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath String
    Optional route path for files uploaded by the Partner.
    partnerChannelTemplateId Integer
    ID of the Partner Channel Template that manages this Channel, if any.
    partnerId Integer
    ID of the Partner this Channel belongs to.
    path String
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    toPartnerFolderName String
    Optional Channel-level to-Partner folder name override.
    toPartnerFolderPath String
    Resolved to-Partner folder path.
    toPartnerManagedFolderPaths List<String>
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath String
    Optional route path for files delivered to the Partner.
    workspaceId Integer
    ID of the Workspace associated with this Partner Channel.
    channelPath string
    Resolved Channel folder path.
    effectiveFromPartnerFolderName string
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName string
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderName string
    Optional Channel-level from-Partner folder name override.
    fromPartnerFolderPath string
    Resolved from-Partner folder path.
    fromPartnerManagedFolderPaths string[]
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath string
    Optional route path for files uploaded by the Partner.
    partnerChannelTemplateId number
    ID of the Partner Channel Template that manages this Channel, if any.
    partnerId number
    ID of the Partner this Channel belongs to.
    path string
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    toPartnerFolderName string
    Optional Channel-level to-Partner folder name override.
    toPartnerFolderPath string
    Resolved to-Partner folder path.
    toPartnerManagedFolderPaths string[]
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath string
    Optional route path for files delivered to the Partner.
    workspaceId number
    ID of the Workspace associated with this Partner Channel.
    channel_path str
    Resolved Channel folder path.
    effective_from_partner_folder_name str
    Resolved from-Partner folder name after Channel override and default.
    effective_to_partner_folder_name str
    Resolved to-Partner folder name after Channel override and default.
    from_partner_folder_name str
    Optional Channel-level from-Partner folder name override.
    from_partner_folder_path str
    Resolved from-Partner folder path.
    from_partner_managed_folder_paths Sequence[str]
    Managed folder paths inside the from-Partner folder.
    from_partner_route_path str
    Optional route path for files uploaded by the Partner.
    partner_channel_template_id int
    ID of the Partner Channel Template that manages this Channel, if any.
    partner_id int
    ID of the Partner this Channel belongs to.
    path str
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    to_partner_folder_name str
    Optional Channel-level to-Partner folder name override.
    to_partner_folder_path str
    Resolved to-Partner folder path.
    to_partner_managed_folder_paths Sequence[str]
    Managed folder paths inside the to-Partner folder.
    to_partner_route_path str
    Optional route path for files delivered to the Partner.
    workspace_id int
    ID of the Workspace associated with this Partner Channel.
    channelPath String
    Resolved Channel folder path.
    effectiveFromPartnerFolderName String
    Resolved from-Partner folder name after Channel override and default.
    effectiveToPartnerFolderName String
    Resolved to-Partner folder name after Channel override and default.
    fromPartnerFolderName String
    Optional Channel-level from-Partner folder name override.
    fromPartnerFolderPath String
    Resolved from-Partner folder path.
    fromPartnerManagedFolderPaths List<String>
    Managed folder paths inside the from-Partner folder.
    fromPartnerRoutePath String
    Optional route path for files uploaded by the Partner.
    partnerChannelTemplateId Number
    ID of the Partner Channel Template that manages this Channel, if any.
    partnerId Number
    ID of the Partner this Channel belongs to.
    path String
    Channel path relative to the Partner root folder. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
    toPartnerFolderName String
    Optional Channel-level to-Partner folder name override.
    toPartnerFolderPath String
    Resolved to-Partner folder path.
    toPartnerManagedFolderPaths List<String>
    Managed folder paths inside the to-Partner folder.
    toPartnerRoutePath String
    Optional route path for files delivered to the Partner.
    workspaceId Number
    ID of the Workspace associated with this Partner Channel.

    Import

    The pulumi import command can be used, for example:

    Partner Channels can be imported by specifying the id.

    $ pulumi import filescom:index/partnerChannel:PartnerChannel example_partner_channel 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 filescom Terraform Provider.
    filescom logo
    Viewing docs for Files.com v0.1.1
    published on Thursday, Aug 20, 2026 by jschady

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial