FluidRelayServer

class FluidRelayServer : KotlinCustomResource

A FluidRelay Server. Uses Azure REST API version 2022-06-01. In version 2.x of the Azure Native provider, it used API version 2022-06-01.

Example Usage

Create a Fluid Relay server

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var fluidRelayServer = new AzureNative.FluidRelay.FluidRelayServer("fluidRelayServer", new()
{
FluidRelayServerName = "myFluidRelayServer",
Identity = new AzureNative.FluidRelay.Inputs.IdentityArgs
{
Type = AzureNative.FluidRelay.ResourceIdentityType.SystemAssigned,
},
Location = "west-us",
ResourceGroup = "myResourceGroup",
Storagesku = AzureNative.FluidRelay.StorageSKU.Basic,
Tags =
{
{ "Category", "sales" },
},
});
});
package main
import (
fluidrelay "github.com/pulumi/pulumi-azure-native-sdk/fluidrelay/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fluidrelay.NewFluidRelayServer(ctx, "fluidRelayServer", &fluidrelay.FluidRelayServerArgs{
FluidRelayServerName: pulumi.String("myFluidRelayServer"),
Identity: &fluidrelay.IdentityArgs{
Type: fluidrelay.ResourceIdentityTypeSystemAssigned,
},
Location: pulumi.String("west-us"),
ResourceGroup: pulumi.String("myResourceGroup"),
Storagesku: pulumi.String(fluidrelay.StorageSKUBasic),
Tags: pulumi.StringMap{
"Category": pulumi.String("sales"),
},
})
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.azurenative.fluidrelay.FluidRelayServer;
import com.pulumi.azurenative.fluidrelay.FluidRelayServerArgs;
import com.pulumi.azurenative.fluidrelay.inputs.IdentityArgs;
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) {
var fluidRelayServer = new FluidRelayServer("fluidRelayServer", FluidRelayServerArgs.builder()
.fluidRelayServerName("myFluidRelayServer")
.identity(IdentityArgs.builder()
.type("SystemAssigned")
.build())
.location("west-us")
.resourceGroup("myResourceGroup")
.storagesku("basic")
.tags(Map.of("Category", "sales"))
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:fluidrelay:FluidRelayServer myFluidRelayServer /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.FluidRelay/fluidRelayServers/{fluidRelayServerName}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard

All encryption configuration for a resource.

Link copied to clipboard

The Fluid Relay Service endpoints for this server.

Link copied to clipboard
val frsTenantId: Output<String>

The Fluid tenantId for this server

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The type of identity used for the resource.

Link copied to clipboard
val location: Output<String>

The geo-location where the resource lives

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

Provision states for FluidRelay RP

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val storagesku: Output<String>?

Sku of the storage associated with the resource

Link copied to clipboard

System meta data for this resource, including creation and modification information.

Link copied to clipboard
val tags: Output<Map<String, String>>?

Resource tags.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>