Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleFile = filescom.getFile({
path: "path",
});
import pulumi
import pulumi_filescom as filescom
example_file = filescom.get_file(path="path")
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.GetFile(ctx, &filescom.LookupFileArgs{
Path: "path",
}, nil)
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 exampleFile = Filescom.GetFile.Invoke(new()
{
Path = "path",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.FilescomFunctions;
import com.pulumi.filescom.inputs.GetFileArgs;
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) {
final var exampleFile = FilescomFunctions.getFile(GetFileArgs.builder()
.path("path")
.build());
}
}
variables:
exampleFile:
fn::invoke:
function: filescom:getFile
arguments:
path: path
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
data "filescom_getfile" "exampleFile" {
path = "path"
}
Using getFile
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getFile(args: GetFileArgs, opts?: InvokeOptions): Promise<GetFileResult>
function getFileOutput(args: GetFileOutputArgs, opts?: InvokeOutputOptions): Output<GetFileResult>def get_file(path: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFileResult
def get_file_output(path: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetFileResult]func LookupFile(ctx *Context, args *LookupFileArgs, opts ...InvokeOption) (*LookupFileResult, error)
func LookupFileOutput(ctx *Context, args *LookupFileOutputArgs, opts ...InvokeOption) LookupFileResultOutput> Note: This function is named LookupFile in the Go SDK.
public static class GetFile
{
public static Task<GetFileResult> InvokeAsync(GetFileArgs args, InvokeOptions? opts = null)
public static Output<GetFileResult> Invoke(GetFileInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetFileResult> Invoke(GetFileInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetFileResult> getFile(GetFileArgs args, InvokeOptions options)
public static Output<GetFileResult> getFile(GetFileArgs args, InvokeOptions options)
public static Output<GetFileResult> getFile(GetFileArgs args, InvokeOutputOptions options)
fn::invoke:
function: filescom:index/getFile:getFile
arguments:
# arguments dictionarydata "filescom_get_file" "name" {
# arguments
}The following arguments are supported:
- Path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- Path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path String
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path str
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- path String
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
getFile Result
The following output properties are available:
- Crc32 string
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Created
At string - File created date/time
- Created
By intApi Key Id - ID of the API key that created the file/folder
- Created
By intAs2Incoming Message Id - ID of the AS2 Incoming Message that created the file/folder
- Created
By intAutomation Id - ID of the Automation that created the file/folder
- Created
By intBundle Registration Id - ID of the Bundle Registration that created the file/folder
- Created
By intId - User ID of the User who created the file/folder
- Created
By intInbox Id - ID of the Inbox that created the file/folder
- Created
By intRemote Server Id - ID of the Remote Server that created the file/folder
- Created
By intSync Id - ID of the Sync that created the file/folder
- Custom
Metadata object - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- Direct
Connection stringInfo - Optional direct connection information for direct Agent transfer attempts
- Display
Name string - File/Folder display name
- Download
Uri string - Link to download file. Provided only in response to a download request.
- Is
Locked bool - Is this folder locked and unable to be modified?
- Last
Modified intBy Api Key Id - ID of the API key that last modified the file/folder
- Last
Modified intBy Automation Id - ID of the Automation that last modified the file/folder
- Last
Modified intBy Bundle Registration Id - ID of the Bundle Registration that last modified the file/folder
- Last
Modified intBy Id - User ID of the User who last modified the file/folder
- Last
Modified intBy Remote Server Id - ID of the Remote Server that last modified the file/folder
- Last
Modified intBy Sync Id - ID of the Sync that last modified the file/folder
- Md5 string
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Mime
Type string - MIME Type. This is determined by the filename extension and is not stored separately internally.
- Mtime string
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- Path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- Permissions string
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - Preview string
- File preview
- Preview
Id int - File preview ID
- Priority
Color string - Bookmark/priority color of file/folder
- Provided
Mtime string - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- Region string
- Region location
- Sha1 string
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Sha256 string
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Size int
- File/Folder size
- Subfolders
Locked bool - Are subfolders locked and unable to be modified?
- Type string
- Type:
directoryorfile.
- Crc32 string
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Created
At string - File created date/time
- Created
By intApi Key Id - ID of the API key that created the file/folder
- Created
By intAs2Incoming Message Id - ID of the AS2 Incoming Message that created the file/folder
- Created
By intAutomation Id - ID of the Automation that created the file/folder
- Created
By intBundle Registration Id - ID of the Bundle Registration that created the file/folder
- Created
By intId - User ID of the User who created the file/folder
- Created
By intInbox Id - ID of the Inbox that created the file/folder
- Created
By intRemote Server Id - ID of the Remote Server that created the file/folder
- Created
By intSync Id - ID of the Sync that created the file/folder
- Custom
Metadata interface{} - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- Direct
Connection stringInfo - Optional direct connection information for direct Agent transfer attempts
- Display
Name string - File/Folder display name
- Download
Uri string - Link to download file. Provided only in response to a download request.
- Is
Locked bool - Is this folder locked and unable to be modified?
- Last
Modified intBy Api Key Id - ID of the API key that last modified the file/folder
- Last
Modified intBy Automation Id - ID of the Automation that last modified the file/folder
- Last
Modified intBy Bundle Registration Id - ID of the Bundle Registration that last modified the file/folder
- Last
Modified intBy Id - User ID of the User who last modified the file/folder
- Last
Modified intBy Remote Server Id - ID of the Remote Server that last modified the file/folder
- Last
Modified intBy Sync Id - ID of the Sync that last modified the file/folder
- Md5 string
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Mime
Type string - MIME Type. This is determined by the filename extension and is not stored separately internally.
- Mtime string
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- Path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- Permissions string
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - Preview string
- File preview
- Preview
Id int - File preview ID
- Priority
Color string - Bookmark/priority color of file/folder
- Provided
Mtime string - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- Region string
- Region location
- Sha1 string
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Sha256 string
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- Size int
- File/Folder size
- Subfolders
Locked bool - Are subfolders locked and unable to be modified?
- Type string
- Type:
directoryorfile.
- crc32 string
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- created_
at string - File created date/time
- created_
by_ numberapi_ key_ id - ID of the API key that created the file/folder
- created_
by_ numberas2_ incoming_ message_ id - ID of the AS2 Incoming Message that created the file/folder
- created_
by_ numberautomation_ id - ID of the Automation that created the file/folder
- created_
by_ numberbundle_ registration_ id - ID of the Bundle Registration that created the file/folder
- created_
by_ numberid - User ID of the User who created the file/folder
- created_
by_ numberinbox_ id - ID of the Inbox that created the file/folder
- created_
by_ numberremote_ server_ id - ID of the Remote Server that created the file/folder
- created_
by_ numbersync_ id - ID of the Sync that created the file/folder
- custom_
metadata any - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- direct_
connection_ stringinfo - Optional direct connection information for direct Agent transfer attempts
- display_
name string - File/Folder display name
- download_
uri string - Link to download file. Provided only in response to a download request.
- is_
locked bool - Is this folder locked and unable to be modified?
- last_
modified_ numberby_ api_ key_ id - ID of the API key that last modified the file/folder
- last_
modified_ numberby_ automation_ id - ID of the Automation that last modified the file/folder
- last_
modified_ numberby_ bundle_ registration_ id - ID of the Bundle Registration that last modified the file/folder
- last_
modified_ numberby_ id - User ID of the User who last modified the file/folder
- last_
modified_ numberby_ remote_ server_ id - ID of the Remote Server that last modified the file/folder
- last_
modified_ numberby_ sync_ id - ID of the Sync that last modified the file/folder
- md5 string
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- mime_
type string - MIME Type. This is determined by the filename extension and is not stored separately internally.
- mtime string
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- permissions string
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - preview string
- File preview
- preview_
id number - File preview ID
- priority_
color string - Bookmark/priority color of file/folder
- provided_
mtime string - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- region string
- Region location
- sha1 string
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- sha256 string
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- size number
- File/Folder size
- subfolders_
locked bool - Are subfolders locked and unable to be modified?
- type string
- Type:
directoryorfile.
- crc32 String
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- created
At String - File created date/time
- created
By IntegerApi Key Id - ID of the API key that created the file/folder
- created
By IntegerAs2Incoming Message Id - ID of the AS2 Incoming Message that created the file/folder
- created
By IntegerAutomation Id - ID of the Automation that created the file/folder
- created
By IntegerBundle Registration Id - ID of the Bundle Registration that created the file/folder
- created
By IntegerId - User ID of the User who created the file/folder
- created
By IntegerInbox Id - ID of the Inbox that created the file/folder
- created
By IntegerRemote Server Id - ID of the Remote Server that created the file/folder
- created
By IntegerSync Id - ID of the Sync that created the file/folder
- custom
Metadata Object - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- direct
Connection StringInfo - Optional direct connection information for direct Agent transfer attempts
- display
Name String - File/Folder display name
- download
Uri String - Link to download file. Provided only in response to a download request.
- is
Locked Boolean - Is this folder locked and unable to be modified?
- last
Modified IntegerBy Api Key Id - ID of the API key that last modified the file/folder
- last
Modified IntegerBy Automation Id - ID of the Automation that last modified the file/folder
- last
Modified IntegerBy Bundle Registration Id - ID of the Bundle Registration that last modified the file/folder
- last
Modified IntegerBy Id - User ID of the User who last modified the file/folder
- last
Modified IntegerBy Remote Server Id - ID of the Remote Server that last modified the file/folder
- last
Modified IntegerBy Sync Id - ID of the Sync that last modified the file/folder
- md5 String
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- mime
Type String - MIME Type. This is determined by the filename extension and is not stored separately internally.
- mtime String
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- path String
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- permissions String
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - preview String
- File preview
- preview
Id Integer - File preview ID
- priority
Color String - Bookmark/priority color of file/folder
- provided
Mtime String - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- region String
- Region location
- sha1 String
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- sha256 String
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- size Integer
- File/Folder size
- subfolders
Locked Boolean - Are subfolders locked and unable to be modified?
- type String
- Type:
directoryorfile.
- crc32 string
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- created
At string - File created date/time
- created
By numberApi Key Id - ID of the API key that created the file/folder
- created
By numberAs2Incoming Message Id - ID of the AS2 Incoming Message that created the file/folder
- created
By numberAutomation Id - ID of the Automation that created the file/folder
- created
By numberBundle Registration Id - ID of the Bundle Registration that created the file/folder
- created
By numberId - User ID of the User who created the file/folder
- created
By numberInbox Id - ID of the Inbox that created the file/folder
- created
By numberRemote Server Id - ID of the Remote Server that created the file/folder
- created
By numberSync Id - ID of the Sync that created the file/folder
- custom
Metadata any - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- direct
Connection stringInfo - Optional direct connection information for direct Agent transfer attempts
- display
Name string - File/Folder display name
- download
Uri string - Link to download file. Provided only in response to a download request.
- is
Locked boolean - Is this folder locked and unable to be modified?
- last
Modified numberBy Api Key Id - ID of the API key that last modified the file/folder
- last
Modified numberBy Automation Id - ID of the Automation that last modified the file/folder
- last
Modified numberBy Bundle Registration Id - ID of the Bundle Registration that last modified the file/folder
- last
Modified numberBy Id - User ID of the User who last modified the file/folder
- last
Modified numberBy Remote Server Id - ID of the Remote Server that last modified the file/folder
- last
Modified numberBy Sync Id - ID of the Sync that last modified the file/folder
- md5 string
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- mime
Type string - MIME Type. This is determined by the filename extension and is not stored separately internally.
- mtime string
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- path string
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- permissions string
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - preview string
- File preview
- preview
Id number - File preview ID
- priority
Color string - Bookmark/priority color of file/folder
- provided
Mtime string - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- region string
- Region location
- sha1 string
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- sha256 string
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- size number
- File/Folder size
- subfolders
Locked boolean - Are subfolders locked and unable to be modified?
- type string
- Type:
directoryorfile.
- crc32 str
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- created_
at str - File created date/time
- created_
by_ intapi_ key_ id - ID of the API key that created the file/folder
- created_
by_ intas2_ incoming_ message_ id - ID of the AS2 Incoming Message that created the file/folder
- created_
by_ intautomation_ id - ID of the Automation that created the file/folder
- created_
by_ intbundle_ registration_ id - ID of the Bundle Registration that created the file/folder
- created_
by_ intid - User ID of the User who created the file/folder
- created_
by_ intinbox_ id - ID of the Inbox that created the file/folder
- created_
by_ intremote_ server_ id - ID of the Remote Server that created the file/folder
- created_
by_ intsync_ id - ID of the Sync that created the file/folder
- custom_
metadata Any - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- direct_
connection_ strinfo - Optional direct connection information for direct Agent transfer attempts
- display_
name str - File/Folder display name
- download_
uri str - Link to download file. Provided only in response to a download request.
- is_
locked bool - Is this folder locked and unable to be modified?
- last_
modified_ intby_ api_ key_ id - ID of the API key that last modified the file/folder
- last_
modified_ intby_ automation_ id - ID of the Automation that last modified the file/folder
- last_
modified_ intby_ bundle_ registration_ id - ID of the Bundle Registration that last modified the file/folder
- last_
modified_ intby_ id - User ID of the User who last modified the file/folder
- last_
modified_ intby_ remote_ server_ id - ID of the Remote Server that last modified the file/folder
- last_
modified_ intby_ sync_ id - ID of the Sync that last modified the file/folder
- md5 str
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- mime_
type str - MIME Type. This is determined by the filename extension and is not stored separately internally.
- mtime str
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- path str
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- permissions str
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - preview str
- File preview
- preview_
id int - File preview ID
- priority_
color str - Bookmark/priority color of file/folder
- provided_
mtime str - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- region str
- Region location
- sha1 str
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- sha256 str
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- size int
- File/Folder size
- subfolders_
locked bool - Are subfolders locked and unable to be modified?
- type str
- Type:
directoryorfile.
- crc32 String
- File CRC32 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- created
At String - File created date/time
- created
By NumberApi Key Id - ID of the API key that created the file/folder
- created
By NumberAs2Incoming Message Id - ID of the AS2 Incoming Message that created the file/folder
- created
By NumberAutomation Id - ID of the Automation that created the file/folder
- created
By NumberBundle Registration Id - ID of the Bundle Registration that created the file/folder
- created
By NumberId - User ID of the User who created the file/folder
- created
By NumberInbox Id - ID of the Inbox that created the file/folder
- created
By NumberRemote Server Id - ID of the Remote Server that created the file/folder
- created
By NumberSync Id - ID of the Sync that created the file/folder
- custom
Metadata Any - Custom metadata map of keys and values. Limited to 32 keys, 256 characters per key and 1024 characters per value.
- direct
Connection StringInfo - Optional direct connection information for direct Agent transfer attempts
- display
Name String - File/Folder display name
- download
Uri String - Link to download file. Provided only in response to a download request.
- is
Locked Boolean - Is this folder locked and unable to be modified?
- last
Modified NumberBy Api Key Id - ID of the API key that last modified the file/folder
- last
Modified NumberBy Automation Id - ID of the Automation that last modified the file/folder
- last
Modified NumberBy Bundle Registration Id - ID of the Bundle Registration that last modified the file/folder
- last
Modified NumberBy Id - User ID of the User who last modified the file/folder
- last
Modified NumberBy Remote Server Id - ID of the Remote Server that last modified the file/folder
- last
Modified NumberBy Sync Id - ID of the Sync that last modified the file/folder
- md5 String
- File MD5 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- mime
Type String - MIME Type. This is determined by the filename extension and is not stored separately internally.
- mtime String
- File last modified date/time, according to the server. This is the timestamp of the last Files.com operation of the file, regardless of what modified timestamp was sent.
- path String
- File/Folder path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
- permissions String
- A short string representing the current user's permissions. Can be
r(Read),w(Write),d(Delete),l(List) or any combination - preview String
- File preview
- preview
Id Number - File preview ID
- priority
Color String - Bookmark/priority color of file/folder
- provided
Mtime String - File last modified date/time, according to the client who set it. Files.com allows desktop, FTP, SFTP, and WebDAV clients to set modified at times. This allows Desktop<->Cloud syncing to preserve modified at times.
- region String
- Region location
- sha1 String
- File SHA1 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- sha256 String
- File SHA256 checksum. This is sometimes delayed, so if you get a blank response, wait and try again.
- size Number
- File/Folder size
- subfolders
Locked Boolean - Are subfolders locked and unable to be modified?
- type String
- Type:
directoryorfile.
Package Details
- Repository
- filescom jschady/pulumi-filescom
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
filescomTerraform Provider.
Viewing docs for Files.com v0.1.1
published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady