Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine
volcengine.bandwidth_package.BandwidthPackages
Explore with Pulumi AI
Use this data source to query detailed information of bandwidth packages
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
import * as volcengine from "@volcengine/pulumi";
const fooBandwidthPackage: volcengine.bandwidth_package.BandwidthPackage[] = [];
for (const range = {value: 0}; range.value < 2; range.value++) {
    fooBandwidthPackage.push(new volcengine.bandwidth_package.BandwidthPackage(`fooBandwidthPackage-${range.value}`, {
        bandwidthPackageName: "acc-test-bp",
        billingType: "PostPaidByBandwidth",
        isp: "BGP",
        description: "acc-test",
        bandwidth: 2,
        protocol: "IPv4",
        securityProtectionTypes: ["AntiDDoS_Enhanced"],
        tags: [{
            key: "k1",
            value: "v1",
        }],
    }));
}
const fooBandwidthPackages = volcengine.bandwidth_package.BandwidthPackagesOutput({
    ids: fooBandwidthPackage.map(__item => __item.id),
});
import pulumi
import pulumi_volcengine as volcengine
foo_bandwidth_package = []
for range in [{"value": i} for i in range(0, 2)]:
    foo_bandwidth_package.append(volcengine.bandwidth_package.BandwidthPackage(f"fooBandwidthPackage-{range['value']}",
        bandwidth_package_name="acc-test-bp",
        billing_type="PostPaidByBandwidth",
        isp="BGP",
        description="acc-test",
        bandwidth=2,
        protocol="IPv4",
        security_protection_types=["AntiDDoS_Enhanced"],
        tags=[volcengine.bandwidth_package.BandwidthPackageTagArgs(
            key="k1",
            value="v1",
        )]))
foo_bandwidth_packages = volcengine.bandwidth_package.bandwidth_packages_output(ids=[__item.id for __item in foo_bandwidth_package])
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/bandwidth_package"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
var fooBandwidthPackage []*bandwidth_package.BandwidthPackage
for index := 0; index < 2; index++ {
    key0 := index
    _ := index
__res, err := bandwidth_package.NewBandwidthPackage(ctx, fmt.Sprintf("fooBandwidthPackage-%v", key0), &bandwidth_package.BandwidthPackageArgs{
BandwidthPackageName: pulumi.String("acc-test-bp"),
BillingType: pulumi.String("PostPaidByBandwidth"),
Isp: pulumi.String("BGP"),
Description: pulumi.String("acc-test"),
Bandwidth: pulumi.Int(2),
Protocol: pulumi.String("IPv4"),
SecurityProtectionTypes: pulumi.StringArray{
pulumi.String("AntiDDoS_Enhanced"),
},
Tags: bandwidth_package.BandwidthPackageTagArray{
&bandwidth_package.BandwidthPackageTagArgs{
Key: pulumi.String("k1"),
Value: pulumi.String("v1"),
},
},
})
if err != nil {
return err
}
fooBandwidthPackage = append(fooBandwidthPackage, __res)
}
_ = bandwidth_package.BandwidthPackagesOutput(ctx, bandwidth_package.BandwidthPackagesOutputArgs{
Ids: %!v(PANIC=Format method: fatal: A failure has occurred: unlowered splat expression @ #-functions-volcengine:bandwidth_package-bandwidthPackages:BandwidthPackages.pp:18,9-34),
}, nil);
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var fooBandwidthPackage = new List<Volcengine.Bandwidth_package.BandwidthPackage>();
    for (var rangeIndex = 0; rangeIndex < 2; rangeIndex++)
    {
        var range = new { Value = rangeIndex };
        fooBandwidthPackage.Add(new Volcengine.Bandwidth_package.BandwidthPackage($"fooBandwidthPackage-{range.Value}", new()
        {
            BandwidthPackageName = "acc-test-bp",
            BillingType = "PostPaidByBandwidth",
            Isp = "BGP",
            Description = "acc-test",
            Bandwidth = 2,
            Protocol = "IPv4",
            SecurityProtectionTypes = new[]
            {
                "AntiDDoS_Enhanced",
            },
            Tags = new[]
            {
                new Volcengine.Bandwidth_package.Inputs.BandwidthPackageTagArgs
                {
                    Key = "k1",
                    Value = "v1",
                },
            },
        }));
    }
    var fooBandwidthPackages = Volcengine.Bandwidth_package.BandwidthPackages.Invoke(new()
    {
        Ids = fooBandwidthPackage.Select(__item => __item.Id).ToList(),
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.bandwidth_package.BandwidthPackage;
import com.pulumi.volcengine.bandwidth_package.BandwidthPackageArgs;
import com.pulumi.volcengine.bandwidth_package.inputs.BandwidthPackageTagArgs;
import com.pulumi.volcengine.bandwidth_package.Bandwidth_packageFunctions;
import com.pulumi.volcengine.bandwidth_package.inputs.BandwidthPackagesArgs;
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) {
        for (var i = 0; i < 2; i++) {
            new BandwidthPackage("fooBandwidthPackage-" + i, BandwidthPackageArgs.builder()            
                .bandwidthPackageName("acc-test-bp")
                .billingType("PostPaidByBandwidth")
                .isp("BGP")
                .description("acc-test")
                .bandwidth(2)
                .protocol("IPv4")
                .securityProtectionTypes("AntiDDoS_Enhanced")
                .tags(BandwidthPackageTagArgs.builder()
                    .key("k1")
                    .value("v1")
                    .build())
                .build());
        
}
        final var fooBandwidthPackages = Bandwidth_packageFunctions.BandwidthPackages(BandwidthPackagesArgs.builder()
            .ids(fooBandwidthPackage.stream().map(element -> element.id()).collect(toList()))
            .build());
    }
}
Coming soon!
Using BandwidthPackages
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 bandwidthPackages(args: BandwidthPackagesArgs, opts?: InvokeOptions): Promise<BandwidthPackagesResult>
function bandwidthPackagesOutput(args: BandwidthPackagesOutputArgs, opts?: InvokeOptions): Output<BandwidthPackagesResult>def bandwidth_packages(bandwidth_package_name: Optional[str] = None,
                       ids: Optional[Sequence[str]] = None,
                       isp: Optional[str] = None,
                       name_regex: Optional[str] = None,
                       output_file: Optional[str] = None,
                       project_name: Optional[str] = None,
                       protocol: Optional[str] = None,
                       security_protection_enabled: Optional[bool] = None,
                       tag_filters: Optional[Sequence[BandwidthPackagesTagFilter]] = None,
                       opts: Optional[InvokeOptions] = None) -> BandwidthPackagesResult
def bandwidth_packages_output(bandwidth_package_name: Optional[pulumi.Input[str]] = None,
                       ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                       isp: Optional[pulumi.Input[str]] = None,
                       name_regex: Optional[pulumi.Input[str]] = None,
                       output_file: Optional[pulumi.Input[str]] = None,
                       project_name: Optional[pulumi.Input[str]] = None,
                       protocol: Optional[pulumi.Input[str]] = None,
                       security_protection_enabled: Optional[pulumi.Input[bool]] = None,
                       tag_filters: Optional[pulumi.Input[Sequence[pulumi.Input[BandwidthPackagesTagFilterArgs]]]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[BandwidthPackagesResult]func BandwidthPackages(ctx *Context, args *BandwidthPackagesArgs, opts ...InvokeOption) (*BandwidthPackagesResult, error)
func BandwidthPackagesOutput(ctx *Context, args *BandwidthPackagesOutputArgs, opts ...InvokeOption) BandwidthPackagesResultOutputpublic static class BandwidthPackages 
{
    public static Task<BandwidthPackagesResult> InvokeAsync(BandwidthPackagesArgs args, InvokeOptions? opts = null)
    public static Output<BandwidthPackagesResult> Invoke(BandwidthPackagesInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<BandwidthPackagesResult> bandwidthPackages(BandwidthPackagesArgs args, InvokeOptions options)
public static Output<BandwidthPackagesResult> bandwidthPackages(BandwidthPackagesArgs args, InvokeOptions options)
fn::invoke:
  function: volcengine:bandwidth_package:BandwidthPackages
  arguments:
    # arguments dictionaryThe following arguments are supported:
- BandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- Ids List<string>
- Shared bandwidth package instance ID to be queried.
- Isp string
- Line types for shared bandwidth packages.
- NameRegex string
- A Name Regex of Resource.
- OutputFile string
- File name where to save data source results.
- ProjectName string
- The project name of the bandwidth package to be queried.
- Protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- SecurityProtection boolEnabled 
- Security protection types for shared bandwidth packages.
- TagFilters List<BandwidthPackages Tag Filter> 
- A list of tags.
- BandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- Ids []string
- Shared bandwidth package instance ID to be queried.
- Isp string
- Line types for shared bandwidth packages.
- NameRegex string
- A Name Regex of Resource.
- OutputFile string
- File name where to save data source results.
- ProjectName string
- The project name of the bandwidth package to be queried.
- Protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- SecurityProtection boolEnabled 
- Security protection types for shared bandwidth packages.
- TagFilters []BandwidthPackages Tag Filter 
- A list of tags.
- bandwidthPackage StringName 
- Shared bandwidth package name to be queried.
- ids List<String>
- Shared bandwidth package instance ID to be queried.
- isp String
- Line types for shared bandwidth packages.
- nameRegex String
- A Name Regex of Resource.
- outputFile String
- File name where to save data source results.
- projectName String
- The project name of the bandwidth package to be queried.
- protocol String
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection BooleanEnabled 
- Security protection types for shared bandwidth packages.
- tagFilters List<BandwidthPackages Tag Filter> 
- A list of tags.
- bandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- ids string[]
- Shared bandwidth package instance ID to be queried.
- isp string
- Line types for shared bandwidth packages.
- nameRegex string
- A Name Regex of Resource.
- outputFile string
- File name where to save data source results.
- projectName string
- The project name of the bandwidth package to be queried.
- protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection booleanEnabled 
- Security protection types for shared bandwidth packages.
- tagFilters BandwidthPackages Tag Filter[] 
- A list of tags.
- bandwidth_package_ strname 
- Shared bandwidth package name to be queried.
- ids Sequence[str]
- Shared bandwidth package instance ID to be queried.
- isp str
- Line types for shared bandwidth packages.
- name_regex str
- A Name Regex of Resource.
- output_file str
- File name where to save data source results.
- project_name str
- The project name of the bandwidth package to be queried.
- protocol str
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- security_protection_ boolenabled 
- Security protection types for shared bandwidth packages.
- tag_filters Sequence[BandwidthPackages Tag Filter] 
- A list of tags.
- bandwidthPackage StringName 
- Shared bandwidth package name to be queried.
- ids List<String>
- Shared bandwidth package instance ID to be queried.
- isp String
- Line types for shared bandwidth packages.
- nameRegex String
- A Name Regex of Resource.
- outputFile String
- File name where to save data source results.
- projectName String
- The project name of the bandwidth package to be queried.
- protocol String
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection BooleanEnabled 
- Security protection types for shared bandwidth packages.
- tagFilters List<Property Map>
- A list of tags.
BandwidthPackages Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Packages
List<BandwidthPackages Package> 
- The collection of query.
- TotalCount int
- The total count of query.
- BandwidthPackage stringName 
- The name of the bandwidth package.
- Ids List<string>
- Isp string
- The line type.
- NameRegex string
- OutputFile string
- ProjectName string
- The project name of the bandwidth package.
- Protocol string
- The protocol of the bandwidth package.
- SecurityProtection boolEnabled 
- TagFilters List<BandwidthPackages Tag Filter> 
- Id string
- The provider-assigned unique ID for this managed resource.
- Packages
[]BandwidthPackages Package 
- The collection of query.
- TotalCount int
- The total count of query.
- BandwidthPackage stringName 
- The name of the bandwidth package.
- Ids []string
- Isp string
- The line type.
- NameRegex string
- OutputFile string
- ProjectName string
- The project name of the bandwidth package.
- Protocol string
- The protocol of the bandwidth package.
- SecurityProtection boolEnabled 
- TagFilters []BandwidthPackages Tag Filter 
- id String
- The provider-assigned unique ID for this managed resource.
- packages
List<BandwidthPackages Package> 
- The collection of query.
- totalCount Integer
- The total count of query.
- bandwidthPackage StringName 
- The name of the bandwidth package.
- ids List<String>
- isp String
- The line type.
- nameRegex String
- outputFile String
- projectName String
- The project name of the bandwidth package.
- protocol String
- The protocol of the bandwidth package.
- securityProtection BooleanEnabled 
- tagFilters List<BandwidthPackages Tag Filter> 
- id string
- The provider-assigned unique ID for this managed resource.
- packages
BandwidthPackages Package[] 
- The collection of query.
- totalCount number
- The total count of query.
- bandwidthPackage stringName 
- The name of the bandwidth package.
- ids string[]
- isp string
- The line type.
- nameRegex string
- outputFile string
- projectName string
- The project name of the bandwidth package.
- protocol string
- The protocol of the bandwidth package.
- securityProtection booleanEnabled 
- tagFilters BandwidthPackages Tag Filter[] 
- id str
- The provider-assigned unique ID for this managed resource.
- packages
Sequence[BandwidthPackages Package] 
- The collection of query.
- total_count int
- The total count of query.
- bandwidth_package_ strname 
- The name of the bandwidth package.
- ids Sequence[str]
- isp str
- The line type.
- name_regex str
- output_file str
- project_name str
- The project name of the bandwidth package.
- protocol str
- The protocol of the bandwidth package.
- security_protection_ boolenabled 
- tag_filters Sequence[BandwidthPackages Tag Filter] 
- id String
- The provider-assigned unique ID for this managed resource.
- packages List<Property Map>
- The collection of query.
- totalCount Number
- The total count of query.
- bandwidthPackage StringName 
- The name of the bandwidth package.
- ids List<String>
- isp String
- The line type.
- nameRegex String
- outputFile String
- projectName String
- The project name of the bandwidth package.
- protocol String
- The protocol of the bandwidth package.
- securityProtection BooleanEnabled 
- tagFilters List<Property Map>
Supporting Types
BandwidthPackagesPackage  
- Bandwidth int
- The bandwidth of the bandwidth package.
- BandwidthPackage stringId 
- The id of the bandwidth package.
- BandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- BillingType string
- The billing type of the bandwidth package.
- BusinessStatus string
- The business status of the bandwidth package.
- CreationTime string
- The creation time of the bandwidth package.
- DeletedTime string
- The deleted time of the bandwidth package.
- EipAddresses List<BandwidthPackages Package Eip Address> 
- List of public IP information included in the shared bandwidth package.
- ExpiredTime string
- The expiration time of the bandwidth package.
- Id string
- The id of the bandwidth package.
- Isp string
- Line types for shared bandwidth packages.
- OverdueTime string
- The overdue time of the bandwidth package.
- ProjectName string
- The project name of the bandwidth package to be queried.
- Protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- SecurityProtection List<string>Types 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- Status string
- The status of the bandwidth package.
- 
List<BandwidthPackages Package Tag> 
- Tags.
- UpdateTime string
- The update time of the bandwidth package.
- Bandwidth int
- The bandwidth of the bandwidth package.
- BandwidthPackage stringId 
- The id of the bandwidth package.
- BandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- BillingType string
- The billing type of the bandwidth package.
- BusinessStatus string
- The business status of the bandwidth package.
- CreationTime string
- The creation time of the bandwidth package.
- DeletedTime string
- The deleted time of the bandwidth package.
- EipAddresses []BandwidthPackages Package Eip Address 
- List of public IP information included in the shared bandwidth package.
- ExpiredTime string
- The expiration time of the bandwidth package.
- Id string
- The id of the bandwidth package.
- Isp string
- Line types for shared bandwidth packages.
- OverdueTime string
- The overdue time of the bandwidth package.
- ProjectName string
- The project name of the bandwidth package to be queried.
- Protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- SecurityProtection []stringTypes 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- Status string
- The status of the bandwidth package.
- 
[]BandwidthPackages Package Tag 
- Tags.
- UpdateTime string
- The update time of the bandwidth package.
- bandwidth Integer
- The bandwidth of the bandwidth package.
- bandwidthPackage StringId 
- The id of the bandwidth package.
- bandwidthPackage StringName 
- Shared bandwidth package name to be queried.
- billingType String
- The billing type of the bandwidth package.
- businessStatus String
- The business status of the bandwidth package.
- creationTime String
- The creation time of the bandwidth package.
- deletedTime String
- The deleted time of the bandwidth package.
- eipAddresses List<BandwidthPackages Package Eip Address> 
- List of public IP information included in the shared bandwidth package.
- expiredTime String
- The expiration time of the bandwidth package.
- id String
- The id of the bandwidth package.
- isp String
- Line types for shared bandwidth packages.
- overdueTime String
- The overdue time of the bandwidth package.
- projectName String
- The project name of the bandwidth package to be queried.
- protocol String
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection List<String>Types 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- status String
- The status of the bandwidth package.
- 
List<BandwidthPackages Package Tag> 
- Tags.
- updateTime String
- The update time of the bandwidth package.
- bandwidth number
- The bandwidth of the bandwidth package.
- bandwidthPackage stringId 
- The id of the bandwidth package.
- bandwidthPackage stringName 
- Shared bandwidth package name to be queried.
- billingType string
- The billing type of the bandwidth package.
- businessStatus string
- The business status of the bandwidth package.
- creationTime string
- The creation time of the bandwidth package.
- deletedTime string
- The deleted time of the bandwidth package.
- eipAddresses BandwidthPackages Package Eip Address[] 
- List of public IP information included in the shared bandwidth package.
- expiredTime string
- The expiration time of the bandwidth package.
- id string
- The id of the bandwidth package.
- isp string
- Line types for shared bandwidth packages.
- overdueTime string
- The overdue time of the bandwidth package.
- projectName string
- The project name of the bandwidth package to be queried.
- protocol string
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection string[]Types 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- status string
- The status of the bandwidth package.
- 
BandwidthPackages Package Tag[] 
- Tags.
- updateTime string
- The update time of the bandwidth package.
- bandwidth int
- The bandwidth of the bandwidth package.
- bandwidth_package_ strid 
- The id of the bandwidth package.
- bandwidth_package_ strname 
- Shared bandwidth package name to be queried.
- billing_type str
- The billing type of the bandwidth package.
- business_status str
- The business status of the bandwidth package.
- creation_time str
- The creation time of the bandwidth package.
- deleted_time str
- The deleted time of the bandwidth package.
- eip_addresses Sequence[BandwidthPackages Package Eip Address] 
- List of public IP information included in the shared bandwidth package.
- expired_time str
- The expiration time of the bandwidth package.
- id str
- The id of the bandwidth package.
- isp str
- Line types for shared bandwidth packages.
- overdue_time str
- The overdue time of the bandwidth package.
- project_name str
- The project name of the bandwidth package to be queried.
- protocol str
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- security_protection_ Sequence[str]types 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- status str
- The status of the bandwidth package.
- 
Sequence[BandwidthPackages Package Tag] 
- Tags.
- update_time str
- The update time of the bandwidth package.
- bandwidth Number
- The bandwidth of the bandwidth package.
- bandwidthPackage StringId 
- The id of the bandwidth package.
- bandwidthPackage StringName 
- Shared bandwidth package name to be queried.
- billingType String
- The billing type of the bandwidth package.
- businessStatus String
- The business status of the bandwidth package.
- creationTime String
- The creation time of the bandwidth package.
- deletedTime String
- The deleted time of the bandwidth package.
- eipAddresses List<Property Map>
- List of public IP information included in the shared bandwidth package.
- expiredTime String
- The expiration time of the bandwidth package.
- id String
- The id of the bandwidth package.
- isp String
- Line types for shared bandwidth packages.
- overdueTime String
- The overdue time of the bandwidth package.
- projectName String
- The project name of the bandwidth package to be queried.
- protocol String
- The IP protocol values for shared bandwidth packages are as follows: IPv4: IPv4 protocol.IPv6: IPv6 protocol.
- securityProtection List<String>Types 
- Security protection types for shared bandwidth packages. Parameter - N: Indicates the number of security protection types, currently only supports taking 1. Value: AntiDDoS_Enhanced.
- status String
- The status of the bandwidth package.
- List<Property Map>
- Tags.
- updateTime String
- The update time of the bandwidth package.
BandwidthPackagesPackageEipAddress    
- AllocationId string
- The id of the eip.
- EipAddress string
- The eip address.
- AllocationId string
- The id of the eip.
- EipAddress string
- The eip address.
- allocationId String
- The id of the eip.
- eipAddress String
- The eip address.
- allocationId string
- The id of the eip.
- eipAddress string
- The eip address.
- allocation_id str
- The id of the eip.
- eip_address str
- The eip address.
- allocationId String
- The id of the eip.
- eipAddress String
- The eip address.
BandwidthPackagesPackageTag   
BandwidthPackagesTagFilter   
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the volcengineTerraform Provider.