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 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",
})
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",
},
});
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:
- Resource
Group string - The resource group containing the resource.
- Encryption
Pulumi.
Azure Native. Fluid Relay. Inputs. Encryption Properties - All encryption configuration for a resource.
- Fluid
Relay 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
- Provisioning
State 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.
- Resource
Group string - The resource group containing the resource.
- Encryption
Encryption
Properties Args - All encryption configuration for a resource.
- Fluid
Relay stringServer Name - The Fluid Relay server resource name.
- Identity
Identity
Args - The type of identity used for the resource.
- Location string
- The geo-location where the resource lives
- Provisioning
State string | ProvisioningState - Provision states for FluidRelay RP
- Storagesku
string | Storage
SKU - Sku of the storage associated with the resource
- map[string]string
- Resource tags.
- resource
Group String - The resource group containing the resource.
- encryption
Encryption
Properties - All encryption configuration for a resource.
- fluid
Relay 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
- provisioning
State String | ProvisioningState - Provision states for FluidRelay RP
- storagesku
String | Storage
SKU - Sku of the storage associated with the resource
- Map<String,String>
- Resource tags.
- resource
Group string - The resource group containing the resource.
- encryption
Encryption
Properties - All encryption configuration for a resource.
- fluid
Relay 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
- provisioning
State string | ProvisioningState - Provision states for FluidRelay RP
- storagesku
string | Storage
SKU - Sku of the storage associated with the resource
- {[key: string]: string}
- Resource tags.
- resource_
group str - The resource group containing the resource.
- encryption
Encryption
Properties Args - All encryption configuration for a resource.
- fluid_
relay_ strserver_ name - The Fluid Relay server resource name.
- identity
Identity
Args - 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 | Storage
SKU - Sku of the storage associated with the resource
- Mapping[str, str]
- Resource tags.
- resource
Group String - The resource group containing the resource.
- encryption Property Map
- All encryption configuration for a resource.
- fluid
Relay 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
- provisioning
State 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:
- Fluid
Relay Pulumi.Endpoints Azure Native. Fluid Relay. Outputs. Fluid Relay Endpoints Response - The Fluid Relay Service endpoints for this server.
- Frs
Tenant 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
- System
Data 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"
- Fluid
Relay FluidEndpoints Relay Endpoints Response - The Fluid Relay Service endpoints for this server.
- Frs
Tenant 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
- System
Data 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 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
- system
Data 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 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
- system
Data 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"
- fluid
Relay Property MapEndpoints - The Fluid Relay Service endpoints for this server.
- frs
Tenant 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
- system
Data 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Cmk
Identity Type System Assigned - SystemAssigned
- Cmk
Identity Type User Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
CustomerManagedKeyEncryptionProperties, CustomerManagedKeyEncryptionPropertiesArgs
- Key
Encryption 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.
- Key
Encryption 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 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 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 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.
- key
Encryption Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption 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
- Identity
Type Pulumi.Azure Native. Fluid Relay. Cmk Identity Type - Values can be SystemAssigned or UserAssigned
- User
Assigned 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 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 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 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.
- identity
Type "SystemAssigned" | "User Assigned" - Values can be SystemAssigned or UserAssigned
- user
Assigned 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
- Key
Encryption 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.
- Key
Encryption 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 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 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 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.
- key
Encryption Property MapKey Identity - All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
- key
Encryption 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
- Identity
Type string - Values can be SystemAssigned or UserAssigned
- User
Assigned 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 string - Values can be SystemAssigned or UserAssigned
- User
Assigned 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 String - Values can be SystemAssigned or UserAssigned
- user
Assigned 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 string - Values can be SystemAssigned or UserAssigned
- user
Assigned 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.
- identity
Type String - Values can be SystemAssigned or UserAssigned
- user
Assigned 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
- Customer
Managed Pulumi.Key Encryption Azure Native. Fluid Relay. Inputs. Customer 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.
- customer
Managed 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.
- customer_
managed_ Customerkey_ encryption Managed Key Encryption Properties - All Customer-managed key encryption properties for the resource.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
EncryptionPropertiesResponse, EncryptionPropertiesResponseArgs
- Customer
Managed Pulumi.Key Encryption Azure Native. Fluid Relay. Inputs. Customer 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.
- customer
Managed 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.
- customer_
managed_ Customerkey_ encryption Managed Key Encryption Properties Response - All Customer-managed key encryption properties for the resource.
- customer
Managed Property MapKey Encryption - All Customer-managed key encryption properties for the resource.
FluidRelayEndpointsResponse, FluidRelayEndpointsResponseArgs
- Orderer
Endpoints List<string> - The Fluid Relay Orderer endpoints.
- Service
Endpoints List<string> - The Fluid Relay service endpoints.
- Storage
Endpoints List<string> - The Fluid Relay storage endpoints.
- Orderer
Endpoints []string - The Fluid Relay Orderer endpoints.
- Service
Endpoints []string - The Fluid Relay service endpoints.
- Storage
Endpoints []string - The Fluid Relay storage endpoints.
- orderer
Endpoints List<String> - The Fluid Relay Orderer endpoints.
- service
Endpoints List<String> - The Fluid Relay service endpoints.
- storage
Endpoints List<String> - The Fluid Relay storage endpoints.
- orderer
Endpoints string[] - The Fluid Relay Orderer endpoints.
- service
Endpoints string[] - The Fluid Relay service endpoints.
- storage
Endpoints 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.
- orderer
Endpoints List<String> - The Fluid Relay Orderer endpoints.
- service
Endpoints List<String> - The Fluid Relay service endpoints.
- storage
Endpoints List<String> - The Fluid Relay storage endpoints.
Identity, IdentityArgs
- Type
Pulumi.
Azure Native. Fluid Relay. Resource Identity Type - The identity type.
- User
Assigned List<string>Identities - The list of user identities associated with the resource.
- Type
Resource
Identity Type - The identity type.
- User
Assigned []stringIdentities - The list of user identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned List<String>Identities - The list of user identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user
Assigned string[]Identities - The list of user identities associated with the resource.
- type
Resource
Identity Type - The identity type.
- user_
assigned_ Sequence[str]identities - The list of user identities associated with the resource.
- type
"System
Assigned" | "User Assigned" | "System Assigned, User Assigned" | "None" - The identity type.
- user
Assigned List<String>Identities - The list of user identities associated with the resource.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Fluid Relay. Inputs. Identity Response User Assigned Identities> - The list of user identities associated with the resource.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]IdentityIdentities Response User Assigned Identities - The list of user identities associated with the resource.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,IdentityIdentities Response User Assigned Identities> - The list of user identities associated with the resource.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[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.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - The list of user identities associated with the resource.
IdentityResponseUserAssignedIdentities, IdentityResponseUserAssignedIdentitiesArgs
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- Client
Id string - The client id of user assigned identity.
- Principal
Id string - The principal id of user assigned identity.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
- client
Id string - The client id of user assigned identity.
- principal
Id 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.
- client
Id String - The client id of user assigned identity.
- principal
Id String - The principal id of user assigned identity.
ProvisioningState, ProvisioningStateArgs
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Failed - Failed
- Provisioning
State 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
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- Resource
Identity Type System Assigned - SystemAssigned
- Resource
Identity Type User Assigned - UserAssigned
- Resource
Identity Type_System Assigned_User Assigned - SystemAssigned, UserAssigned
- Resource
Identity Type None - None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned, UserAssigned
- None
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- NONE
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned, User Assigned" - SystemAssigned, UserAssigned
- "None"
- None
StorageSKU, StorageSKUArgs
- Standard
- standard
- Basic
- basic
- Storage
SKUStandard - standard
- Storage
SKUBasic - basic
- Standard
- standard
- Basic
- basic
- Standard
- standard
- Basic
- basic
- STANDARD
- standard
- BASIC
- basic
- "standard"
- standard
- "basic"
- basic
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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