Volcengine v0.0.24 published on Tuesday, Jun 25, 2024 by Volcengine
volcengine.escloud.Zones
Explore with Pulumi AI
Use this data source to query detailed information of escloud zones
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var @default = Volcengine.Escloud.Zones.Invoke(new()
{
RegionId = "xxx",
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/escloud"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := escloud.Zones(ctx, &escloud.ZonesArgs{
RegionId: "xxx",
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.escloud.EscloudFunctions;
import com.pulumi.volcengine.escloud.inputs.ZonesArgs;
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 = EscloudFunctions.Zones(ZonesArgs.builder()
.regionId("xxx")
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
default = volcengine.escloud.zones(region_id="xxx")
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@pulumi/volcengine";
const default = volcengine.escloud.Zones({
regionId: "xxx",
});
variables:
default:
fn::invoke:
Function: volcengine:escloud:Zones
Arguments:
regionId: xxx
Using Zones
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 zones(args: ZonesArgs, opts?: InvokeOptions): Promise<ZonesResult>
function zonesOutput(args: ZonesOutputArgs, opts?: InvokeOptions): Output<ZonesResult>
def zones(output_file: Optional[str] = None,
region_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> ZonesResult
def zones_output(output_file: Optional[pulumi.Input[str]] = None,
region_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[ZonesResult]
func Zones(ctx *Context, args *ZonesArgs, opts ...InvokeOption) (*ZonesResult, error)
func ZonesOutput(ctx *Context, args *ZonesOutputArgs, opts ...InvokeOption) ZonesResultOutput
public static class Zones
{
public static Task<ZonesResult> InvokeAsync(ZonesArgs args, InvokeOptions? opts = null)
public static Output<ZonesResult> Invoke(ZonesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<ZonesResult> zones(ZonesArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: volcengine:escloud:Zones
arguments:
# arguments dictionary
The following arguments are supported:
- Region
Id string - The Id of Region.
- Output
File string - File name where to save data source results.
- Region
Id string - The Id of Region.
- Output
File string - File name where to save data source results.
- region
Id String - The Id of Region.
- output
File String - File name where to save data source results.
- region
Id string - The Id of Region.
- output
File string - File name where to save data source results.
- region_
id str - The Id of Region.
- output_
file str - File name where to save data source results.
- region
Id String - The Id of Region.
- output
File String - File name where to save data source results.
Zones Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - Total
Count int - The total count of zone query.
- Zones
List<Zones
Zone> - The collection of zone query.
- Output
File string
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - Total
Count int - The total count of zone query.
- Zones
[]Zones
Zone - The collection of zone query.
- Output
File string
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - total
Count Integer - The total count of zone query.
- zones
List<Zones
Zone> - The collection of zone query.
- output
File String
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id string - total
Count number - The total count of zone query.
- zones
Zones
Zone[] - The collection of zone query.
- output
File string
- id str
- The provider-assigned unique ID for this managed resource.
- region_
id str - total_
count int - The total count of zone query.
- zones
Sequence[Zones
Zone] - The collection of zone query.
- output_
file str
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - total
Count Number - The total count of zone query.
- zones List<Property Map>
- The collection of zone query.
- output
File String
Supporting Types
ZonesZone
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.