1. Packages
  2. Azure Native v1
  3. API Docs
  4. fluidrelay
  5. FluidRelayServer
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.fluidrelay.FluidRelayServer

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    A FluidRelay Server. API Version: 2021-03-12-preview.

    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()
        {
            Location = "west-us",
            Name = "myFluidRelayServer",
            ResourceGroup = "myResourceGroup",
            Tags = 
            {
                { "Category", "sales" },
            },
        });
    
    });
    
    package main
    
    import (
    	fluidrelay "github.com/pulumi/pulumi-azure-native-sdk/fluidrelay"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fluidrelay.NewFluidRelayServer(ctx, "fluidRelayServer", &fluidrelay.FluidRelayServerArgs{
    			Location:      pulumi.String("west-us"),
    			Name:          pulumi.String("myFluidRelayServer"),
    			ResourceGroup: pulumi.String("myResourceGroup"),
    			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 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()        
                .location("west-us")
                .name("myFluidRelayServer")
                .resourceGroup("myResourceGroup")
                .tags(Map.of("Category", "sales"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    fluid_relay_server = azure_native.fluidrelay.FluidRelayServer("fluidRelayServer",
        location="west-us",
        name="myFluidRelayServer",
        resource_group="myResourceGroup",
        tags={
            "Category": "sales",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const fluidRelayServer = new azure_native.fluidrelay.FluidRelayServer("fluidRelayServer", {
        location: "west-us",
        name: "myFluidRelayServer",
        resourceGroup: "myResourceGroup",
        tags: {
            Category: "sales",
        },
    });
    
    resources:
      fluidRelayServer:
        type: azure-native:fluidrelay:FluidRelayServer
        properties:
          location: west-us
          name: myFluidRelayServer
          resourceGroup: myResourceGroup
          tags:
            Category: sales
    

    Create FluidRelayServer Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new FluidRelayServer(name: string, args: FluidRelayServerArgs, opts?: CustomResourceOptions);
    @overload
    def FluidRelayServer(resource_name: str,
                         args: FluidRelayServerArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def FluidRelayServer(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         resource_group: Optional[str] = None,
                         location: Optional[str] = None,
                         name: Optional[str] = None,
                         provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                         tags: Optional[Mapping[str, str]] = None)
    func NewFluidRelayServer(ctx *Context, name string, args FluidRelayServerArgs, opts ...ResourceOption) (*FluidRelayServer, error)
    public FluidRelayServer(string name, FluidRelayServerArgs args, CustomResourceOptions? opts = null)
    public FluidRelayServer(String name, FluidRelayServerArgs args)
    public FluidRelayServer(String name, FluidRelayServerArgs args, CustomResourceOptions options)
    
    type: azure-native:fluidrelay:FluidRelayServer
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args FluidRelayServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args FluidRelayServerArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args FluidRelayServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FluidRelayServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FluidRelayServerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var fluidRelayServerResource = new AzureNative.Fluidrelay.FluidRelayServer("fluidRelayServerResource", new()
    {
        ResourceGroup = "string",
        Location = "string",
        Name = "string",
        ProvisioningState = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := fluidrelay.NewFluidRelayServer(ctx, "fluidRelayServerResource", &fluidrelay.FluidRelayServerArgs{
    	ResourceGroup:     "string",
    	Location:          "string",
    	Name:              "string",
    	ProvisioningState: "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    })
    
    var fluidRelayServerResource = new FluidRelayServer("fluidRelayServerResource", FluidRelayServerArgs.builder()
        .resourceGroup("string")
        .location("string")
        .name("string")
        .provisioningState("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .build());
    
    fluid_relay_server_resource = azure_native.fluidrelay.FluidRelayServer("fluidRelayServerResource",
        resource_group=string,
        location=string,
        name=string,
        provisioning_state=string,
        tags={
            string: string,
        })
    
    const fluidRelayServerResource = new azure_native.fluidrelay.FluidRelayServer("fluidRelayServerResource", {
        resourceGroup: "string",
        location: "string",
        name: "string",
        provisioningState: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:fluidrelay:FluidRelayServer
    properties:
        location: string
        name: string
        provisioningState: string
        resourceGroup: string
        tags:
            string: string
    

    FluidRelayServer Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The FluidRelayServer resource accepts the following input properties:

    ResourceGroup string
    The resource group containing the resource.
    Location string
    The geo-location where the resource lives
    Name string
    The resource name.
    ProvisioningState string | Pulumi.AzureNative.FluidRelay.ProvisioningState
    Provision states for FluidRelay RP
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroup string
    The resource group containing the resource.
    Location string
    The geo-location where the resource lives
    Name string
    The resource name.
    ProvisioningState string | ProvisioningState
    Provision states for FluidRelay RP
    Tags map[string]string
    Resource tags.
    resourceGroup String
    The resource group containing the resource.
    location String
    The geo-location where the resource lives
    name String
    The resource name.
    provisioningState String | ProvisioningState
    Provision states for FluidRelay RP
    tags Map<String,String>
    Resource tags.
    resourceGroup string
    The resource group containing the resource.
    location string
    The geo-location where the resource lives
    name string
    The resource name.
    provisioningState string | ProvisioningState
    Provision states for FluidRelay RP
    tags {[key: string]: string}
    Resource tags.
    resource_group str
    The resource group containing the resource.
    location str
    The geo-location where the resource lives
    name str
    The resource name.
    provisioning_state str | ProvisioningState
    Provision states for FluidRelay RP
    tags Mapping[str, str]
    Resource tags.
    resourceGroup String
    The resource group containing the resource.
    location String
    The geo-location where the resource lives
    name String
    The resource name.
    provisioningState String | "Succeeded" | "Failed" | "Canceled"
    Provision states for FluidRelay RP
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the FluidRelayServer resource produces the following output properties:

    FluidRelayEndpoints Pulumi.AzureNative.FluidRelay.Outputs.FluidRelayEndpointsResponse
    The Fluid Relay Service endpoints for this server.
    FrsTenantId string
    The Fluid tenantId for this server
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData Pulumi.AzureNative.FluidRelay.Outputs.SystemDataResponse
    System meta data for this resource, including creation and modification information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    FluidRelayEndpoints FluidRelayEndpointsResponse
    The Fluid Relay Service endpoints for this server.
    FrsTenantId string
    The Fluid tenantId for this server
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData SystemDataResponse
    System meta data for this resource, including creation and modification information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    fluidRelayEndpoints FluidRelayEndpointsResponse
    The Fluid Relay Service endpoints for this server.
    frsTenantId String
    The Fluid tenantId for this server
    id String
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    System meta data for this resource, including creation and modification information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    fluidRelayEndpoints FluidRelayEndpointsResponse
    The Fluid Relay Service endpoints for this server.
    frsTenantId string
    The Fluid tenantId for this server
    id string
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    System meta data for this resource, including creation and modification information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    fluid_relay_endpoints FluidRelayEndpointsResponse
    The Fluid Relay Service endpoints for this server.
    frs_tenant_id str
    The Fluid tenantId for this server
    id str
    The provider-assigned unique ID for this managed resource.
    system_data SystemDataResponse
    System meta data for this resource, including creation and modification information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    fluidRelayEndpoints Property Map
    The Fluid Relay Service endpoints for this server.
    frsTenantId String
    The Fluid tenantId for this server
    id String
    The provider-assigned unique ID for this managed resource.
    systemData Property Map
    System meta data for this resource, including creation and modification information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    FluidRelayEndpointsResponse, FluidRelayEndpointsResponseArgs

    OrdererEndpoints List<string>
    The Fluid Relay Orderer endpoints.
    StorageEndpoints List<string>
    The Fluid Relay storage endpoints.
    OrdererEndpoints []string
    The Fluid Relay Orderer endpoints.
    StorageEndpoints []string
    The Fluid Relay storage endpoints.
    ordererEndpoints List<String>
    The Fluid Relay Orderer endpoints.
    storageEndpoints List<String>
    The Fluid Relay storage endpoints.
    ordererEndpoints string[]
    The Fluid Relay Orderer endpoints.
    storageEndpoints string[]
    The Fluid Relay storage endpoints.
    orderer_endpoints Sequence[str]
    The Fluid Relay Orderer endpoints.
    storage_endpoints Sequence[str]
    The Fluid Relay storage endpoints.
    ordererEndpoints List<String>
    The Fluid Relay Orderer endpoints.
    storageEndpoints List<String>
    The Fluid Relay storage endpoints.

    ProvisioningState, ProvisioningStateArgs

    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    ProvisioningStateSucceeded
    Succeeded
    ProvisioningStateFailed
    Failed
    ProvisioningStateCanceled
    Canceled
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    SUCCEEDED
    Succeeded
    FAILED
    Failed
    CANCELED
    Canceled
    "Succeeded"
    Succeeded
    "Failed"
    Failed
    "Canceled"
    Canceled

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:fluidrelay:FluidRelayServer myFluidRelayServer /subscriptions/xxxx-xxxx-xxxx-xxxx/resourceGroups/myResourceGroup/Microsoft.FluidRelay/fluidRelayServers/myFluidRelayServer 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi