1. Registry
  2. Packages
  3. Files.com
  4. API Docs
  5. As2Station
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

    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:

    PrivateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PublicCertificate string
    Public certificate used for message security.
    Name string
    The station's formal AS2 name.
    PrivateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    WorkspaceId int
    ID of the Workspace associated with this AS2 Station.
    PrivateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PublicCertificate string
    Public certificate used for message security.
    Name string
    The station's formal AS2 name.
    PrivateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    WorkspaceId 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_password string
    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.
    privateKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    publicCertificate String
    Public certificate used for message security.
    name String
    The station's formal AS2 name.
    privateKeyPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    workspaceId Integer
    ID of the Workspace associated with this AS2 Station.
    privateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    publicCertificate string
    Public certificate used for message security.
    name string
    The station's formal AS2 name.
    privateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    workspaceId 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_password str
    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.
    privateKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    publicCertificate String
    Public certificate used for message security.
    name String
    The station's formal AS2 name.
    privateKeyPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    workspaceId 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.
    HexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateKeyMd5 string
    MD5 hash of private key used for message security.
    PrivateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    PublicCertificateIssuer string
    Issuer of public certificate used for message security.
    PublicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    PublicCertificateNotAfter string
    Not after value of public certificate used for message security.
    PublicCertificateNotBefore string
    Not before value of public certificate used for message security.
    PublicCertificateSerial string
    Serial of public certificate used for message security.
    PublicCertificateSubject string
    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.
    HexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrivateKeyMd5 string
    MD5 hash of private key used for message security.
    PrivateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    PublicCertificateIssuer string
    Issuer of public certificate used for message security.
    PublicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    PublicCertificateNotAfter string
    Not after value of public certificate used for message security.
    PublicCertificateNotBefore string
    Not before value of public certificate used for message security.
    PublicCertificateSerial string
    Serial of public certificate used for message security.
    PublicCertificateSubject string
    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_certificate_serial string
    Serial of public certificate used for message security in hex format.
    id string
    The provider-assigned unique ID for this managed resource.
    private_key_md5 string
    MD5 hash of private key used for message security.
    private_key_password_md5 string
    MD5 hash of private key password used for message security.
    public_certificate_issuer string
    Issuer of public certificate used for message security.
    public_certificate_md5 string
    MD5 hash of public certificate used for message security.
    public_certificate_not_after string
    Not after value of public certificate used for message security.
    public_certificate_not_before string
    Not before value of public certificate used for message security.
    public_certificate_serial string
    Serial of public certificate used for message security.
    public_certificate_subject string
    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.
    hexPublicCertificateSerial String
    Serial of public certificate used for message security in hex format.
    id String
    The provider-assigned unique ID for this managed resource.
    privateKeyMd5 String
    MD5 hash of private key used for message security.
    privateKeyPasswordMd5 String
    MD5 hash of private key password used for message security.
    publicCertificateIssuer String
    Issuer of public certificate used for message security.
    publicCertificateMd5 String
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter String
    Not after value of public certificate used for message security.
    publicCertificateNotBefore String
    Not before value of public certificate used for message security.
    publicCertificateSerial String
    Serial of public certificate used for message security.
    publicCertificateSubject String
    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.
    hexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    id string
    The provider-assigned unique ID for this managed resource.
    privateKeyMd5 string
    MD5 hash of private key used for message security.
    privateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    publicCertificateIssuer string
    Issuer of public certificate used for message security.
    publicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter string
    Not after value of public certificate used for message security.
    publicCertificateNotBefore string
    Not before value of public certificate used for message security.
    publicCertificateSerial string
    Serial of public certificate used for message security.
    publicCertificateSubject string
    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_certificate_serial str
    Serial of public certificate used for message security in hex format.
    id str
    The provider-assigned unique ID for this managed resource.
    private_key_md5 str
    MD5 hash of private key used for message security.
    private_key_password_md5 str
    MD5 hash of private key password used for message security.
    public_certificate_issuer str
    Issuer of public certificate used for message security.
    public_certificate_md5 str
    MD5 hash of public certificate used for message security.
    public_certificate_not_after str
    Not after value of public certificate used for message security.
    public_certificate_not_before str
    Not before value of public certificate used for message security.
    public_certificate_serial str
    Serial of public certificate used for message security.
    public_certificate_subject str
    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.
    hexPublicCertificateSerial String
    Serial of public certificate used for message security in hex format.
    id String
    The provider-assigned unique ID for this managed resource.
    privateKeyMd5 String
    MD5 hash of private key used for message security.
    privateKeyPasswordMd5 String
    MD5 hash of private key password used for message security.
    publicCertificateIssuer String
    Issuer of public certificate used for message security.
    publicCertificateMd5 String
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter String
    Not after value of public certificate used for message security.
    publicCertificateNotBefore String
    Not before value of public certificate used for message security.
    publicCertificateSerial String
    Serial of public certificate used for message security.
    publicCertificateSubject String
    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) -> As2Station
    func 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.
    The following state arguments are supported:
    Domain string
    The station's AS2 domain name.
    HexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    Name string
    The station's formal AS2 name.
    PrivateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PrivateKeyMd5 string
    MD5 hash of private key used for message security.
    PrivateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PrivateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    PublicCertificate string
    Public certificate used for message security.
    PublicCertificateIssuer string
    Issuer of public certificate used for message security.
    PublicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    PublicCertificateNotAfter string
    Not after value of public certificate used for message security.
    PublicCertificateNotBefore string
    Not before value of public certificate used for message security.
    PublicCertificateSerial string
    Serial of public certificate used for message security.
    PublicCertificateSubject string
    Subject of public certificate used for message security.
    Uri string
    Public URI for sending AS2 message to.
    WorkspaceId int
    ID of the Workspace associated with this AS2 Station.
    Domain string
    The station's AS2 domain name.
    HexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    Name string
    The station's formal AS2 name.
    PrivateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PrivateKeyMd5 string
    MD5 hash of private key used for message security.
    PrivateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    PrivateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    PublicCertificate string
    Public certificate used for message security.
    PublicCertificateIssuer string
    Issuer of public certificate used for message security.
    PublicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    PublicCertificateNotAfter string
    Not after value of public certificate used for message security.
    PublicCertificateNotBefore string
    Not before value of public certificate used for message security.
    PublicCertificateSerial string
    Serial of public certificate used for message security.
    PublicCertificateSubject string
    Subject of public certificate used for message security.
    Uri string
    Public URI for sending AS2 message to.
    WorkspaceId int
    ID of the Workspace associated with this AS2 Station.
    domain string
    The station's AS2 domain name.
    hex_public_certificate_serial string
    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_md5 string
    MD5 hash of private key used for message security.
    private_key_password string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    private_key_password_md5 string
    MD5 hash of private key password used for message security.
    public_certificate string
    Public certificate used for message security.
    public_certificate_issuer string
    Issuer of public certificate used for message security.
    public_certificate_md5 string
    MD5 hash of public certificate used for message security.
    public_certificate_not_after string
    Not after value of public certificate used for message security.
    public_certificate_not_before string
    Not before value of public certificate used for message security.
    public_certificate_serial string
    Serial of public certificate used for message security.
    public_certificate_subject string
    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.
    hexPublicCertificateSerial String
    Serial of public certificate used for message security in hex format.
    name String
    The station's formal AS2 name.
    privateKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyMd5 String
    MD5 hash of private key used for message security.
    privateKeyPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyPasswordMd5 String
    MD5 hash of private key password used for message security.
    publicCertificate String
    Public certificate used for message security.
    publicCertificateIssuer String
    Issuer of public certificate used for message security.
    publicCertificateMd5 String
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter String
    Not after value of public certificate used for message security.
    publicCertificateNotBefore String
    Not before value of public certificate used for message security.
    publicCertificateSerial String
    Serial of public certificate used for message security.
    publicCertificateSubject String
    Subject of public certificate used for message security.
    uri String
    Public URI for sending AS2 message to.
    workspaceId Integer
    ID of the Workspace associated with this AS2 Station.
    domain string
    The station's AS2 domain name.
    hexPublicCertificateSerial string
    Serial of public certificate used for message security in hex format.
    name string
    The station's formal AS2 name.
    privateKey string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyMd5 string
    MD5 hash of private key used for message security.
    privateKeyPassword string
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyPasswordMd5 string
    MD5 hash of private key password used for message security.
    publicCertificate string
    Public certificate used for message security.
    publicCertificateIssuer string
    Issuer of public certificate used for message security.
    publicCertificateMd5 string
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter string
    Not after value of public certificate used for message security.
    publicCertificateNotBefore string
    Not before value of public certificate used for message security.
    publicCertificateSerial string
    Serial of public certificate used for message security.
    publicCertificateSubject string
    Subject of public certificate used for message security.
    uri string
    Public URI for sending AS2 message to.
    workspaceId number
    ID of the Workspace associated with this AS2 Station.
    domain str
    The station's AS2 domain name.
    hex_public_certificate_serial str
    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_md5 str
    MD5 hash of private key used for message security.
    private_key_password str
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    private_key_password_md5 str
    MD5 hash of private key password used for message security.
    public_certificate str
    Public certificate used for message security.
    public_certificate_issuer str
    Issuer of public certificate used for message security.
    public_certificate_md5 str
    MD5 hash of public certificate used for message security.
    public_certificate_not_after str
    Not after value of public certificate used for message security.
    public_certificate_not_before str
    Not before value of public certificate used for message security.
    public_certificate_serial str
    Serial of public certificate used for message security.
    public_certificate_subject str
    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.
    hexPublicCertificateSerial String
    Serial of public certificate used for message security in hex format.
    name String
    The station's formal AS2 name.
    privateKey String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyMd5 String
    MD5 hash of private key used for message security.
    privateKeyPassword String
    NOTE: This field is write-only and its value will not be updated in state as part of read operations.
    privateKeyPasswordMd5 String
    MD5 hash of private key password used for message security.
    publicCertificate String
    Public certificate used for message security.
    publicCertificateIssuer String
    Issuer of public certificate used for message security.
    publicCertificateMd5 String
    MD5 hash of public certificate used for message security.
    publicCertificateNotAfter String
    Not after value of public certificate used for message security.
    publicCertificateNotBefore String
    Not before value of public certificate used for message security.
    publicCertificateSerial String
    Serial of public certificate used for message security.
    publicCertificateSubject String
    Subject of public certificate used for message security.
    uri String
    Public URI for sending AS2 message to.
    workspaceId 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 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