1. Packages
  2. Port
  3. API Docs
  4. Folder
Port v2.19.6 published on Thursday, Feb 12, 2026 by port-labs
port logo
Port v2.19.6 published on Thursday, Feb 12, 2026 by port-labs

    Create Folder Resource

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

    Constructor syntax

    new Folder(name: string, args: FolderArgs, opts?: CustomResourceOptions);
    @overload
    def Folder(resource_name: str,
               args: FolderArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Folder(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               identifier: Optional[str] = None,
               after: Optional[str] = None,
               parent: Optional[str] = None,
               title: Optional[str] = None)
    func NewFolder(ctx *Context, name string, args FolderArgs, opts ...ResourceOption) (*Folder, error)
    public Folder(string name, FolderArgs args, CustomResourceOptions? opts = null)
    public Folder(String name, FolderArgs args)
    public Folder(String name, FolderArgs args, CustomResourceOptions options)
    
    type: port:Folder
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FolderArgs
    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 FolderArgs
    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 FolderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FolderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FolderArgs
    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 folderResource = new Port.Folder("folderResource", new()
    {
        Identifier = "string",
        After = "string",
        Parent = "string",
        Title = "string",
    });
    
    example, err := port.NewFolder(ctx, "folderResource", &port.FolderArgs{
    	Identifier: pulumi.String("string"),
    	After:      pulumi.String("string"),
    	Parent:     pulumi.String("string"),
    	Title:      pulumi.String("string"),
    })
    
    var folderResource = new Folder("folderResource", FolderArgs.builder()
        .identifier("string")
        .after("string")
        .parent("string")
        .title("string")
        .build());
    
    folder_resource = port.Folder("folderResource",
        identifier="string",
        after="string",
        parent="string",
        title="string")
    
    const folderResource = new port.Folder("folderResource", {
        identifier: "string",
        after: "string",
        parent: "string",
        title: "string",
    });
    
    type: port:Folder
    properties:
        after: string
        identifier: string
        parent: string
        title: string
    

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

    Identifier string
    The identifier of the folder
    After string
    The identifier of the folder after which the folder should be placed
    Parent string
    The identifier of the parent folder
    Title string
    The title of the folder
    Identifier string
    The identifier of the folder
    After string
    The identifier of the folder after which the folder should be placed
    Parent string
    The identifier of the parent folder
    Title string
    The title of the folder
    identifier String
    The identifier of the folder
    after String
    The identifier of the folder after which the folder should be placed
    parent String
    The identifier of the parent folder
    title String
    The title of the folder
    identifier string
    The identifier of the folder
    after string
    The identifier of the folder after which the folder should be placed
    parent string
    The identifier of the parent folder
    title string
    The title of the folder
    identifier str
    The identifier of the folder
    after str
    The identifier of the folder after which the folder should be placed
    parent str
    The identifier of the parent folder
    title str
    The title of the folder
    identifier String
    The identifier of the folder
    after String
    The identifier of the folder after which the folder should be placed
    parent String
    The identifier of the parent folder
    title String
    The title of the folder

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Folder Resource

    Get an existing Folder 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?: FolderState, opts?: CustomResourceOptions): Folder
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            after: Optional[str] = None,
            identifier: Optional[str] = None,
            parent: Optional[str] = None,
            title: Optional[str] = None) -> Folder
    func GetFolder(ctx *Context, name string, id IDInput, state *FolderState, opts ...ResourceOption) (*Folder, error)
    public static Folder Get(string name, Input<string> id, FolderState? state, CustomResourceOptions? opts = null)
    public static Folder get(String name, Output<String> id, FolderState state, CustomResourceOptions options)
    resources:  _:    type: port:Folder    get:      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:
    After string
    The identifier of the folder after which the folder should be placed
    Identifier string
    The identifier of the folder
    Parent string
    The identifier of the parent folder
    Title string
    The title of the folder
    After string
    The identifier of the folder after which the folder should be placed
    Identifier string
    The identifier of the folder
    Parent string
    The identifier of the parent folder
    Title string
    The title of the folder
    after String
    The identifier of the folder after which the folder should be placed
    identifier String
    The identifier of the folder
    parent String
    The identifier of the parent folder
    title String
    The title of the folder
    after string
    The identifier of the folder after which the folder should be placed
    identifier string
    The identifier of the folder
    parent string
    The identifier of the parent folder
    title string
    The title of the folder
    after str
    The identifier of the folder after which the folder should be placed
    identifier str
    The identifier of the folder
    parent str
    The identifier of the parent folder
    title str
    The title of the folder
    after String
    The identifier of the folder after which the folder should be placed
    identifier String
    The identifier of the folder
    parent String
    The identifier of the parent folder
    title String
    The title of the folder

    Package Details

    Repository
    port port-labs/pulumi-port
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the port-labs Terraform Provider.
    port logo
    Port v2.19.6 published on Thursday, Feb 12, 2026 by port-labs
      Meet Neo: Your AI Platform Teammate