Volcengine v0.0.27 published on Tuesday, Dec 10, 2024 by Volcengine
volcengine.cloudfs.Quotas
Explore with Pulumi AI
Use this data source to query detailed information of cloudfs quotas
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.cloudfs.Quotas({});
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.cloudfs.quotas()
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/cloudfs"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudfs.Quotas(ctx, nil, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() => 
{
    var @default = Volcengine.Cloudfs.Quotas.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.cloudfs.CloudfsFunctions;
import com.pulumi.volcengine.cloudfs.inputs.QuotasArgs;
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 default = CloudfsFunctions.Quotas();
    }
}
variables:
  default:
    fn::invoke:
      Function: volcengine:cloudfs:Quotas
      Arguments: {}
Using Quotas
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 quotas(args: QuotasArgs, opts?: InvokeOptions): Promise<QuotasResult>
function quotasOutput(args: QuotasOutputArgs, opts?: InvokeOptions): Output<QuotasResult>def quotas(output_file: Optional[str] = None,
           opts: Optional[InvokeOptions] = None) -> QuotasResult
def quotas_output(output_file: Optional[pulumi.Input[str]] = None,
           opts: Optional[InvokeOptions] = None) -> Output[QuotasResult]func Quotas(ctx *Context, args *QuotasArgs, opts ...InvokeOption) (*QuotasResult, error)
func QuotasOutput(ctx *Context, args *QuotasOutputArgs, opts ...InvokeOption) QuotasResultOutputpublic static class Quotas 
{
    public static Task<QuotasResult> InvokeAsync(QuotasArgs args, InvokeOptions? opts = null)
    public static Output<QuotasResult> Invoke(QuotasInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<QuotasResult> quotas(QuotasArgs args, InvokeOptions options)
public static Output<QuotasResult> quotas(QuotasArgs args, InvokeOptions options)
fn::invoke:
  function: volcengine:cloudfs:Quotas
  arguments:
    # arguments dictionaryThe following arguments are supported:
- Output
File string - File name where to save data source results.
 
- Output
File string - File name where to save data source results.
 
- output
File String - File name where to save data source results.
 
- output
File string - File name where to save data source results.
 
- output_
file str - File name where to save data source results.
 
- output
File String - File name where to save data source results.
 
Quotas Result
The following output properties are available:
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Quotas
List<Quotas
Quota>  - The collection of query.
 - Total
Count int - The total count of cloud fs quota query.
 - Output
File string 
- Id string
 - The provider-assigned unique ID for this managed resource.
 - Quotas
[]Quotas
Quota  - The collection of query.
 - Total
Count int - The total count of cloud fs quota query.
 - Output
File string 
- id String
 - The provider-assigned unique ID for this managed resource.
 - quotas
List<Quotas
Quota>  - The collection of query.
 - total
Count Integer - The total count of cloud fs quota query.
 - output
File String 
- id string
 - The provider-assigned unique ID for this managed resource.
 - quotas
Quotas
Quota[]  - The collection of query.
 - total
Count number - The total count of cloud fs quota query.
 - output
File string 
- id str
 - The provider-assigned unique ID for this managed resource.
 - quotas
Sequence[Quotas
Quota]  - The collection of query.
 - total_
count int - The total count of cloud fs quota query.
 - output_
file str 
- id String
 - The provider-assigned unique ID for this managed resource.
 - quotas List<Property Map>
 - The collection of query.
 - total
Count Number - The total count of cloud fs quota query.
 - output
File String 
Supporting Types
QuotasQuota 
- Account
Id int - The ID of account.
 - Fs
Count int - The count of cloud fs.
 - Fs
Quota int - The quota of cloud fs.
 - Quota
Enough bool - Whether is enough of cloud fs.
 
- Account
Id int - The ID of account.
 - Fs
Count int - The count of cloud fs.
 - Fs
Quota int - The quota of cloud fs.
 - Quota
Enough bool - Whether is enough of cloud fs.
 
- account
Id Integer - The ID of account.
 - fs
Count Integer - The count of cloud fs.
 - fs
Quota Integer - The quota of cloud fs.
 - quota
Enough Boolean - Whether is enough of cloud fs.
 
- account
Id number - The ID of account.
 - fs
Count number - The count of cloud fs.
 - fs
Quota number - The quota of cloud fs.
 - quota
Enough boolean - Whether is enough of cloud fs.
 
- account_
id int - The ID of account.
 - fs_
count int - The count of cloud fs.
 - fs_
quota int - The quota of cloud fs.
 - quota_
enough bool - Whether is enough of cloud fs.
 
- account
Id Number - The ID of account.
 - fs
Count Number - The count of cloud fs.
 - fs
Quota Number - The quota of cloud fs.
 - quota
Enough Boolean - Whether is enough of cloud fs.
 
Package Details
- Repository
 - volcengine volcengine/pulumi-volcengine
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
volcengineTerraform Provider.