1. Packages
  2. Volcengine
  3. API Docs
  4. nas
  5. FileSystems
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

volcengine.nas.FileSystems

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine

    Use this data source to query detailed information of nas file systems

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var fooZones = Volcengine.Nas.Zones.Invoke();
    
        var fooFileSystem = new List<Volcengine.Nas.FileSystem>();
        for (var rangeIndex = 0; rangeIndex < 3; rangeIndex++)
        {
            var range = new { Value = rangeIndex };
            fooFileSystem.Add(new Volcengine.Nas.FileSystem($"fooFileSystem-{range.Value}", new()
            {
                FileSystemName = $"acc-test-fs-{range.Value}",
                Description = "acc-test",
                ZoneId = fooZones.Apply(zonesResult => zonesResult.Zones[0]?.Id),
                Capacity = 103,
                ProjectName = "default",
                Tags = new[]
                {
                    new Volcengine.Nas.Inputs.FileSystemTagArgs
                    {
                        Key = "k1",
                        Value = "v1",
                    },
                },
            }));
        }
        var fooFileSystems = Volcengine.Nas.FileSystems.Invoke(new()
        {
            Ids = fooFileSystem.Select(__item => __item.Id).ToList(),
        });
    
    });
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/nas"
    )
    func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
    fooZones, err := nas.Zones(ctx, nil, nil);
    if err != nil {
    return err
    }
    var fooFileSystem []*nas.FileSystem
    for index := 0; index < 3; index++ {
        key0 := index
        val0 := index
    __res, err := nas.NewFileSystem(ctx, fmt.Sprintf("fooFileSystem-%v", key0), &nas.FileSystemArgs{
    FileSystemName: pulumi.String(fmt.Sprintf("acc-test-fs-%v", val0)),
    Description: pulumi.String("acc-test"),
    ZoneId: *pulumi.String(fooZones.Zones[0].Id),
    Capacity: pulumi.Int(103),
    ProjectName: pulumi.String("default"),
    Tags: nas.FileSystemTagArray{
    &nas.FileSystemTagArgs{
    Key: pulumi.String("k1"),
    Value: pulumi.String("v1"),
    },
    },
    })
    if err != nil {
    return err
    }
    fooFileSystem = append(fooFileSystem, __res)
    }
    _ = nas.FileSystemsOutput(ctx, nas.FileSystemsOutputArgs{
    Ids: %!v(PANIC=Format method: fatal: A failure has occurred: unlowered splat expression @ #-functions-volcengine:nas-fileSystems:FileSystems.pp:18,9-28),
    }, nil);
    return nil
    })
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.nas.NasFunctions;
    import com.pulumi.volcengine.nas.inputs.ZonesArgs;
    import com.pulumi.volcengine.nas.FileSystem;
    import com.pulumi.volcengine.nas.FileSystemArgs;
    import com.pulumi.volcengine.nas.inputs.FileSystemTagArgs;
    import com.pulumi.volcengine.nas.inputs.FileSystemsArgs;
    import com.pulumi.codegen.internal.KeyedValue;
    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 fooZones = NasFunctions.Zones();
    
            for (var i = 0; i < 3; i++) {
                new FileSystem("fooFileSystem-" + i, FileSystemArgs.builder()            
                    .fileSystemName(String.format("acc-test-fs-%s", range.value()))
                    .description("acc-test")
                    .zoneId(fooZones.applyValue(zonesResult -> zonesResult.zones()[0].id()))
                    .capacity(103)
                    .projectName("default")
                    .tags(FileSystemTagArgs.builder()
                        .key("k1")
                        .value("v1")
                        .build())
                    .build());
    
            
    }
            final var fooFileSystems = NasFunctions.FileSystems(FileSystemsArgs.builder()
                .ids(fooFileSystem.stream().map(element -> element.id()).collect(toList()))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo_zones = volcengine.nas.zones()
    foo_file_system = []
    for range in [{"value": i} for i in range(0, 3)]:
        foo_file_system.append(volcengine.nas.FileSystem(f"fooFileSystem-{range['value']}",
            file_system_name=f"acc-test-fs-{range['value']}",
            description="acc-test",
            zone_id=foo_zones.zones[0].id,
            capacity=103,
            project_name="default",
            tags=[volcengine.nas.FileSystemTagArgs(
                key="k1",
                value="v1",
            )]))
    foo_file_systems = volcengine.nas.file_systems_output(ids=[__item.id for __item in foo_file_system])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    import * as volcengine from "@volcengine/pulumi";
    
    const fooZones = volcengine.nas.Zones({});
    const fooFileSystem: volcengine.nas.FileSystem[] = [];
    for (const range = {value: 0}; range.value < 3; range.value++) {
        fooFileSystem.push(new volcengine.nas.FileSystem(`fooFileSystem-${range.value}`, {
            fileSystemName: `acc-test-fs-${range.value}`,
            description: "acc-test",
            zoneId: fooZones.then(fooZones => fooZones.zones?.[0]?.id),
            capacity: 103,
            projectName: "default",
            tags: [{
                key: "k1",
                value: "v1",
            }],
        }));
    }
    const fooFileSystems = volcengine.nas.FileSystemsOutput({
        ids: fooFileSystem.map(__item => __item.id),
    });
    

    Coming soon!

    Using FileSystems

    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 fileSystems(args: FileSystemsArgs, opts?: InvokeOptions): Promise<FileSystemsResult>
    function fileSystemsOutput(args: FileSystemsOutputArgs, opts?: InvokeOptions): Output<FileSystemsResult>
    def file_systems(charge_type: Optional[str] = None,
                     file_system_name: Optional[str] = None,
                     ids: Optional[Sequence[str]] = None,
                     mount_point_id: Optional[str] = None,
                     name_regex: Optional[str] = None,
                     output_file: Optional[str] = None,
                     permission_group_id: Optional[str] = None,
                     project_name: Optional[str] = None,
                     protocol_type: Optional[str] = None,
                     statuses: Optional[Sequence[str]] = None,
                     storage_type: Optional[str] = None,
                     tags: Optional[Sequence[FileSystemsTag]] = None,
                     zone_id: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> FileSystemsResult
    def file_systems_output(charge_type: Optional[pulumi.Input[str]] = None,
                     file_system_name: Optional[pulumi.Input[str]] = None,
                     ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     mount_point_id: Optional[pulumi.Input[str]] = None,
                     name_regex: Optional[pulumi.Input[str]] = None,
                     output_file: Optional[pulumi.Input[str]] = None,
                     permission_group_id: Optional[pulumi.Input[str]] = None,
                     project_name: Optional[pulumi.Input[str]] = None,
                     protocol_type: Optional[pulumi.Input[str]] = None,
                     statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                     storage_type: Optional[pulumi.Input[str]] = None,
                     tags: Optional[pulumi.Input[Sequence[pulumi.Input[FileSystemsTagArgs]]]] = None,
                     zone_id: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[FileSystemsResult]
    func FileSystems(ctx *Context, args *FileSystemsArgs, opts ...InvokeOption) (*FileSystemsResult, error)
    func FileSystemsOutput(ctx *Context, args *FileSystemsOutputArgs, opts ...InvokeOption) FileSystemsResultOutput
    public static class FileSystems 
    {
        public static Task<FileSystemsResult> InvokeAsync(FileSystemsArgs args, InvokeOptions? opts = null)
        public static Output<FileSystemsResult> Invoke(FileSystemsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<FileSystemsResult> fileSystems(FileSystemsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: volcengine:nas:FileSystems
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ChargeType string
    The charge type of nas file system.
    FileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    Ids List<string>
    A list of nas file system ids.
    MountPointId string
    The mount point id of nas file system.
    NameRegex string
    A Name Regex of Resource.
    OutputFile string
    File name where to save data source results.
    PermissionGroupId string
    The permission group id of nas file system.
    ProjectName string
    The project name of nas file system.
    ProtocolType string
    The protocol type of nas file system.
    Statuses List<string>
    The status of nas file system.
    StorageType string
    The storage type of nas file system.
    Tags List<FileSystemsTag>
    Tags.
    ZoneId string
    The zone id of nas file system.
    ChargeType string
    The charge type of nas file system.
    FileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    Ids []string
    A list of nas file system ids.
    MountPointId string
    The mount point id of nas file system.
    NameRegex string
    A Name Regex of Resource.
    OutputFile string
    File name where to save data source results.
    PermissionGroupId string
    The permission group id of nas file system.
    ProjectName string
    The project name of nas file system.
    ProtocolType string
    The protocol type of nas file system.
    Statuses []string
    The status of nas file system.
    StorageType string
    The storage type of nas file system.
    Tags []FileSystemsTag
    Tags.
    ZoneId string
    The zone id of nas file system.
    chargeType String
    The charge type of nas file system.
    fileSystemName String
    The name of nas file system. This field supports fuzzy queries.
    ids List<String>
    A list of nas file system ids.
    mountPointId String
    The mount point id of nas file system.
    nameRegex String
    A Name Regex of Resource.
    outputFile String
    File name where to save data source results.
    permissionGroupId String
    The permission group id of nas file system.
    projectName String
    The project name of nas file system.
    protocolType String
    The protocol type of nas file system.
    statuses List<String>
    The status of nas file system.
    storageType String
    The storage type of nas file system.
    tags List<FileSystemsTag>
    Tags.
    zoneId String
    The zone id of nas file system.
    chargeType string
    The charge type of nas file system.
    fileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    ids string[]
    A list of nas file system ids.
    mountPointId string
    The mount point id of nas file system.
    nameRegex string
    A Name Regex of Resource.
    outputFile string
    File name where to save data source results.
    permissionGroupId string
    The permission group id of nas file system.
    projectName string
    The project name of nas file system.
    protocolType string
    The protocol type of nas file system.
    statuses string[]
    The status of nas file system.
    storageType string
    The storage type of nas file system.
    tags FileSystemsTag[]
    Tags.
    zoneId string
    The zone id of nas file system.
    charge_type str
    The charge type of nas file system.
    file_system_name str
    The name of nas file system. This field supports fuzzy queries.
    ids Sequence[str]
    A list of nas file system ids.
    mount_point_id str
    The mount point id of nas file system.
    name_regex str
    A Name Regex of Resource.
    output_file str
    File name where to save data source results.
    permission_group_id str
    The permission group id of nas file system.
    project_name str
    The project name of nas file system.
    protocol_type str
    The protocol type of nas file system.
    statuses Sequence[str]
    The status of nas file system.
    storage_type str
    The storage type of nas file system.
    tags Sequence[FileSystemsTag]
    Tags.
    zone_id str
    The zone id of nas file system.
    chargeType String
    The charge type of nas file system.
    fileSystemName String
    The name of nas file system. This field supports fuzzy queries.
    ids List<String>
    A list of nas file system ids.
    mountPointId String
    The mount point id of nas file system.
    nameRegex String
    A Name Regex of Resource.
    outputFile String
    File name where to save data source results.
    permissionGroupId String
    The permission group id of nas file system.
    projectName String
    The project name of nas file system.
    protocolType String
    The protocol type of nas file system.
    statuses List<String>
    The status of nas file system.
    storageType String
    The storage type of nas file system.
    tags List<Property Map>
    Tags.
    zoneId String
    The zone id of nas file system.

    FileSystems Result

    The following output properties are available:

    FileSystems List<FileSystemsFileSystem>
    The collection of query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    ChargeType string
    The charge type of the nas file system.
    FileSystemName string
    The name of the nas file system.
    Ids List<string>
    MountPointId string
    NameRegex string
    OutputFile string
    PermissionGroupId string
    ProjectName string
    The project name of the nas file system.
    ProtocolType string
    The protocol type of the nas file system.
    Statuses List<string>
    The status of the nas file system.
    StorageType string
    The storage type of the nas file system.
    Tags List<FileSystemsTag>
    Tags of the nas file system.
    ZoneId string
    The zone id of the nas file system.
    FileSystems []FileSystemsFileSystem
    The collection of query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    ChargeType string
    The charge type of the nas file system.
    FileSystemName string
    The name of the nas file system.
    Ids []string
    MountPointId string
    NameRegex string
    OutputFile string
    PermissionGroupId string
    ProjectName string
    The project name of the nas file system.
    ProtocolType string
    The protocol type of the nas file system.
    Statuses []string
    The status of the nas file system.
    StorageType string
    The storage type of the nas file system.
    Tags []FileSystemsTag
    Tags of the nas file system.
    ZoneId string
    The zone id of the nas file system.
    fileSystems List<FileSystemsFileSystem>
    The collection of query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of query.
    chargeType String
    The charge type of the nas file system.
    fileSystemName String
    The name of the nas file system.
    ids List<String>
    mountPointId String
    nameRegex String
    outputFile String
    permissionGroupId String
    projectName String
    The project name of the nas file system.
    protocolType String
    The protocol type of the nas file system.
    statuses List<String>
    The status of the nas file system.
    storageType String
    The storage type of the nas file system.
    tags List<FileSystemsTag>
    Tags of the nas file system.
    zoneId String
    The zone id of the nas file system.
    fileSystems FileSystemsFileSystem[]
    The collection of query.
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of query.
    chargeType string
    The charge type of the nas file system.
    fileSystemName string
    The name of the nas file system.
    ids string[]
    mountPointId string
    nameRegex string
    outputFile string
    permissionGroupId string
    projectName string
    The project name of the nas file system.
    protocolType string
    The protocol type of the nas file system.
    statuses string[]
    The status of the nas file system.
    storageType string
    The storage type of the nas file system.
    tags FileSystemsTag[]
    Tags of the nas file system.
    zoneId string
    The zone id of the nas file system.
    file_systems Sequence[FileSystemsFileSystem]
    The collection of query.
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of query.
    charge_type str
    The charge type of the nas file system.
    file_system_name str
    The name of the nas file system.
    ids Sequence[str]
    mount_point_id str
    name_regex str
    output_file str
    permission_group_id str
    project_name str
    The project name of the nas file system.
    protocol_type str
    The protocol type of the nas file system.
    statuses Sequence[str]
    The status of the nas file system.
    storage_type str
    The storage type of the nas file system.
    tags Sequence[FileSystemsTag]
    Tags of the nas file system.
    zone_id str
    The zone id of the nas file system.
    fileSystems List<Property Map>
    The collection of query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of query.
    chargeType String
    The charge type of the nas file system.
    fileSystemName String
    The name of the nas file system.
    ids List<String>
    mountPointId String
    nameRegex String
    outputFile String
    permissionGroupId String
    projectName String
    The project name of the nas file system.
    protocolType String
    The protocol type of the nas file system.
    statuses List<String>
    The status of the nas file system.
    storageType String
    The storage type of the nas file system.
    tags List<Property Map>
    Tags of the nas file system.
    zoneId String
    The zone id of the nas file system.

    Supporting Types

    FileSystemsFileSystem

    Capacities List<FileSystemsFileSystemCapacity>
    The capacity of the nas file system.
    ChargeType string
    The charge type of nas file system.
    CreateTime string
    The create time of the nas file system.
    Description string
    The description of the nas file system.
    FileSystemId string
    The id of the nas file system.
    FileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    FileSystemType string
    The type of the nas file system.
    Id string
    The id of the nas file system.
    ProjectName string
    The project name of nas file system.
    ProtocolType string
    The protocol type of nas file system.
    RegionId string
    The region id of the nas file system.
    SnapshotCount int
    The snapshot count of the nas file system.
    Status string
    The status of nas file system.
    StorageType string
    The storage type of nas file system.
    Tags List<FileSystemsFileSystemTag>
    Tags.
    UpdateTime string
    The update time of the nas file system.
    Version string
    The version of the nas file system.
    ZoneId string
    The zone id of nas file system.
    ZoneName string
    The zone name of the nas file system.
    Capacities []FileSystemsFileSystemCapacity
    The capacity of the nas file system.
    ChargeType string
    The charge type of nas file system.
    CreateTime string
    The create time of the nas file system.
    Description string
    The description of the nas file system.
    FileSystemId string
    The id of the nas file system.
    FileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    FileSystemType string
    The type of the nas file system.
    Id string
    The id of the nas file system.
    ProjectName string
    The project name of nas file system.
    ProtocolType string
    The protocol type of nas file system.
    RegionId string
    The region id of the nas file system.
    SnapshotCount int
    The snapshot count of the nas file system.
    Status string
    The status of nas file system.
    StorageType string
    The storage type of nas file system.
    Tags []FileSystemsFileSystemTag
    Tags.
    UpdateTime string
    The update time of the nas file system.
    Version string
    The version of the nas file system.
    ZoneId string
    The zone id of nas file system.
    ZoneName string
    The zone name of the nas file system.
    capacities List<FileSystemsFileSystemCapacity>
    The capacity of the nas file system.
    chargeType String
    The charge type of nas file system.
    createTime String
    The create time of the nas file system.
    description String
    The description of the nas file system.
    fileSystemId String
    The id of the nas file system.
    fileSystemName String
    The name of nas file system. This field supports fuzzy queries.
    fileSystemType String
    The type of the nas file system.
    id String
    The id of the nas file system.
    projectName String
    The project name of nas file system.
    protocolType String
    The protocol type of nas file system.
    regionId String
    The region id of the nas file system.
    snapshotCount Integer
    The snapshot count of the nas file system.
    status String
    The status of nas file system.
    storageType String
    The storage type of nas file system.
    tags List<FileSystemsFileSystemTag>
    Tags.
    updateTime String
    The update time of the nas file system.
    version String
    The version of the nas file system.
    zoneId String
    The zone id of nas file system.
    zoneName String
    The zone name of the nas file system.
    capacities FileSystemsFileSystemCapacity[]
    The capacity of the nas file system.
    chargeType string
    The charge type of nas file system.
    createTime string
    The create time of the nas file system.
    description string
    The description of the nas file system.
    fileSystemId string
    The id of the nas file system.
    fileSystemName string
    The name of nas file system. This field supports fuzzy queries.
    fileSystemType string
    The type of the nas file system.
    id string
    The id of the nas file system.
    projectName string
    The project name of nas file system.
    protocolType string
    The protocol type of nas file system.
    regionId string
    The region id of the nas file system.
    snapshotCount number
    The snapshot count of the nas file system.
    status string
    The status of nas file system.
    storageType string
    The storage type of nas file system.
    tags FileSystemsFileSystemTag[]
    Tags.
    updateTime string
    The update time of the nas file system.
    version string
    The version of the nas file system.
    zoneId string
    The zone id of nas file system.
    zoneName string
    The zone name of the nas file system.
    capacities Sequence[FileSystemsFileSystemCapacity]
    The capacity of the nas file system.
    charge_type str
    The charge type of nas file system.
    create_time str
    The create time of the nas file system.
    description str
    The description of the nas file system.
    file_system_id str
    The id of the nas file system.
    file_system_name str
    The name of nas file system. This field supports fuzzy queries.
    file_system_type str
    The type of the nas file system.
    id str
    The id of the nas file system.
    project_name str
    The project name of nas file system.
    protocol_type str
    The protocol type of nas file system.
    region_id str
    The region id of the nas file system.
    snapshot_count int
    The snapshot count of the nas file system.
    status str
    The status of nas file system.
    storage_type str
    The storage type of nas file system.
    tags Sequence[FileSystemsFileSystemTag]
    Tags.
    update_time str
    The update time of the nas file system.
    version str
    The version of the nas file system.
    zone_id str
    The zone id of nas file system.
    zone_name str
    The zone name of the nas file system.
    capacities List<Property Map>
    The capacity of the nas file system.
    chargeType String
    The charge type of nas file system.
    createTime String
    The create time of the nas file system.
    description String
    The description of the nas file system.
    fileSystemId String
    The id of the nas file system.
    fileSystemName String
    The name of nas file system. This field supports fuzzy queries.
    fileSystemType String
    The type of the nas file system.
    id String
    The id of the nas file system.
    projectName String
    The project name of nas file system.
    protocolType String
    The protocol type of nas file system.
    regionId String
    The region id of the nas file system.
    snapshotCount Number
    The snapshot count of the nas file system.
    status String
    The status of nas file system.
    storageType String
    The storage type of nas file system.
    tags List<Property Map>
    Tags.
    updateTime String
    The update time of the nas file system.
    version String
    The version of the nas file system.
    zoneId String
    The zone id of nas file system.
    zoneName String
    The zone name of the nas file system.

    FileSystemsFileSystemCapacity

    Total int
    The total capacity of the nas file system. Unit: GiB.
    Used int
    The used capacity of the nas file system. Unit: MiB.
    Total int
    The total capacity of the nas file system. Unit: GiB.
    Used int
    The used capacity of the nas file system. Unit: MiB.
    total Integer
    The total capacity of the nas file system. Unit: GiB.
    used Integer
    The used capacity of the nas file system. Unit: MiB.
    total number
    The total capacity of the nas file system. Unit: GiB.
    used number
    The used capacity of the nas file system. Unit: MiB.
    total int
    The total capacity of the nas file system. Unit: GiB.
    used int
    The used capacity of the nas file system. Unit: MiB.
    total Number
    The total capacity of the nas file system. Unit: GiB.
    used Number
    The used capacity of the nas file system. Unit: MiB.

    FileSystemsFileSystemTag

    Key string
    The Key of Tags.
    Type string
    The Type of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Type string
    The Type of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    type String
    The Type of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    type string
    The Type of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    type str
    The Type of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    type String
    The Type of Tags.
    value String
    The Value of Tags.

    FileSystemsTag

    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    Key string
    The Key of Tags.
    Value string
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.
    key string
    The Key of Tags.
    value string
    The Value of Tags.
    key str
    The Key of Tags.
    value str
    The Value of Tags.
    key String
    The Key of Tags.
    value String
    The Value of Tags.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.25 published on Tuesday, Jul 2, 2024 by Volcengine