1. Packages
  2. Volcengine
  3. API Docs
  4. nas
  5. FileSystems
Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

volcengine.nas.FileSystems

Explore with Pulumi AI

Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine

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

Example Usage

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),
});
Copy
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])
Copy
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
})
}
Copy
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(),
    });

});
Copy
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());

    }
}
Copy
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>
Copy
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]
Copy
func FileSystems(ctx *Context, args *FileSystemsArgs, opts ...InvokeOption) (*FileSystemsResult, error)
func FileSystemsOutput(ctx *Context, args *FileSystemsOutputArgs, opts ...InvokeOption) FileSystemsResultOutput
Copy
public static class FileSystems 
{
    public static Task<FileSystemsResult> InvokeAsync(FileSystemsArgs args, InvokeOptions? opts = null)
    public static Output<FileSystemsResult> Invoke(FileSystemsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<FileSystemsResult> fileSystems(FileSystemsArgs args, InvokeOptions options)
public static Output<FileSystemsResult> fileSystems(FileSystemsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: volcengine:nas:FileSystems
  arguments:
    # arguments dictionary
Copy

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

FileSystemsFileSystemCapacity

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

FileSystemsFileSystemTag

Key This property is required. string
The Key of Tags.
Type This property is required. string
The Type of Tags.
Value This property is required. string
The Value of Tags.
Key This property is required. string
The Key of Tags.
Type This property is required. string
The Type of Tags.
Value This property is required. string
The Value of Tags.
key This property is required. String
The Key of Tags.
type This property is required. String
The Type of Tags.
value This property is required. String
The Value of Tags.
key This property is required. string
The Key of Tags.
type This property is required. string
The Type of Tags.
value This property is required. string
The Value of Tags.
key This property is required. str
The Key of Tags.
type This property is required. str
The Type of Tags.
value This property is required. str
The Value of Tags.
key This property is required. String
The Key of Tags.
type This property is required. String
The Type of Tags.
value This property is required. String
The Value of Tags.

FileSystemsTag

Key This property is required. string
The Key of Tags.
Value This property is required. string
The Value of Tags.
Key This property is required. string
The Key of Tags.
Value This property is required. string
The Value of Tags.
key This property is required. String
The Key of Tags.
value This property is required. String
The Value of Tags.
key This property is required. string
The Key of Tags.
value This property is required. string
The Value of Tags.
key This property is required. str
The Key of Tags.
value This property is required. str
The Value of Tags.
key This property is required. String
The Key of Tags.
value This property is required. 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 v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine