alicloud.resourcemanager.getFolders
Explore with Pulumi AI
This data source provides the resource manager folders of the current Alibaba Cloud user.
NOTE: Available in 1.84.0+.
NOTE: You can view only the information of the first-level child folders of the specified folder.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var example = AliCloud.ResourceManager.GetFolders.Invoke(new()
{
NameRegex = "tftest",
});
return new Dictionary<string, object?>
{
["firstFolderId"] = example.Apply(getFoldersResult => getFoldersResult.Folders[0]?.Id),
};
});
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := resourcemanager.GetFolders(ctx, &resourcemanager.GetFoldersArgs{
NameRegex: pulumi.StringRef("tftest"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstFolderId", example.Folders[0].Id)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetFoldersArgs;
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) {
final var example = ResourcemanagerFunctions.getFolders(GetFoldersArgs.builder()
.nameRegex("tftest")
.build());
ctx.export("firstFolderId", example.applyValue(getFoldersResult -> getFoldersResult.folders()[0].id()));
}
}
import pulumi
import pulumi_alicloud as alicloud
example = alicloud.resourcemanager.get_folders(name_regex="tftest")
pulumi.export("firstFolderId", example.folders[0].id)
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const example = alicloud.resourcemanager.getFolders({
nameRegex: "tftest",
});
export const firstFolderId = example.then(example => example.folders?.[0]?.id);
variables:
example:
fn::invoke:
Function: alicloud:resourcemanager:getFolders
Arguments:
nameRegex: tftest
outputs:
firstFolderId: ${example.folders[0].id}
Using getFolders
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 getFolders(args: GetFoldersArgs, opts?: InvokeOptions): Promise<GetFoldersResult>
function getFoldersOutput(args: GetFoldersOutputArgs, opts?: InvokeOptions): Output<GetFoldersResult>
def get_folders(enable_details: Optional[bool] = None,
ids: Optional[Sequence[str]] = None,
name_regex: Optional[str] = None,
output_file: Optional[str] = None,
parent_folder_id: Optional[str] = None,
query_keyword: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetFoldersResult
def get_folders_output(enable_details: Optional[pulumi.Input[bool]] = None,
ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
name_regex: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
parent_folder_id: Optional[pulumi.Input[str]] = None,
query_keyword: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFoldersResult]
func GetFolders(ctx *Context, args *GetFoldersArgs, opts ...InvokeOption) (*GetFoldersResult, error)
func GetFoldersOutput(ctx *Context, args *GetFoldersOutputArgs, opts ...InvokeOption) GetFoldersResultOutput
> Note: This function is named GetFolders
in the Go SDK.
public static class GetFolders
{
public static Task<GetFoldersResult> InvokeAsync(GetFoldersArgs args, InvokeOptions? opts = null)
public static Output<GetFoldersResult> Invoke(GetFoldersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetFoldersResult> getFolders(GetFoldersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: alicloud:resourcemanager/getFolders:getFolders
arguments:
# arguments dictionary
The following arguments are supported:
- Enable
Details bool Default to
false
. Set it to true can output more details.- Ids List<string>
A list of resource manager folders IDs.
- Name
Regex string A regex string to filter results by folder name.
- Output
File string File name where to save data source results (after running
pulumi preview
).- Parent
Folder stringId The ID of the parent folder.
- Query
Keyword string The query keyword.
- Enable
Details bool Default to
false
. Set it to true can output more details.- Ids []string
A list of resource manager folders IDs.
- Name
Regex string A regex string to filter results by folder name.
- Output
File string File name where to save data source results (after running
pulumi preview
).- Parent
Folder stringId The ID of the parent folder.
- Query
Keyword string The query keyword.
- enable
Details Boolean Default to
false
. Set it to true can output more details.- ids List<String>
A list of resource manager folders IDs.
- name
Regex String A regex string to filter results by folder name.
- output
File String File name where to save data source results (after running
pulumi preview
).- parent
Folder StringId The ID of the parent folder.
- query
Keyword String The query keyword.
- enable
Details boolean Default to
false
. Set it to true can output more details.- ids string[]
A list of resource manager folders IDs.
- name
Regex string A regex string to filter results by folder name.
- output
File string File name where to save data source results (after running
pulumi preview
).- parent
Folder stringId The ID of the parent folder.
- query
Keyword string The query keyword.
- enable_
details bool Default to
false
. Set it to true can output more details.- ids Sequence[str]
A list of resource manager folders IDs.
- name_
regex str A regex string to filter results by folder name.
- output_
file str File name where to save data source results (after running
pulumi preview
).- parent_
folder_ strid The ID of the parent folder.
- query_
keyword str The query keyword.
- enable
Details Boolean Default to
false
. Set it to true can output more details.- ids List<String>
A list of resource manager folders IDs.
- name
Regex String A regex string to filter results by folder name.
- output
File String File name where to save data source results (after running
pulumi preview
).- parent
Folder StringId The ID of the parent folder.
- query
Keyword String The query keyword.
getFolders Result
The following output properties are available:
- Folders
List<Pulumi.
Ali Cloud. Resource Manager. Outputs. Get Folders Folder> A list of folders. Each element contains the following attributes:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids List<string>
A list of folder IDs.
- Names List<string>
A list of folder names.
- Enable
Details bool - Name
Regex string - Output
File string - Parent
Folder stringId (Available in v1.114.0+)The ID of the parent folder.
- Query
Keyword string
- Folders
[]Get
Folders Folder A list of folders. Each element contains the following attributes:
- Id string
The provider-assigned unique ID for this managed resource.
- Ids []string
A list of folder IDs.
- Names []string
A list of folder names.
- Enable
Details bool - Name
Regex string - Output
File string - Parent
Folder stringId (Available in v1.114.0+)The ID of the parent folder.
- Query
Keyword string
- folders
List<Get
Folders Folder> A list of folders. Each element contains the following attributes:
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
A list of folder IDs.
- names List<String>
A list of folder names.
- enable
Details Boolean - name
Regex String - output
File String - parent
Folder StringId (Available in v1.114.0+)The ID of the parent folder.
- query
Keyword String
- folders
Get
Folders Folder[] A list of folders. Each element contains the following attributes:
- id string
The provider-assigned unique ID for this managed resource.
- ids string[]
A list of folder IDs.
- names string[]
A list of folder names.
- enable
Details boolean - name
Regex string - output
File string - parent
Folder stringId (Available in v1.114.0+)The ID of the parent folder.
- query
Keyword string
- folders
Sequence[Get
Folders Folder] A list of folders. Each element contains the following attributes:
- id str
The provider-assigned unique ID for this managed resource.
- ids Sequence[str]
A list of folder IDs.
- names Sequence[str]
A list of folder names.
- enable_
details bool - name_
regex str - output_
file str - parent_
folder_ strid (Available in v1.114.0+)The ID of the parent folder.
- query_
keyword str
- folders List<Property Map>
A list of folders. Each element contains the following attributes:
- id String
The provider-assigned unique ID for this managed resource.
- ids List<String>
A list of folder IDs.
- names List<String>
A list of folder names.
- enable
Details Boolean - name
Regex String - output
File String - parent
Folder StringId (Available in v1.114.0+)The ID of the parent folder.
- query
Keyword String
Supporting Types
GetFoldersFolder
- Folder
Id string The ID of the folder.
- Folder
Name string The name of the folder.
- Id string
The ID of the folder.
- Parent
Folder stringId The ID of the parent folder.
- Folder
Id string The ID of the folder.
- Folder
Name string The name of the folder.
- Id string
The ID of the folder.
- Parent
Folder stringId The ID of the parent folder.
- folder
Id String The ID of the folder.
- folder
Name String The name of the folder.
- id String
The ID of the folder.
- parent
Folder StringId The ID of the parent folder.
- folder
Id string The ID of the folder.
- folder
Name string The name of the folder.
- id string
The ID of the folder.
- parent
Folder stringId The ID of the parent folder.
- folder_
id str The ID of the folder.
- folder_
name str The name of the folder.
- id str
The ID of the folder.
- parent_
folder_ strid The ID of the parent folder.
- folder
Id String The ID of the folder.
- folder
Name String The name of the folder.
- id String
The ID of the folder.
- parent
Folder StringId The ID of the parent folder.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
alicloud
Terraform Provider.