Vantage v0.0.3 published on Wednesday, Jan 31, 2024 by lbrlabs
vantage.Folder
Explore with Pulumi AI
Manages a Folder.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Vantage = Lbrlabs.PulumiPackage.Vantage;
return await Deployment.RunAsync(() =>
{
var demoFolder = new Vantage.Folder("demoFolder", new()
{
Title = "Demo Folder",
});
});
package main
import (
"github.com/lbrlabs/pulumi-vantage/sdk/go/vantage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vantage.NewFolder(ctx, "demoFolder", &vantage.FolderArgs{
Title: pulumi.String("Demo Folder"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.vantage.Folder;
import com.pulumi.vantage.FolderArgs;
import java.util.List;
import java.util.ArrayList;
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 demoFolder = new Folder("demoFolder", FolderArgs.builder()
.title("Demo Folder")
.build());
}
}
import pulumi
import lbrlabs_pulumi_vantage as vantage
demo_folder = vantage.Folder("demoFolder", title="Demo Folder")
import * as pulumi from "@pulumi/pulumi";
import * as vantage from "@lbrlabs/pulumi-vantage";
const demoFolder = new vantage.Folder("demoFolder", {title: "Demo Folder"});
resources:
demoFolder:
type: vantage:Folder
properties:
title: Demo Folder
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,
title: Optional[str] = None,
parent_folder_token: Optional[str] = None,
workspace_token: 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: vantage: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 Vantage.Folder("folderResource", new()
{
Title = "string",
ParentFolderToken = "string",
WorkspaceToken = "string",
});
example, err := vantage.NewFolder(ctx, "folderResource", &vantage.FolderArgs{
Title: pulumi.String("string"),
ParentFolderToken: pulumi.String("string"),
WorkspaceToken: pulumi.String("string"),
})
var folderResource = new Folder("folderResource", FolderArgs.builder()
.title("string")
.parentFolderToken("string")
.workspaceToken("string")
.build());
folder_resource = vantage.Folder("folderResource",
title="string",
parent_folder_token="string",
workspace_token="string")
const folderResource = new vantage.Folder("folderResource", {
title: "string",
parentFolderToken: "string",
workspaceToken: "string",
});
type: vantage:Folder
properties:
parentFolderToken: string
title: string
workspaceToken: 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
The Folder resource accepts the following input properties:
- Title string
- Title of the folder
- Parent
Folder stringToken - Token of the folder's parent folder
- Workspace
Token string - Workspace token to add the cost report to.
- Title string
- Title of the folder
- Parent
Folder stringToken - Token of the folder's parent folder
- Workspace
Token string - Workspace token to add the cost report to.
- title String
- Title of the folder
- parent
Folder StringToken - Token of the folder's parent folder
- workspace
Token String - Workspace token to add the cost report to.
- title string
- Title of the folder
- parent
Folder stringToken - Token of the folder's parent folder
- workspace
Token string - Workspace token to add the cost report to.
- title str
- Title of the folder
- parent_
folder_ strtoken - Token of the folder's parent folder
- workspace_
token str - Workspace token to add the cost report to.
- title String
- Title of the folder
- parent
Folder StringToken - Token of the folder's parent folder
- workspace
Token String - Workspace token to add the cost report to.
Outputs
All input properties are implicitly available as output properties. Additionally, the Folder resource produces the following output properties:
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,
parent_folder_token: Optional[str] = None,
title: Optional[str] = None,
token: Optional[str] = None,
workspace_token: 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)
Resource lookup is not supported in YAML
- 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.
- Parent
Folder stringToken - Token of the folder's parent folder
- Title string
- Title of the folder
- Token string
- Unique folder identifier
- Workspace
Token string - Workspace token to add the cost report to.
- Parent
Folder stringToken - Token of the folder's parent folder
- Title string
- Title of the folder
- Token string
- Unique folder identifier
- Workspace
Token string - Workspace token to add the cost report to.
- parent
Folder StringToken - Token of the folder's parent folder
- title String
- Title of the folder
- token String
- Unique folder identifier
- workspace
Token String - Workspace token to add the cost report to.
- parent
Folder stringToken - Token of the folder's parent folder
- title string
- Title of the folder
- token string
- Unique folder identifier
- workspace
Token string - Workspace token to add the cost report to.
- parent_
folder_ strtoken - Token of the folder's parent folder
- title str
- Title of the folder
- token str
- Unique folder identifier
- workspace_
token str - Workspace token to add the cost report to.
- parent
Folder StringToken - Token of the folder's parent folder
- title String
- Title of the folder
- token String
- Unique folder identifier
- workspace
Token String - Workspace token to add the cost report to.
Package Details
- Repository
- vantage lbrlabs/pulumi-vantage
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vantage
Terraform Provider.