Fluid Relay Server
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" },
},
});
});
Content copied to clipboard
package main
import (
fluidrelay "github.com/pulumi/pulumi-azure-native-sdk/fluidrelay/v2"
"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
})
}
Content copied to clipboard
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());
}
}
Content copied to clipboard
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}
Content copied to clipboard
Properties
Link copied to clipboard
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
The Fluid tenantId for this server
Link copied to clipboard
The type of identity used for the resource.
Link copied to clipboard
Provision states for FluidRelay RP
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Sku of the storage associated with the resource
Link copied to clipboard
System meta data for this resource, including creation and modification information.