azure-native.fluidrelay.FluidRelayServer
Explore with Pulumi AI
A FluidRelay Server. Azure REST API version: 2022-06-01. Prior API version in Azure Native 1.x: 2021-03-12-preview.
Other available API versions: 2021-06-15-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()
    {
        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/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
	})
}
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 * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const fluidRelayServer = new azure_native.fluidrelay.FluidRelayServer("fluidRelayServer", {
    fluidRelayServerName: "myFluidRelayServer",
    identity: {
        type: azure_native.fluidrelay.ResourceIdentityType.SystemAssigned,
    },
    location: "west-us",
    resourceGroup: "myResourceGroup",
    storagesku: azure_native.fluidrelay.StorageSKU.Basic,
    tags: {
        Category: "sales",
    },
});
import pulumi
import pulumi_azure_native as azure_native
fluid_relay_server = azure_native.fluidrelay.FluidRelayServer("fluidRelayServer",
    fluid_relay_server_name="myFluidRelayServer",
    identity={
        "type": azure_native.fluidrelay.ResourceIdentityType.SYSTEM_ASSIGNED,
    },
    location="west-us",
    resource_group="myResourceGroup",
    storagesku=azure_native.fluidrelay.StorageSKU.BASIC,
    tags={
        "Category": "sales",
    })
resources:
  fluidRelayServer:
    type: azure-native:fluidrelay:FluidRelayServer
    properties:
      fluidRelayServerName: myFluidRelayServer
      identity:
        type: SystemAssigned
      location: west-us
      resourceGroup: myResourceGroup
      storagesku: basic
      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,
                     encryption: Optional[EncryptionPropertiesArgs] = None,
                     fluid_relay_server_name: Optional[str] = None,
                     identity: Optional[IdentityArgs] = None,
                     location: Optional[str] = None,
                     provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                     storagesku: Optional[Union[str, StorageSKU]] = 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",
    Encryption = new AzureNative.FluidRelay.Inputs.EncryptionPropertiesArgs
    {
        CustomerManagedKeyEncryption = new AzureNative.FluidRelay.Inputs.CustomerManagedKeyEncryptionPropertiesArgs
        {
            KeyEncryptionKeyIdentity = new AzureNative.FluidRelay.Inputs.CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentityArgs
            {
                IdentityType = AzureNative.FluidRelay.CmkIdentityType.SystemAssigned,
                UserAssignedIdentityResourceId = "string",
            },
            KeyEncryptionKeyUrl = "string",
        },
    },
    FluidRelayServerName = "string",
    Identity = new AzureNative.FluidRelay.Inputs.IdentityArgs
    {
        Type = AzureNative.FluidRelay.ResourceIdentityType.SystemAssigned,
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    ProvisioningState = "string",
    Storagesku = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := fluidrelay.NewFluidRelayServer(ctx, "fluidRelayServerResource", &fluidrelay.FluidRelayServerArgs{
	ResourceGroup: pulumi.String("string"),
	Encryption: &fluidrelay.EncryptionPropertiesArgs{
		CustomerManagedKeyEncryption: &fluidrelay.CustomerManagedKeyEncryptionPropertiesArgs{
			KeyEncryptionKeyIdentity: &fluidrelay.CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentityArgs{
				IdentityType:                   fluidrelay.CmkIdentityTypeSystemAssigned,
				UserAssignedIdentityResourceId: pulumi.String("string"),
			},
			KeyEncryptionKeyUrl: pulumi.String("string"),
		},
	},
	FluidRelayServerName: pulumi.String("string"),
	Identity: &fluidrelay.IdentityArgs{
		Type: fluidrelay.ResourceIdentityTypeSystemAssigned,
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location:          pulumi.String("string"),
	ProvisioningState: pulumi.String("string"),
	Storagesku:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var fluidRelayServerResource = new FluidRelayServer("fluidRelayServerResource", FluidRelayServerArgs.builder()
    .resourceGroup("string")
    .encryption(EncryptionPropertiesArgs.builder()
        .customerManagedKeyEncryption(CustomerManagedKeyEncryptionPropertiesArgs.builder()
            .keyEncryptionKeyIdentity(CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentityArgs.builder()
                .identityType("SystemAssigned")
                .userAssignedIdentityResourceId("string")
                .build())
            .keyEncryptionKeyUrl("string")
            .build())
        .build())
    .fluidRelayServerName("string")
    .identity(IdentityArgs.builder()
        .type("SystemAssigned")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .provisioningState("string")
    .storagesku("string")
    .tags(Map.of("string", "string"))
    .build());
fluid_relay_server_resource = azure_native.fluidrelay.FluidRelayServer("fluidRelayServerResource",
    resource_group="string",
    encryption={
        "customer_managed_key_encryption": {
            "key_encryption_key_identity": {
                "identity_type": azure_native.fluidrelay.CmkIdentityType.SYSTEM_ASSIGNED,
                "user_assigned_identity_resource_id": "string",
            },
            "key_encryption_key_url": "string",
        },
    },
    fluid_relay_server_name="string",
    identity={
        "type": azure_native.fluidrelay.ResourceIdentityType.SYSTEM_ASSIGNED,
        "user_assigned_identities": ["string"],
    },
    location="string",
    provisioning_state="string",
    storagesku="string",
    tags={
        "string": "string",
    })
const fluidRelayServerResource = new azure_native.fluidrelay.FluidRelayServer("fluidRelayServerResource", {
    resourceGroup: "string",
    encryption: {
        customerManagedKeyEncryption: {
            keyEncryptionKeyIdentity: {
                identityType: azure_native.fluidrelay.CmkIdentityType.SystemAssigned,
                userAssignedIdentityResourceId: "string",
            },
            keyEncryptionKeyUrl: "string",
        },
    },
    fluidRelayServerName: "string",
    identity: {
        type: azure_native.fluidrelay.ResourceIdentityType.SystemAssigned,
        userAssignedIdentities: ["string"],
    },
    location: "string",
    provisioningState: "string",
    storagesku: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:fluidrelay:FluidRelayServer
properties:
    encryption:
        customerManagedKeyEncryption:
            keyEncryptionKeyIdentity:
                identityType: SystemAssigned
                userAssignedIdentityResourceId: string
            keyEncryptionKeyUrl: string
    fluidRelayServerName: string
    identity:
        type: SystemAssigned
        userAssignedIdentities:
            - string
    location: string
    provisioningState: string
    resourceGroup: string
    storagesku: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FluidRelayServer resource accepts the following input properties:
- ResourceGroup string
- The resource group containing the resource.
- Encryption
Pulumi.Azure Native. Fluid Relay. Inputs. Encryption Properties 
- All encryption configuration for a resource.
- FluidRelay stringServer Name 
- The Fluid Relay server resource name.
- Identity
Pulumi.Azure Native. Fluid Relay. Inputs. Identity 
- The type of identity used for the resource.
- Location string
- The geo-location where the resource lives
- ProvisioningState string | Pulumi.Azure Native. Fluid Relay. Provisioning State 
- Provision states for FluidRelay RP
- Storagesku
string | Pulumi.Azure Native. Fluid Relay. Storage SKU 
- Sku of the storage associated with the resource
- Dictionary<string, string>
- Resource tags.
- ResourceGroup string
- The resource group containing the resource.
- Encryption
EncryptionProperties Args 
- All encryption configuration for a resource.
- FluidRelay stringServer Name 
- The Fluid Relay server resource name.
- Identity
IdentityArgs 
- The type of identity used for the resource.
- Location string
- The geo-location where the resource lives
- ProvisioningState string | ProvisioningState 
- Provision states for FluidRelay RP
- Storagesku
string | StorageSKU 
- Sku of the storage associated with the resource
- map[string]string
- Resource tags.
- resourceGroup String
- The resource group containing the resource.
- encryption
EncryptionProperties 
- All encryption configuration for a resource.
- fluidRelay StringServer Name 
- The Fluid Relay server resource name.
- identity Identity
- The type of identity used for the resource.
- location String
- The geo-location where the resource lives
- provisioningState String | ProvisioningState 
- Provision states for FluidRelay RP
- storagesku
String | StorageSKU 
- Sku of the storage associated with the resource
- Map<String,String>
- Resource tags.
- resourceGroup string
- The resource group containing the resource.
- encryption
EncryptionProperties 
- All encryption configuration for a resource.
- fluidRelay stringServer Name 
- The Fluid Relay server resource name.
- identity Identity
- The type of identity used for the resource.
- location string
- The geo-location where the resource lives
- provisioningState string | ProvisioningState 
- Provision states for FluidRelay RP
- storagesku
string | StorageSKU 
- Sku of the storage associated with the resource
- {[key: string]: string}
- Resource tags.
- resource_group str
- The resource group containing the resource.
- encryption
EncryptionProperties Args 
- All encryption configuration for a resource.
- fluid_relay_ strserver_ name 
- The Fluid Relay server resource name.
- identity
IdentityArgs 
- The type of identity used for the resource.
- location str
- The geo-location where the resource lives
- provisioning_state str | ProvisioningState 
- Provision states for FluidRelay RP
- storagesku
str | StorageSKU 
- Sku of the storage associated with the resource
- Mapping[str, str]
- Resource tags.
- resourceGroup String
- The resource group containing the resource.
- encryption Property Map
- All encryption configuration for a resource.
- fluidRelay StringServer Name 
- The Fluid Relay server resource name.
- identity Property Map
- The type of identity used for the resource.
- location String
- The geo-location where the resource lives
- provisioningState String | "Succeeded" | "Failed" | "Canceled"
- Provision states for FluidRelay RP
- storagesku String | "standard" | "basic"
- Sku of the storage associated with the resource
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the FluidRelayServer resource produces the following output properties:
- FluidRelay Pulumi.Endpoints Azure Native. Fluid Relay. Outputs. Fluid Relay Endpoints Response 
- The Fluid Relay Service endpoints for this server.
- FrsTenant stringId 
- The Fluid tenantId for this server
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Fluid Relay. Outputs. System Data Response 
- 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"
- FluidRelay FluidEndpoints Relay Endpoints Response 
- The Fluid Relay Service endpoints for this server.
- FrsTenant stringId 
- The Fluid tenantId for this server
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData SystemData Response 
- 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"
- fluidRelay FluidEndpoints Relay Endpoints Response 
- The Fluid Relay Service endpoints for this server.
- frsTenant StringId 
- The Fluid tenantId for this server
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- systemData SystemData Response 
- 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"
- fluidRelay FluidEndpoints Relay Endpoints Response 
- The Fluid Relay Service endpoints for this server.
- frsTenant stringId 
- The Fluid tenantId for this server
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- systemData SystemData Response 
- 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_ Fluidendpoints Relay Endpoints Response 
- The Fluid Relay Service endpoints for this server.
- frs_tenant_ strid 
- The Fluid tenantId for this server
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_data SystemData Response 
- 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"
- fluidRelay Property MapEndpoints 
- The Fluid Relay Service endpoints for this server.
- frsTenant StringId 
- The Fluid tenantId for this server
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the 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
CmkIdentityType, CmkIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- CmkIdentity Type System Assigned 
- SystemAssigned
- CmkIdentity Type User Assigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
CustomerManagedKeyEncryptionProperties, CustomerManagedKeyEncryptionPropertiesArgs          
- KeyEncryption Pulumi.Key Identity Azure Native. Fluid Relay. Inputs. Customer Managed Key Encryption Properties Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- KeyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- KeyEncryption CustomerKey Identity Managed Key Encryption Properties Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- KeyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption CustomerKey Identity Managed Key Encryption Properties Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption StringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption CustomerKey Identity Managed Key Encryption Properties Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- key_encryption_ Customerkey_ identity Managed Key Encryption Properties Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_encryption_ strkey_ url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption Property MapKey Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption StringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentity, CustomerManagedKeyEncryptionPropertiesKeyEncryptionKeyIdentityArgs                  
- IdentityType Pulumi.Azure Native. Fluid Relay. Cmk Identity Type 
- Values can be SystemAssigned or UserAssigned
- UserAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- IdentityType CmkIdentity Type 
- Values can be SystemAssigned or UserAssigned
- UserAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType CmkIdentity Type 
- Values can be SystemAssigned or UserAssigned
- userAssigned StringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType CmkIdentity Type 
- Values can be SystemAssigned or UserAssigned
- userAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identity_type CmkIdentity Type 
- Values can be SystemAssigned or UserAssigned
- user_assigned_ stridentity_ resource_ id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType "SystemAssigned" | "User Assigned" 
- Values can be SystemAssigned or UserAssigned
- userAssigned StringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
CustomerManagedKeyEncryptionPropertiesResponse, CustomerManagedKeyEncryptionPropertiesResponseArgs            
- KeyEncryption Pulumi.Key Identity Azure Native. Fluid Relay. Inputs. Customer Managed Key Encryption Properties Response Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- KeyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- KeyEncryption CustomerKey Identity Managed Key Encryption Properties Response Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- KeyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption CustomerKey Identity Managed Key Encryption Properties Response Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption StringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption CustomerKey Identity Managed Key Encryption Properties Response Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption stringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- key_encryption_ Customerkey_ identity Managed Key Encryption Properties Response Key Encryption Key Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key_encryption_ strkey_ url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
- keyEncryption Property MapKey Identity 
- All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- keyEncryption StringKey Url 
- key encryption key Url, with or without a version. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. Key auto rotation is enabled by providing a key uri without version. Otherwise, customer is responsible for rotating the key. The keyEncryptionKeyIdentity(either SystemAssigned or UserAssigned) should have permission to access this key url.
CustomerManagedKeyEncryptionPropertiesResponseKeyEncryptionKeyIdentity, CustomerManagedKeyEncryptionPropertiesResponseKeyEncryptionKeyIdentityArgs                    
- IdentityType string
- Values can be SystemAssigned or UserAssigned
- UserAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- IdentityType string
- Values can be SystemAssigned or UserAssigned
- UserAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType String
- Values can be SystemAssigned or UserAssigned
- userAssigned StringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType string
- Values can be SystemAssigned or UserAssigned
- userAssigned stringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identity_type str
- Values can be SystemAssigned or UserAssigned
- user_assigned_ stridentity_ resource_ id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
- identityType String
- Values can be SystemAssigned or UserAssigned
- userAssigned StringIdentity Resource Id 
- user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
EncryptionProperties, EncryptionPropertiesArgs    
- CustomerManaged Pulumi.Key Encryption Azure Native. Fluid Relay. Inputs. Customer Managed Key Encryption Properties 
- All Customer-managed key encryption properties for the resource.
- CustomerManaged CustomerKey Encryption Managed Key Encryption Properties 
- All Customer-managed key encryption properties for the resource.
- customerManaged CustomerKey Encryption Managed Key Encryption Properties 
- All Customer-managed key encryption properties for the resource.
- customerManaged CustomerKey Encryption Managed Key Encryption Properties 
- All Customer-managed key encryption properties for the resource.
- customer_managed_ Customerkey_ encryption Managed Key Encryption Properties 
- All Customer-managed key encryption properties for the resource.
- customerManaged Property MapKey Encryption 
- All Customer-managed key encryption properties for the resource.
EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs      
- CustomerManaged Pulumi.Key Encryption Azure Native. Fluid Relay. Inputs. Customer Managed Key Encryption Properties Response 
- All Customer-managed key encryption properties for the resource.
- CustomerManaged CustomerKey Encryption Managed Key Encryption Properties Response 
- All Customer-managed key encryption properties for the resource.
- customerManaged CustomerKey Encryption Managed Key Encryption Properties Response 
- All Customer-managed key encryption properties for the resource.
- customerManaged CustomerKey Encryption Managed Key Encryption Properties Response 
- All Customer-managed key encryption properties for the resource.
- customer_managed_ Customerkey_ encryption Managed Key Encryption Properties Response 
- All Customer-managed key encryption properties for the resource.
- customerManaged Property MapKey Encryption 
- All Customer-managed key encryption properties for the resource.
FluidRelayEndpointsResponse, FluidRelayEndpointsResponseArgs        
- OrdererEndpoints List<string>
- The Fluid Relay Orderer endpoints.
- ServiceEndpoints List<string>
- The Fluid Relay service endpoints.
- StorageEndpoints List<string>
- The Fluid Relay storage endpoints.
- OrdererEndpoints []string
- The Fluid Relay Orderer endpoints.
- ServiceEndpoints []string
- The Fluid Relay service endpoints.
- StorageEndpoints []string
- The Fluid Relay storage endpoints.
- ordererEndpoints List<String>
- The Fluid Relay Orderer endpoints.
- serviceEndpoints List<String>
- The Fluid Relay service endpoints.
- storageEndpoints List<String>
- The Fluid Relay storage endpoints.
- ordererEndpoints string[]
- The Fluid Relay Orderer endpoints.
- serviceEndpoints string[]
- The Fluid Relay service endpoints.
- storageEndpoints string[]
- The Fluid Relay storage endpoints.
- orderer_endpoints Sequence[str]
- The Fluid Relay Orderer endpoints.
- service_endpoints Sequence[str]
- The Fluid Relay service endpoints.
- storage_endpoints Sequence[str]
- The Fluid Relay storage endpoints.
- ordererEndpoints List<String>
- The Fluid Relay Orderer endpoints.
- serviceEndpoints List<String>
- The Fluid Relay service endpoints.
- storageEndpoints List<String>
- The Fluid Relay storage endpoints.
Identity, IdentityArgs  
- Type
Pulumi.Azure Native. Fluid Relay. Resource Identity Type 
- The identity type.
- UserAssigned List<string>Identities 
- The list of user identities associated with the resource.
- Type
ResourceIdentity Type 
- The identity type.
- UserAssigned []stringIdentities 
- The list of user identities associated with the resource.
- type
ResourceIdentity Type 
- The identity type.
- userAssigned List<String>Identities 
- The list of user identities associated with the resource.
- type
ResourceIdentity Type 
- The identity type.
- userAssigned string[]Identities 
- The list of user identities associated with the resource.
- type
ResourceIdentity Type 
- The identity type.
- user_assigned_ Sequence[str]identities 
- The list of user identities associated with the resource.
- type
"SystemAssigned" | "User Assigned" | "System Assigned, User Assigned" | "None" 
- The identity type.
- userAssigned List<String>Identities 
- The list of user identities associated with the resource.
IdentityResponse, IdentityResponseArgs    
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Fluid Relay. Inputs. Identity Response User Assigned Identities> 
- The list of user identities associated with the resource.
- PrincipalId string
- The principal ID of resource identity.
- TenantId string
- The tenant ID of resource.
- Type string
- The identity type.
- UserAssigned map[string]IdentityIdentities Response User Assigned Identities 
- The list of user identities associated with the resource.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- userAssigned Map<String,IdentityIdentities Response User Assigned Identities> 
- The list of user identities associated with the resource.
- principalId string
- The principal ID of resource identity.
- tenantId string
- The tenant ID of resource.
- type string
- The identity type.
- userAssigned {[key: string]: IdentityIdentities Response User Assigned Identities} 
- The list of user identities associated with the resource.
- principal_id str
- The principal ID of resource identity.
- tenant_id str
- The tenant ID of resource.
- type str
- The identity type.
- user_assigned_ Mapping[str, Identityidentities Response User Assigned Identities] 
- The list of user identities associated with the resource.
- principalId String
- The principal ID of resource identity.
- tenantId String
- The tenant ID of resource.
- type String
- The identity type.
- userAssigned Map<Property Map>Identities 
- The list of user identities associated with the resource.
IdentityResponseUserAssignedIdentities, IdentityResponseUserAssignedIdentitiesArgs          
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- ClientId string
- The client id of user assigned identity.
- PrincipalId string
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
- clientId string
- The client id of user assigned identity.
- principalId string
- The principal id of user assigned identity.
- client_id str
- The client id of user assigned identity.
- principal_id str
- The principal id of user assigned identity.
- clientId String
- The client id of user assigned identity.
- principalId String
- The principal id of user assigned identity.
ProvisioningState, ProvisioningStateArgs    
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- ProvisioningState Succeeded 
- Succeeded
- ProvisioningState Failed 
- Failed
- ProvisioningState Canceled 
- 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
ResourceIdentityType, ResourceIdentityTypeArgs      
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- ResourceIdentity Type System Assigned 
- SystemAssigned
- ResourceIdentity Type User Assigned 
- UserAssigned
- ResourceIdentity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- ResourceIdentity Type None 
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
- "None"
- None
StorageSKU, StorageSKUArgs    
- Standard
- standard
- Basic
- basic
- StorageSKUStandard 
- standard
- StorageSKUBasic 
- basic
- Standard
- standard
- Basic
- basic
- Standard
- standard
- Basic
- basic
- STANDARD
- standard
- BASIC
- basic
- "standard"
- standard
- "basic"
- basic
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.FluidRelay/fluidRelayServers/{fluidRelayServerName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0