published on Thursday, Aug 20, 2026 by jschady
published on Thursday, Aug 20, 2026 by jschady
An AS2Station is a remote AS2 server that can send data into Files.com and receive data from Files.com.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as filescom from "pulumi-filescom";
const exampleAs2Station = new filescom.As2Station("example_as2_station", {
name: "AS2 Station Name",
workspaceId: 1,
publicCertificate: "public_certificate",
privateKey: "private_key",
});
import pulumi
import pulumi_filescom as filescom
example_as2_station = filescom.As2Station("example_as2_station",
name="AS2 Station Name",
workspace_id=1,
public_certificate="public_certificate",
private_key="private_key")
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.NewAs2Station(ctx, "example_as2_station", &filescom.As2StationArgs{
Name: pulumi.String("AS2 Station Name"),
WorkspaceId: pulumi.Int(1),
PublicCertificate: pulumi.String("public_certificate"),
PrivateKey: pulumi.String("private_key"),
})
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 exampleAs2Station = new Filescom.As2Station("example_as2_station", new()
{
Name = "AS2 Station Name",
WorkspaceId = 1,
PublicCertificate = "public_certificate",
PrivateKey = "private_key",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.filescom.As2Station;
import com.pulumi.filescom.As2StationArgs;
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 exampleAs2Station = new As2Station("exampleAs2Station", As2StationArgs.builder()
.name("AS2 Station Name")
.workspaceId(1)
.publicCertificate("public_certificate")
.privateKey("private_key")
.build());
}
}
resources:
exampleAs2Station:
type: filescom:As2Station
name: example_as2_station
properties:
name: AS2 Station Name
workspaceId: 1
publicCertificate: public_certificate
privateKey: private_key
pulumi {
required_providers {
filescom = {
source = "pulumi/filescom"
}
}
}
resource "filescom_as2station" "example_as2_station" {
name = "AS2 Station Name"
workspace_id = 1
public_certificate = "public_certificate"
private_key = "private_key"
}
Create As2Station Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new As2Station(name: string, args: As2StationArgs, opts?: CustomResourceOptions);@overload
def As2Station(resource_name: str,
args: As2StationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def As2Station(resource_name: str,
opts: Optional[ResourceOptions] = None,
private_key: Optional[str] = None,
public_certificate: Optional[str] = None,
name: Optional[str] = None,
private_key_password: Optional[str] = None,
workspace_id: Optional[int] = None)func NewAs2Station(ctx *Context, name string, args As2StationArgs, opts ...ResourceOption) (*As2Station, error)public As2Station(string name, As2StationArgs args, CustomResourceOptions? opts = null)
public As2Station(String name, As2StationArgs args)
public As2Station(String name, As2StationArgs args, CustomResourceOptions options)
type: filescom:As2Station
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "filescom_as2_station" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args As2StationArgs
- 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 As2StationArgs
- 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 As2StationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args As2StationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args As2StationArgs
- 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 as2StationResource = new Filescom.As2Station("as2StationResource", new()
{
PrivateKey = "string",
PublicCertificate = "string",
Name = "string",
PrivateKeyPassword = "string",
WorkspaceId = 0,
});
example, err := filescom.NewAs2Station(ctx, "as2StationResource", &filescom.As2StationArgs{
PrivateKey: pulumi.String("string"),
PublicCertificate: pulumi.String("string"),
Name: pulumi.String("string"),
PrivateKeyPassword: pulumi.String("string"),
WorkspaceId: pulumi.Int(0),
})
resource "filescom_as2_station" "as2StationResource" {
lifecycle {
create_before_destroy = true
}
private_key = "string"
public_certificate = "string"
name = "string"
private_key_password = "string"
workspace_id = 0
}
var as2StationResource = new As2Station("as2StationResource", As2StationArgs.builder()
.privateKey("string")
.publicCertificate("string")
.name("string")
.privateKeyPassword("string")
.workspaceId(0)
.build());
as2_station_resource = filescom.As2Station("as2StationResource",
private_key="string",
public_certificate="string",
name="string",
private_key_password="string",
workspace_id=0)
const as2StationResource = new filescom.As2Station("as2StationResource", {
privateKey: "string",
publicCertificate: "string",
name: "string",
privateKeyPassword: "string",
workspaceId: 0,
});
type: filescom:As2Station
properties:
name: string
privateKey: string
privateKeyPassword: string
publicCertificate: string
workspaceId: 0
As2Station 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 As2Station resource accepts the following input properties:
- Private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Public
Certificate string - Public certificate used for message security.
- Name string
- The station's formal AS2 name.
- Private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Workspace
Id int - ID of the Workspace associated with this AS2 Station.
- Private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Public
Certificate string - Public certificate used for message security.
- Name string
- The station's formal AS2 name.
- Private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Workspace
Id int - ID of the Workspace associated with this AS2 Station.
- private_
key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- public_
certificate string - Public certificate used for message security.
- name string
- The station's formal AS2 name.
- private_
key_ stringpassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- workspace_
id number - ID of the Workspace associated with this AS2 Station.
- private
Key String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- public
Certificate String - Public certificate used for message security.
- name String
- The station's formal AS2 name.
- private
Key StringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- workspace
Id Integer - ID of the Workspace associated with this AS2 Station.
- private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- public
Certificate string - Public certificate used for message security.
- name string
- The station's formal AS2 name.
- private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- workspace
Id number - ID of the Workspace associated with this AS2 Station.
- private_
key str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- public_
certificate str - Public certificate used for message security.
- name str
- The station's formal AS2 name.
- private_
key_ strpassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- workspace_
id int - ID of the Workspace associated with this AS2 Station.
- private
Key String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- public
Certificate String - Public certificate used for message security.
- name String
- The station's formal AS2 name.
- private
Key StringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- workspace
Id Number - ID of the Workspace associated with this AS2 Station.
Outputs
All input properties are implicitly available as output properties. Additionally, the As2Station resource produces the following output properties:
- Domain string
- The station's AS2 domain name.
- Hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Key stringMd5 - MD5 hash of private key used for message security.
- Private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- Public
Certificate stringIssuer - Issuer of public certificate used for message security.
- Public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- Public
Certificate stringNot After - Not after value of public certificate used for message security.
- Public
Certificate stringNot Before - Not before value of public certificate used for message security.
- Public
Certificate stringSerial - Serial of public certificate used for message security.
- Public
Certificate stringSubject - Subject of public certificate used for message security.
- Uri string
- Public URI for sending AS2 message to.
- Domain string
- The station's AS2 domain name.
- Hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Private
Key stringMd5 - MD5 hash of private key used for message security.
- Private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- Public
Certificate stringIssuer - Issuer of public certificate used for message security.
- Public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- Public
Certificate stringNot After - Not after value of public certificate used for message security.
- Public
Certificate stringNot Before - Not before value of public certificate used for message security.
- Public
Certificate stringSerial - Serial of public certificate used for message security.
- Public
Certificate stringSubject - Subject of public certificate used for message security.
- Uri string
- Public URI for sending AS2 message to.
- domain string
- The station's AS2 domain name.
- hex_
public_ stringcertificate_ serial - Serial of public certificate used for message security in hex format.
- id string
- The provider-assigned unique ID for this managed resource.
- private_
key_ stringmd5 - MD5 hash of private key used for message security.
- private_
key_ stringpassword_ md5 - MD5 hash of private key password used for message security.
- public_
certificate_ stringissuer - Issuer of public certificate used for message security.
- public_
certificate_ stringmd5 - MD5 hash of public certificate used for message security.
- public_
certificate_ stringnot_ after - Not after value of public certificate used for message security.
- public_
certificate_ stringnot_ before - Not before value of public certificate used for message security.
- public_
certificate_ stringserial - Serial of public certificate used for message security.
- public_
certificate_ stringsubject - Subject of public certificate used for message security.
- uri string
- Public URI for sending AS2 message to.
- domain String
- The station's AS2 domain name.
- hex
Public StringCertificate Serial - Serial of public certificate used for message security in hex format.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Key StringMd5 - MD5 hash of private key used for message security.
- private
Key StringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate StringIssuer - Issuer of public certificate used for message security.
- public
Certificate StringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate StringNot After - Not after value of public certificate used for message security.
- public
Certificate StringNot Before - Not before value of public certificate used for message security.
- public
Certificate StringSerial - Serial of public certificate used for message security.
- public
Certificate StringSubject - Subject of public certificate used for message security.
- uri String
- Public URI for sending AS2 message to.
- domain string
- The station's AS2 domain name.
- hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- id string
- The provider-assigned unique ID for this managed resource.
- private
Key stringMd5 - MD5 hash of private key used for message security.
- private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate stringIssuer - Issuer of public certificate used for message security.
- public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate stringNot After - Not after value of public certificate used for message security.
- public
Certificate stringNot Before - Not before value of public certificate used for message security.
- public
Certificate stringSerial - Serial of public certificate used for message security.
- public
Certificate stringSubject - Subject of public certificate used for message security.
- uri string
- Public URI for sending AS2 message to.
- domain str
- The station's AS2 domain name.
- hex_
public_ strcertificate_ serial - Serial of public certificate used for message security in hex format.
- id str
- The provider-assigned unique ID for this managed resource.
- private_
key_ strmd5 - MD5 hash of private key used for message security.
- private_
key_ strpassword_ md5 - MD5 hash of private key password used for message security.
- public_
certificate_ strissuer - Issuer of public certificate used for message security.
- public_
certificate_ strmd5 - MD5 hash of public certificate used for message security.
- public_
certificate_ strnot_ after - Not after value of public certificate used for message security.
- public_
certificate_ strnot_ before - Not before value of public certificate used for message security.
- public_
certificate_ strserial - Serial of public certificate used for message security.
- public_
certificate_ strsubject - Subject of public certificate used for message security.
- uri str
- Public URI for sending AS2 message to.
- domain String
- The station's AS2 domain name.
- hex
Public StringCertificate Serial - Serial of public certificate used for message security in hex format.
- id String
- The provider-assigned unique ID for this managed resource.
- private
Key StringMd5 - MD5 hash of private key used for message security.
- private
Key StringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate StringIssuer - Issuer of public certificate used for message security.
- public
Certificate StringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate StringNot After - Not after value of public certificate used for message security.
- public
Certificate StringNot Before - Not before value of public certificate used for message security.
- public
Certificate StringSerial - Serial of public certificate used for message security.
- public
Certificate StringSubject - Subject of public certificate used for message security.
- uri String
- Public URI for sending AS2 message to.
Look up Existing As2Station Resource
Get an existing As2Station 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?: As2StationState, opts?: CustomResourceOptions): As2Station@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
domain: Optional[str] = None,
hex_public_certificate_serial: Optional[str] = None,
name: Optional[str] = None,
private_key: Optional[str] = None,
private_key_md5: Optional[str] = None,
private_key_password: Optional[str] = None,
private_key_password_md5: Optional[str] = None,
public_certificate: Optional[str] = None,
public_certificate_issuer: Optional[str] = None,
public_certificate_md5: Optional[str] = None,
public_certificate_not_after: Optional[str] = None,
public_certificate_not_before: Optional[str] = None,
public_certificate_serial: Optional[str] = None,
public_certificate_subject: Optional[str] = None,
uri: Optional[str] = None,
workspace_id: Optional[int] = None) -> As2Stationfunc GetAs2Station(ctx *Context, name string, id IDInput, state *As2StationState, opts ...ResourceOption) (*As2Station, error)public static As2Station Get(string name, Input<string> id, As2StationState? state, CustomResourceOptions? opts = null)public static As2Station get(String name, Output<String> id, As2StationState state, CustomResourceOptions options)resources: _: type: filescom:As2Station get: id: ${id}import {
to = filescom_as2_station.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.
- Domain string
- The station's AS2 domain name.
- Hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- Name string
- The station's formal AS2 name.
- Private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Private
Key stringMd5 - MD5 hash of private key used for message security.
- Private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- Public
Certificate string - Public certificate used for message security.
- Public
Certificate stringIssuer - Issuer of public certificate used for message security.
- Public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- Public
Certificate stringNot After - Not after value of public certificate used for message security.
- Public
Certificate stringNot Before - Not before value of public certificate used for message security.
- Public
Certificate stringSerial - Serial of public certificate used for message security.
- Public
Certificate stringSubject - Subject of public certificate used for message security.
- Uri string
- Public URI for sending AS2 message to.
- Workspace
Id int - ID of the Workspace associated with this AS2 Station.
- Domain string
- The station's AS2 domain name.
- Hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- Name string
- The station's formal AS2 name.
- Private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Private
Key stringMd5 - MD5 hash of private key used for message security.
- Private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- Private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- Public
Certificate string - Public certificate used for message security.
- Public
Certificate stringIssuer - Issuer of public certificate used for message security.
- Public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- Public
Certificate stringNot After - Not after value of public certificate used for message security.
- Public
Certificate stringNot Before - Not before value of public certificate used for message security.
- Public
Certificate stringSerial - Serial of public certificate used for message security.
- Public
Certificate stringSubject - Subject of public certificate used for message security.
- Uri string
- Public URI for sending AS2 message to.
- Workspace
Id int - ID of the Workspace associated with this AS2 Station.
- domain string
- The station's AS2 domain name.
- hex_
public_ stringcertificate_ serial - Serial of public certificate used for message security in hex format.
- name string
- The station's formal AS2 name.
- private_
key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private_
key_ stringmd5 - MD5 hash of private key used for message security.
- private_
key_ stringpassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private_
key_ stringpassword_ md5 - MD5 hash of private key password used for message security.
- public_
certificate string - Public certificate used for message security.
- public_
certificate_ stringissuer - Issuer of public certificate used for message security.
- public_
certificate_ stringmd5 - MD5 hash of public certificate used for message security.
- public_
certificate_ stringnot_ after - Not after value of public certificate used for message security.
- public_
certificate_ stringnot_ before - Not before value of public certificate used for message security.
- public_
certificate_ stringserial - Serial of public certificate used for message security.
- public_
certificate_ stringsubject - Subject of public certificate used for message security.
- uri string
- Public URI for sending AS2 message to.
- workspace_
id number - ID of the Workspace associated with this AS2 Station.
- domain String
- The station's AS2 domain name.
- hex
Public StringCertificate Serial - Serial of public certificate used for message security in hex format.
- name String
- The station's formal AS2 name.
- private
Key String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key StringMd5 - MD5 hash of private key used for message security.
- private
Key StringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key StringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate String - Public certificate used for message security.
- public
Certificate StringIssuer - Issuer of public certificate used for message security.
- public
Certificate StringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate StringNot After - Not after value of public certificate used for message security.
- public
Certificate StringNot Before - Not before value of public certificate used for message security.
- public
Certificate StringSerial - Serial of public certificate used for message security.
- public
Certificate StringSubject - Subject of public certificate used for message security.
- uri String
- Public URI for sending AS2 message to.
- workspace
Id Integer - ID of the Workspace associated with this AS2 Station.
- domain string
- The station's AS2 domain name.
- hex
Public stringCertificate Serial - Serial of public certificate used for message security in hex format.
- name string
- The station's formal AS2 name.
- private
Key string - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key stringMd5 - MD5 hash of private key used for message security.
- private
Key stringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key stringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate string - Public certificate used for message security.
- public
Certificate stringIssuer - Issuer of public certificate used for message security.
- public
Certificate stringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate stringNot After - Not after value of public certificate used for message security.
- public
Certificate stringNot Before - Not before value of public certificate used for message security.
- public
Certificate stringSerial - Serial of public certificate used for message security.
- public
Certificate stringSubject - Subject of public certificate used for message security.
- uri string
- Public URI for sending AS2 message to.
- workspace
Id number - ID of the Workspace associated with this AS2 Station.
- domain str
- The station's AS2 domain name.
- hex_
public_ strcertificate_ serial - Serial of public certificate used for message security in hex format.
- name str
- The station's formal AS2 name.
- private_
key str - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private_
key_ strmd5 - MD5 hash of private key used for message security.
- private_
key_ strpassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private_
key_ strpassword_ md5 - MD5 hash of private key password used for message security.
- public_
certificate str - Public certificate used for message security.
- public_
certificate_ strissuer - Issuer of public certificate used for message security.
- public_
certificate_ strmd5 - MD5 hash of public certificate used for message security.
- public_
certificate_ strnot_ after - Not after value of public certificate used for message security.
- public_
certificate_ strnot_ before - Not before value of public certificate used for message security.
- public_
certificate_ strserial - Serial of public certificate used for message security.
- public_
certificate_ strsubject - Subject of public certificate used for message security.
- uri str
- Public URI for sending AS2 message to.
- workspace_
id int - ID of the Workspace associated with this AS2 Station.
- domain String
- The station's AS2 domain name.
- hex
Public StringCertificate Serial - Serial of public certificate used for message security in hex format.
- name String
- The station's formal AS2 name.
- private
Key String - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key StringMd5 - MD5 hash of private key used for message security.
- private
Key StringPassword - NOTE: This field is write-only and its value will not be updated in state as part of read operations.
- private
Key StringPassword Md5 - MD5 hash of private key password used for message security.
- public
Certificate String - Public certificate used for message security.
- public
Certificate StringIssuer - Issuer of public certificate used for message security.
- public
Certificate StringMd5 - MD5 hash of public certificate used for message security.
- public
Certificate StringNot After - Not after value of public certificate used for message security.
- public
Certificate StringNot Before - Not before value of public certificate used for message security.
- public
Certificate StringSerial - Serial of public certificate used for message security.
- public
Certificate StringSubject - Subject of public certificate used for message security.
- uri String
- Public URI for sending AS2 message to.
- workspace
Id Number - ID of the Workspace associated with this AS2 Station.
Import
The pulumi import command can be used, for example:
As2 Stations can be imported by specifying the id.
$ pulumi import filescom:index/as2Station:As2Station example_as2_station 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