Viewing docs for gcore 2.0.0-alpha.4
published on Friday, Apr 17, 2026 by g-core
published on Friday, Apr 17, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.4
published on Friday, Apr 17, 2026 by g-core
published on Friday, Apr 17, 2026 by g-core
FastEdge binaries are immutable WebAssembly modules that implement edge application logic.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcore from "@pulumi/gcore";
const exampleFastedgeBinary = gcore.getFastedgeBinary({
binaryId: 0,
});
import pulumi
import pulumi_gcore as gcore
example_fastedge_binary = gcore.get_fastedge_binary(binary_id=0)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := gcore.LookupFastedgeBinary(ctx, &gcore.LookupFastedgeBinaryArgs{
BinaryId: 0,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcore = Pulumi.Gcore;
return await Deployment.RunAsync(() =>
{
var exampleFastedgeBinary = Gcore.GetFastedgeBinary.Invoke(new()
{
BinaryId = 0,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcore.GcoreFunctions;
import com.pulumi.gcore.inputs.GetFastedgeBinaryArgs;
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 exampleFastedgeBinary = GcoreFunctions.getFastedgeBinary(GetFastedgeBinaryArgs.builder()
.binaryId(0)
.build());
}
}
variables:
exampleFastedgeBinary:
fn::invoke:
function: gcore:getFastedgeBinary
arguments:
binaryId: 0
Using getFastedgeBinary
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 getFastedgeBinary(args: GetFastedgeBinaryArgs, opts?: InvokeOptions): Promise<GetFastedgeBinaryResult>
function getFastedgeBinaryOutput(args: GetFastedgeBinaryOutputArgs, opts?: InvokeOptions): Output<GetFastedgeBinaryResult>def get_fastedge_binary(binary_id: Optional[float] = None,
opts: Optional[InvokeOptions] = None) -> GetFastedgeBinaryResult
def get_fastedge_binary_output(binary_id: Optional[pulumi.Input[float]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetFastedgeBinaryResult]func LookupFastedgeBinary(ctx *Context, args *LookupFastedgeBinaryArgs, opts ...InvokeOption) (*LookupFastedgeBinaryResult, error)
func LookupFastedgeBinaryOutput(ctx *Context, args *LookupFastedgeBinaryOutputArgs, opts ...InvokeOption) LookupFastedgeBinaryResultOutput> Note: This function is named LookupFastedgeBinary in the Go SDK.
public static class GetFastedgeBinary
{
public static Task<GetFastedgeBinaryResult> InvokeAsync(GetFastedgeBinaryArgs args, InvokeOptions? opts = null)
public static Output<GetFastedgeBinaryResult> Invoke(GetFastedgeBinaryInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetFastedgeBinaryResult> getFastedgeBinary(GetFastedgeBinaryArgs args, InvokeOptions options)
public static Output<GetFastedgeBinaryResult> getFastedgeBinary(GetFastedgeBinaryArgs args, InvokeOptions options)
fn::invoke:
function: gcore:index/getFastedgeBinary:getFastedgeBinary
arguments:
# arguments dictionaryThe following arguments are supported:
- Binary
Id double
- Binary
Id float64
- binary
Id Double
- binary
Id number
- binary_
id float
- binary
Id Number
getFastedgeBinary Result
The following output properties are available:
Package Details
- Repository
- gcore g-core/terraform-provider-gcore
- License
- Notes
- This Pulumi package is based on the
gcoreTerraform Provider.
Viewing docs for gcore 2.0.0-alpha.4
published on Friday, Apr 17, 2026 by g-core
published on Friday, Apr 17, 2026 by g-core
