1. Packages
  2. Azure Native v2
  3. API Docs
  4. loadtestservice
  5. LoadTestProfileMapping
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.loadtestservice.LoadTestProfileMapping

Explore with Pulumi AI

LoadTest profile mapping resource details Azure REST API version: 2023-12-01-preview.

Example Usage

Create a Load Test Profile Mappings resource

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

return await Deployment.RunAsync(() => 
{
    var loadTestProfileMapping = new AzureNative.LoadTestService.LoadTestProfileMapping("loadTestProfileMapping", new()
    {
        AzureLoadTestingResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest",
        LoadTestProfileMappingName = "myLoadTestProfileMapping",
        ResourceUri = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename",
        TestProfileId = "123456",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := loadtestservice.NewLoadTestProfileMapping(ctx, "loadTestProfileMapping", &loadtestservice.LoadTestProfileMappingArgs{
			AzureLoadTestingResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest"),
			LoadTestProfileMappingName: pulumi.String("myLoadTestProfileMapping"),
			ResourceUri:                pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename"),
			TestProfileId:              pulumi.String("123456"),
		})
		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.loadtestservice.LoadTestProfileMapping;
import com.pulumi.azurenative.loadtestservice.LoadTestProfileMappingArgs;
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 loadTestProfileMapping = new LoadTestProfileMapping("loadTestProfileMapping", LoadTestProfileMappingArgs.builder()
            .azureLoadTestingResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest")
            .loadTestProfileMappingName("myLoadTestProfileMapping")
            .resourceUri("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename")
            .testProfileId("123456")
            .build());

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

const loadTestProfileMapping = new azure_native.loadtestservice.LoadTestProfileMapping("loadTestProfileMapping", {
    azureLoadTestingResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest",
    loadTestProfileMappingName: "myLoadTestProfileMapping",
    resourceUri: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename",
    testProfileId: "123456",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

load_test_profile_mapping = azure_native.loadtestservice.LoadTestProfileMapping("loadTestProfileMapping",
    azure_load_testing_resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest",
    load_test_profile_mapping_name="myLoadTestProfileMapping",
    resource_uri="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename",
    test_profile_id="123456")
Copy
resources:
  loadTestProfileMapping:
    type: azure-native:loadtestservice:LoadTestProfileMapping
    properties:
      azureLoadTestingResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.LoadTestService/loadTests/myLoadTest
      loadTestProfileMappingName: myLoadTestProfileMapping
      resourceUri: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/dummyrg/providers/Microsoft.Web/sites/sitename
      testProfileId: '123456'
Copy

Create LoadTestProfileMapping Resource

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

Constructor syntax

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

@overload
def LoadTestProfileMapping(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           resource_uri: Optional[str] = None,
                           azure_load_testing_resource_id: Optional[str] = None,
                           load_test_profile_mapping_name: Optional[str] = None,
                           source_resource_id: Optional[str] = None,
                           test_profile_id: Optional[str] = None)
func NewLoadTestProfileMapping(ctx *Context, name string, args LoadTestProfileMappingArgs, opts ...ResourceOption) (*LoadTestProfileMapping, error)
public LoadTestProfileMapping(string name, LoadTestProfileMappingArgs args, CustomResourceOptions? opts = null)
public LoadTestProfileMapping(String name, LoadTestProfileMappingArgs args)
public LoadTestProfileMapping(String name, LoadTestProfileMappingArgs args, CustomResourceOptions options)
type: azure-native:loadtestservice:LoadTestProfileMapping
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. LoadTestProfileMappingArgs
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. LoadTestProfileMappingArgs
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. LoadTestProfileMappingArgs
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. LoadTestProfileMappingArgs
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. LoadTestProfileMappingArgs
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 loadTestProfileMappingResource = new AzureNative.Loadtestservice.LoadTestProfileMapping("loadTestProfileMappingResource", new()
{
    ResourceUri = "string",
    AzureLoadTestingResourceId = "string",
    LoadTestProfileMappingName = "string",
    SourceResourceId = "string",
    TestProfileId = "string",
});
Copy
example, err := loadtestservice.NewLoadTestProfileMapping(ctx, "loadTestProfileMappingResource", &loadtestservice.LoadTestProfileMappingArgs{
	ResourceUri:                "string",
	AzureLoadTestingResourceId: "string",
	LoadTestProfileMappingName: "string",
	SourceResourceId:           "string",
	TestProfileId:              "string",
})
Copy
var loadTestProfileMappingResource = new LoadTestProfileMapping("loadTestProfileMappingResource", LoadTestProfileMappingArgs.builder()
    .resourceUri("string")
    .azureLoadTestingResourceId("string")
    .loadTestProfileMappingName("string")
    .sourceResourceId("string")
    .testProfileId("string")
    .build());
Copy
load_test_profile_mapping_resource = azure_native.loadtestservice.LoadTestProfileMapping("loadTestProfileMappingResource",
    resource_uri=string,
    azure_load_testing_resource_id=string,
    load_test_profile_mapping_name=string,
    source_resource_id=string,
    test_profile_id=string)
Copy
const loadTestProfileMappingResource = new azure_native.loadtestservice.LoadTestProfileMapping("loadTestProfileMappingResource", {
    resourceUri: "string",
    azureLoadTestingResourceId: "string",
    loadTestProfileMappingName: "string",
    sourceResourceId: "string",
    testProfileId: "string",
});
Copy
type: azure-native:loadtestservice:LoadTestProfileMapping
properties:
    azureLoadTestingResourceId: string
    loadTestProfileMappingName: string
    resourceUri: string
    sourceResourceId: string
    testProfileId: string
Copy

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

ResourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
AzureLoadTestingResourceId string
Mapped Azure Load Test resource Id.
LoadTestProfileMappingName Changes to this property will trigger replacement. string
Load Test Profile Mapping name
SourceResourceId string
Mapped source resource Id.
TestProfileId string
Mapped Azure Load Test resource test-profile-id.
ResourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
AzureLoadTestingResourceId string
Mapped Azure Load Test resource Id.
LoadTestProfileMappingName Changes to this property will trigger replacement. string
Load Test Profile Mapping name
SourceResourceId string
Mapped source resource Id.
TestProfileId string
Mapped Azure Load Test resource test-profile-id.
resourceUri
This property is required.
Changes to this property will trigger replacement.
String
The fully qualified Azure Resource manager identifier of the resource.
azureLoadTestingResourceId String
Mapped Azure Load Test resource Id.
loadTestProfileMappingName Changes to this property will trigger replacement. String
Load Test Profile Mapping name
sourceResourceId String
Mapped source resource Id.
testProfileId String
Mapped Azure Load Test resource test-profile-id.
resourceUri
This property is required.
Changes to this property will trigger replacement.
string
The fully qualified Azure Resource manager identifier of the resource.
azureLoadTestingResourceId string
Mapped Azure Load Test resource Id.
loadTestProfileMappingName Changes to this property will trigger replacement. string
Load Test Profile Mapping name
sourceResourceId string
Mapped source resource Id.
testProfileId string
Mapped Azure Load Test resource test-profile-id.
resource_uri
This property is required.
Changes to this property will trigger replacement.
str
The fully qualified Azure Resource manager identifier of the resource.
azure_load_testing_resource_id str
Mapped Azure Load Test resource Id.
load_test_profile_mapping_name Changes to this property will trigger replacement. str
Load Test Profile Mapping name
source_resource_id str
Mapped source resource Id.
test_profile_id str
Mapped Azure Load Test resource test-profile-id.
resourceUri
This property is required.
Changes to this property will trigger replacement.
String
The fully qualified Azure Resource manager identifier of the resource.
azureLoadTestingResourceId String
Mapped Azure Load Test resource Id.
loadTestProfileMappingName Changes to this property will trigger replacement. String
Load Test Profile Mapping name
sourceResourceId String
Mapped source resource Id.
testProfileId String
Mapped Azure Load Test resource test-profile-id.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.LoadTestService.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

SystemDataResponse
, SystemDataResponseArgs

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

Import

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

$ pulumi import azure-native:loadtestservice:LoadTestProfileMapping myLoadTestProfileMapping /{resourceUri}/providers/Microsoft.LoadTestService/loadTestProfileMappings/{loadTestProfileMappingName} 
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