1. Packages
  2. Azure Native
  3. API Docs
  4. cache
  5. LinkedServer
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.cache.LinkedServer

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Response to put/get linked server (with properties) for Redis cache. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2020-06-01.

    Other available API versions: 2023-05-01-preview, 2023-08-01.

    Example Usage

    LinkedServer_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var linkedServer = new AzureNative.Cache.LinkedServer("linkedServer", new()
        {
            LinkedRedisCacheId = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
            LinkedRedisCacheLocation = "West US",
            LinkedServerName = "cache2",
            Name = "cache1",
            ResourceGroupName = "rg1",
            ServerRole = AzureNative.Cache.ReplicationRole.Secondary,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/cache/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cache.NewLinkedServer(ctx, "linkedServer", &cache.LinkedServerArgs{
    			LinkedRedisCacheId:       pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2"),
    			LinkedRedisCacheLocation: pulumi.String("West US"),
    			LinkedServerName:         pulumi.String("cache2"),
    			Name:                     pulumi.String("cache1"),
    			ResourceGroupName:        pulumi.String("rg1"),
    			ServerRole:               cache.ReplicationRoleSecondary,
    		})
    		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.cache.LinkedServer;
    import com.pulumi.azurenative.cache.LinkedServerArgs;
    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 linkedServer = new LinkedServer("linkedServer", LinkedServerArgs.builder()        
                .linkedRedisCacheId("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2")
                .linkedRedisCacheLocation("West US")
                .linkedServerName("cache2")
                .name("cache1")
                .resourceGroupName("rg1")
                .serverRole("Secondary")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    linked_server = azure_native.cache.LinkedServer("linkedServer",
        linked_redis_cache_id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
        linked_redis_cache_location="West US",
        linked_server_name="cache2",
        name="cache1",
        resource_group_name="rg1",
        server_role=azure_native.cache.ReplicationRole.SECONDARY)
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const linkedServer = new azure_native.cache.LinkedServer("linkedServer", {
        linkedRedisCacheId: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2",
        linkedRedisCacheLocation: "West US",
        linkedServerName: "cache2",
        name: "cache1",
        resourceGroupName: "rg1",
        serverRole: azure_native.cache.ReplicationRole.Secondary,
    });
    
    resources:
      linkedServer:
        type: azure-native:cache:LinkedServer
        properties:
          linkedRedisCacheId: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/Redis/cache2
          linkedRedisCacheLocation: West US
          linkedServerName: cache2
          name: cache1
          resourceGroupName: rg1
          serverRole: Secondary
    

    Create LinkedServer Resource

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

    Constructor syntax

    new LinkedServer(name: string, args: LinkedServerArgs, opts?: CustomResourceOptions);
    @overload
    def LinkedServer(resource_name: str,
                     args: LinkedServerArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def LinkedServer(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     linked_redis_cache_id: Optional[str] = None,
                     linked_redis_cache_location: Optional[str] = None,
                     name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     server_role: Optional[ReplicationRole] = None,
                     linked_server_name: Optional[str] = None)
    func NewLinkedServer(ctx *Context, name string, args LinkedServerArgs, opts ...ResourceOption) (*LinkedServer, error)
    public LinkedServer(string name, LinkedServerArgs args, CustomResourceOptions? opts = null)
    public LinkedServer(String name, LinkedServerArgs args)
    public LinkedServer(String name, LinkedServerArgs args, CustomResourceOptions options)
    
    type: azure-native:cache:LinkedServer
    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 LinkedServerArgs
    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 LinkedServerArgs
    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 LinkedServerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args LinkedServerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args LinkedServerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var linkedServerResource = new AzureNative.Cache.LinkedServer("linkedServerResource", new()
    {
        LinkedRedisCacheId = "string",
        LinkedRedisCacheLocation = "string",
        Name = "string",
        ResourceGroupName = "string",
        ServerRole = AzureNative.Cache.ReplicationRole.Primary,
        LinkedServerName = "string",
    });
    
    example, err := cache.NewLinkedServer(ctx, "linkedServerResource", &cache.LinkedServerArgs{
    LinkedRedisCacheId: pulumi.String("string"),
    LinkedRedisCacheLocation: pulumi.String("string"),
    Name: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    ServerRole: cache.ReplicationRolePrimary,
    LinkedServerName: pulumi.String("string"),
    })
    
    var linkedServerResource = new LinkedServer("linkedServerResource", LinkedServerArgs.builder()        
        .linkedRedisCacheId("string")
        .linkedRedisCacheLocation("string")
        .name("string")
        .resourceGroupName("string")
        .serverRole("Primary")
        .linkedServerName("string")
        .build());
    
    linked_server_resource = azure_native.cache.LinkedServer("linkedServerResource",
        linked_redis_cache_id="string",
        linked_redis_cache_location="string",
        name="string",
        resource_group_name="string",
        server_role=azure_native.cache.ReplicationRole.PRIMARY,
        linked_server_name="string")
    
    const linkedServerResource = new azure_native.cache.LinkedServer("linkedServerResource", {
        linkedRedisCacheId: "string",
        linkedRedisCacheLocation: "string",
        name: "string",
        resourceGroupName: "string",
        serverRole: azure_native.cache.ReplicationRole.Primary,
        linkedServerName: "string",
    });
    
    type: azure-native:cache:LinkedServer
    properties:
        linkedRedisCacheId: string
        linkedRedisCacheLocation: string
        linkedServerName: string
        name: string
        resourceGroupName: string
        serverRole: Primary
    

    LinkedServer 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 LinkedServer resource accepts the following input properties:

    LinkedRedisCacheId string
    Fully qualified resourceId of the linked redis cache.
    LinkedRedisCacheLocation string
    Location of the linked redis cache.
    Name string
    The name of the Redis cache.
    ResourceGroupName string
    The name of the resource group.
    ServerRole Pulumi.AzureNative.Cache.ReplicationRole
    Role of the linked server.
    LinkedServerName string
    The name of the linked server that is being added to the Redis cache.
    LinkedRedisCacheId string
    Fully qualified resourceId of the linked redis cache.
    LinkedRedisCacheLocation string
    Location of the linked redis cache.
    Name string
    The name of the Redis cache.
    ResourceGroupName string
    The name of the resource group.
    ServerRole ReplicationRole
    Role of the linked server.
    LinkedServerName string
    The name of the linked server that is being added to the Redis cache.
    linkedRedisCacheId String
    Fully qualified resourceId of the linked redis cache.
    linkedRedisCacheLocation String
    Location of the linked redis cache.
    name String
    The name of the Redis cache.
    resourceGroupName String
    The name of the resource group.
    serverRole ReplicationRole
    Role of the linked server.
    linkedServerName String
    The name of the linked server that is being added to the Redis cache.
    linkedRedisCacheId string
    Fully qualified resourceId of the linked redis cache.
    linkedRedisCacheLocation string
    Location of the linked redis cache.
    name string
    The name of the Redis cache.
    resourceGroupName string
    The name of the resource group.
    serverRole ReplicationRole
    Role of the linked server.
    linkedServerName string
    The name of the linked server that is being added to the Redis cache.
    linked_redis_cache_id str
    Fully qualified resourceId of the linked redis cache.
    linked_redis_cache_location str
    Location of the linked redis cache.
    name str
    The name of the Redis cache.
    resource_group_name str
    The name of the resource group.
    server_role ReplicationRole
    Role of the linked server.
    linked_server_name str
    The name of the linked server that is being added to the Redis cache.
    linkedRedisCacheId String
    Fully qualified resourceId of the linked redis cache.
    linkedRedisCacheLocation String
    Location of the linked redis cache.
    name String
    The name of the Redis cache.
    resourceGroupName String
    The name of the resource group.
    serverRole "Primary" | "Secondary"
    Role of the linked server.
    linkedServerName String
    The name of the linked server that is being added to the Redis cache.

    Outputs

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

    GeoReplicatedPrimaryHostName string
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryHostName string
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    ProvisioningState string
    Terminal state of the link between primary and secondary redis cache.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    GeoReplicatedPrimaryHostName string
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryHostName string
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    ProvisioningState string
    Terminal state of the link between primary and secondary redis cache.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    geoReplicatedPrimaryHostName String
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryHostName String
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    provisioningState String
    Terminal state of the link between primary and secondary redis cache.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    geoReplicatedPrimaryHostName string
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    id string
    The provider-assigned unique ID for this managed resource.
    primaryHostName string
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    provisioningState string
    Terminal state of the link between primary and secondary redis cache.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    geo_replicated_primary_host_name str
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    id str
    The provider-assigned unique ID for this managed resource.
    primary_host_name str
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    provisioning_state str
    Terminal state of the link between primary and secondary redis cache.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    geoReplicatedPrimaryHostName String
    The unchanging DNS name which will always point to current geo-primary cache among the linked redis caches for seamless Geo Failover experience.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryHostName String
    The changing DNS name that resolves to the current geo-primary cache among the linked redis caches before or after the Geo Failover.
    provisioningState String
    Terminal state of the link between primary and secondary redis cache.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ReplicationRole, ReplicationRoleArgs

    Primary
    Primary
    Secondary
    Secondary
    ReplicationRolePrimary
    Primary
    ReplicationRoleSecondary
    Secondary
    Primary
    Primary
    Secondary
    Secondary
    Primary
    Primary
    Secondary
    Secondary
    PRIMARY
    Primary
    SECONDARY
    Secondary
    "Primary"
    Primary
    "Secondary"
    Secondary

    Import

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

    $ pulumi import azure-native:cache:LinkedServer cache2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name}/linkedServers/{linkedServerName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi