RelationshipLink

class RelationshipLink : KotlinCustomResource

The relationship link resource format. API Version: 2017-04-26.

Example Usage

RelationshipLinks_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var relationshipLink = new AzureNative.CustomerInsights.RelationshipLink("relationshipLink", new()
{
Description =
{
{ "en-us", "Link Description" },
},
DisplayName =
{
{ "en-us", "Link DisplayName" },
},
HubName = "sdkTestHub",
InteractionType = "testInteraction4332",
ProfilePropertyReferences = new[]
{
new AzureNative.CustomerInsights.Inputs.ParticipantProfilePropertyReferenceArgs
{
InteractionPropertyName = "profile1",
ProfilePropertyName = "ProfileId",
},
},
RelatedProfilePropertyReferences = new[]
{
new AzureNative.CustomerInsights.Inputs.ParticipantProfilePropertyReferenceArgs
{
InteractionPropertyName = "profile1",
ProfilePropertyName = "ProfileId",
},
},
RelationshipLinkName = "Somelink",
RelationshipName = "testProfile2326994",
ResourceGroupName = "TestHubRG",
});
});
package main
import (
customerinsights "github.com/pulumi/pulumi-azure-native-sdk/customerinsights"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := customerinsights.NewRelationshipLink(ctx, "relationshipLink", &customerinsights.RelationshipLinkArgs{
Description: pulumi.StringMap{
"en-us": pulumi.String("Link Description"),
},
DisplayName: pulumi.StringMap{
"en-us": pulumi.String("Link DisplayName"),
},
HubName: pulumi.String("sdkTestHub"),
InteractionType: pulumi.String("testInteraction4332"),
ProfilePropertyReferences: []customerinsights.ParticipantProfilePropertyReferenceArgs{
{
InteractionPropertyName: pulumi.String("profile1"),
ProfilePropertyName: pulumi.String("ProfileId"),
},
},
RelatedProfilePropertyReferences: []customerinsights.ParticipantProfilePropertyReferenceArgs{
{
InteractionPropertyName: pulumi.String("profile1"),
ProfilePropertyName: pulumi.String("ProfileId"),
},
},
RelationshipLinkName: pulumi.String("Somelink"),
RelationshipName: pulumi.String("testProfile2326994"),
ResourceGroupName: pulumi.String("TestHubRG"),
})
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.customerinsights.RelationshipLink;
import com.pulumi.azurenative.customerinsights.RelationshipLinkArgs;
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 relationshipLink = new RelationshipLink("relationshipLink", RelationshipLinkArgs.builder()
.description(Map.of("en-us", "Link Description"))
.displayName(Map.of("en-us", "Link DisplayName"))
.hubName("sdkTestHub")
.interactionType("testInteraction4332")
.profilePropertyReferences(Map.ofEntries(
Map.entry("interactionPropertyName", "profile1"),
Map.entry("profilePropertyName", "ProfileId")
))
.relatedProfilePropertyReferences(Map.ofEntries(
Map.entry("interactionPropertyName", "profile1"),
Map.entry("profilePropertyName", "ProfileId")
))
.relationshipLinkName("Somelink")
.relationshipName("testProfile2326994")
.resourceGroupName("TestHubRG")
.build());
}
}

Import

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

$ pulumi import azure-native:customerinsights:RelationshipLink sdkTestHub/Somelink /subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationshipLinks/Somelink

Properties

Link copied to clipboard
val description: Output<Map<String, String>>?

Localized descriptions for the Relationship Link.

Link copied to clipboard
val displayName: Output<Map<String, String>>?

Localized display name for the Relationship Link.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val interactionType: Output<String>

The InteractionType associated with the Relationship Link.

Link copied to clipboard
val linkName: Output<String>

The name of the Relationship Link.

Link copied to clipboard

The mappings between Interaction and Relationship fields.

Link copied to clipboard
val name: Output<String>

Resource name.

Link copied to clipboard

The property references for the Profile of the Relationship.

Link copied to clipboard

Provisioning state.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The property references for the Related Profile of the Relationship.

Link copied to clipboard

The relationship guid id.

Link copied to clipboard

The Relationship associated with the Link.

Link copied to clipboard
val tenantId: Output<String>

The hub name.

Link copied to clipboard
val type: Output<String>

Resource type.

Link copied to clipboard
val urn: Output<String>