1. Packages
  2. Azure Native v2
  3. API Docs
  4. web
  5. StaticSiteLinkedBackend
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.web.StaticSiteLinkedBackend

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Static Site Linked Backend ARM resource. Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2022-03-01.

Other available API versions: 2023-01-01, 2023-12-01, 2024-04-01.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var staticSiteLinkedBackend = new AzureNative.Web.StaticSiteLinkedBackend("staticSiteLinkedBackend", new()
    {
        BackendResourceId = "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend",
        LinkedBackendName = "testBackend",
        Name = "testStaticSite0",
        Region = "West US 2",
        ResourceGroupName = "rg",
    });

});
Copy
package main

import (
	web "github.com/pulumi/pulumi-azure-native-sdk/web/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := web.NewStaticSiteLinkedBackend(ctx, "staticSiteLinkedBackend", &web.StaticSiteLinkedBackendArgs{
			BackendResourceId: pulumi.String("/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend"),
			LinkedBackendName: pulumi.String("testBackend"),
			Name:              pulumi.String("testStaticSite0"),
			Region:            pulumi.String("West US 2"),
			ResourceGroupName: pulumi.String("rg"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.web.StaticSiteLinkedBackend;
import com.pulumi.azurenative.web.StaticSiteLinkedBackendArgs;
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 staticSiteLinkedBackend = new StaticSiteLinkedBackend("staticSiteLinkedBackend", StaticSiteLinkedBackendArgs.builder()
            .backendResourceId("/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend")
            .linkedBackendName("testBackend")
            .name("testStaticSite0")
            .region("West US 2")
            .resourceGroupName("rg")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const staticSiteLinkedBackend = new azure_native.web.StaticSiteLinkedBackend("staticSiteLinkedBackend", {
    backendResourceId: "/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend",
    linkedBackendName: "testBackend",
    name: "testStaticSite0",
    region: "West US 2",
    resourceGroupName: "rg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

static_site_linked_backend = azure_native.web.StaticSiteLinkedBackend("staticSiteLinkedBackend",
    backend_resource_id="/subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend",
    linked_backend_name="testBackend",
    name="testStaticSite0",
    region="West US 2",
    resource_group_name="rg")
Copy
resources:
  staticSiteLinkedBackend:
    type: azure-native:web:StaticSiteLinkedBackend
    properties:
      backendResourceId: /subscription/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/backendRg/providers/Microsoft.Web/sites/testBackend
      linkedBackendName: testBackend
      name: testStaticSite0
      region: West US 2
      resourceGroupName: rg
Copy

Create StaticSiteLinkedBackend Resource

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

Constructor syntax

new StaticSiteLinkedBackend(name: string, args: StaticSiteLinkedBackendArgs, opts?: CustomResourceOptions);
@overload
def StaticSiteLinkedBackend(resource_name: str,
                            args: StaticSiteLinkedBackendArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def StaticSiteLinkedBackend(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            name: Optional[str] = None,
                            region: Optional[str] = None,
                            resource_group_name: Optional[str] = None,
                            backend_resource_id: Optional[str] = None,
                            kind: Optional[str] = None,
                            linked_backend_name: Optional[str] = None)
func NewStaticSiteLinkedBackend(ctx *Context, name string, args StaticSiteLinkedBackendArgs, opts ...ResourceOption) (*StaticSiteLinkedBackend, error)
public StaticSiteLinkedBackend(string name, StaticSiteLinkedBackendArgs args, CustomResourceOptions? opts = null)
public StaticSiteLinkedBackend(String name, StaticSiteLinkedBackendArgs args)
public StaticSiteLinkedBackend(String name, StaticSiteLinkedBackendArgs args, CustomResourceOptions options)
type: azure-native:web:StaticSiteLinkedBackend
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteLinkedBackendArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StaticSiteLinkedBackendArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteLinkedBackendArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StaticSiteLinkedBackendArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StaticSiteLinkedBackendArgs
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 staticSiteLinkedBackendResource = new AzureNative.Web.StaticSiteLinkedBackend("staticSiteLinkedBackendResource", new()
{
    Name = "string",
    Region = "string",
    ResourceGroupName = "string",
    BackendResourceId = "string",
    Kind = "string",
    LinkedBackendName = "string",
});
Copy
example, err := web.NewStaticSiteLinkedBackend(ctx, "staticSiteLinkedBackendResource", &web.StaticSiteLinkedBackendArgs{
	Name:              "string",
	Region:            "string",
	ResourceGroupName: "string",
	BackendResourceId: "string",
	Kind:              "string",
	LinkedBackendName: "string",
})
Copy
var staticSiteLinkedBackendResource = new StaticSiteLinkedBackend("staticSiteLinkedBackendResource", StaticSiteLinkedBackendArgs.builder()
    .name("string")
    .region("string")
    .resourceGroupName("string")
    .backendResourceId("string")
    .kind("string")
    .linkedBackendName("string")
    .build());
Copy
static_site_linked_backend_resource = azure_native.web.StaticSiteLinkedBackend("staticSiteLinkedBackendResource",
    name=string,
    region=string,
    resource_group_name=string,
    backend_resource_id=string,
    kind=string,
    linked_backend_name=string)
Copy
const staticSiteLinkedBackendResource = new azure_native.web.StaticSiteLinkedBackend("staticSiteLinkedBackendResource", {
    name: "string",
    region: "string",
    resourceGroupName: "string",
    backendResourceId: "string",
    kind: "string",
    linkedBackendName: "string",
});
Copy
type: azure-native:web:StaticSiteLinkedBackend
properties:
    backendResourceId: string
    kind: string
    linkedBackendName: string
    name: string
    region: string
    resourceGroupName: string
Copy

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

Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the static site
Region This property is required. string
The region of the backend linked to the static site
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group to which the resource belongs.
BackendResourceId string
The resource id of the backend linked to the static site
Kind string
Kind of resource.
LinkedBackendName Changes to this property will trigger replacement. string
Name of the backend to link to the static site
Name
This property is required.
Changes to this property will trigger replacement.
string
Name of the static site
Region This property is required. string
The region of the backend linked to the static site
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group to which the resource belongs.
BackendResourceId string
The resource id of the backend linked to the static site
Kind string
Kind of resource.
LinkedBackendName Changes to this property will trigger replacement. string
Name of the backend to link to the static site
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the static site
region This property is required. String
The region of the backend linked to the static site
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group to which the resource belongs.
backendResourceId String
The resource id of the backend linked to the static site
kind String
Kind of resource.
linkedBackendName Changes to this property will trigger replacement. String
Name of the backend to link to the static site
name
This property is required.
Changes to this property will trigger replacement.
string
Name of the static site
region This property is required. string
The region of the backend linked to the static site
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Name of the resource group to which the resource belongs.
backendResourceId string
The resource id of the backend linked to the static site
kind string
Kind of resource.
linkedBackendName Changes to this property will trigger replacement. string
Name of the backend to link to the static site
name
This property is required.
Changes to this property will trigger replacement.
str
Name of the static site
region This property is required. str
The region of the backend linked to the static site
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the resource group to which the resource belongs.
backend_resource_id str
The resource id of the backend linked to the static site
kind str
Kind of resource.
linked_backend_name Changes to this property will trigger replacement. str
Name of the backend to link to the static site
name
This property is required.
Changes to this property will trigger replacement.
String
Name of the static site
region This property is required. String
The region of the backend linked to the static site
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Name of the resource group to which the resource belongs.
backendResourceId String
The resource id of the backend linked to the static site
kind String
Kind of resource.
linkedBackendName Changes to this property will trigger replacement. String
Name of the backend to link to the static site

Outputs

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

CreatedOn string
The date and time on which the backend was linked to the static site.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the linking process.
Type string
Resource type.
CreatedOn string
The date and time on which the backend was linked to the static site.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningState string
The provisioning state of the linking process.
Type string
Resource type.
createdOn String
The date and time on which the backend was linked to the static site.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the linking process.
type String
Resource type.
createdOn string
The date and time on which the backend was linked to the static site.
id string
The provider-assigned unique ID for this managed resource.
provisioningState string
The provisioning state of the linking process.
type string
Resource type.
created_on str
The date and time on which the backend was linked to the static site.
id str
The provider-assigned unique ID for this managed resource.
provisioning_state str
The provisioning state of the linking process.
type str
Resource type.
createdOn String
The date and time on which the backend was linked to the static site.
id String
The provider-assigned unique ID for this managed resource.
provisioningState String
The provisioning state of the linking process.
type String
Resource type.

Import

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

$ pulumi import azure-native:web:StaticSiteLinkedBackend testBackend /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/staticSites/{name}/linkedBackends/{linkedBackendName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi