RelationshipLinkArgs

data class RelationshipLinkArgs(val description: Output<Map<String, String>>? = null, val displayName: Output<Map<String, String>>? = null, val hubName: Output<String>? = null, val interactionType: Output<String>? = null, val mappings: Output<List<RelationshipLinkFieldMappingArgs>>? = null, val profilePropertyReferences: Output<List<ParticipantProfilePropertyReferenceArgs>>? = null, val relatedProfilePropertyReferences: Output<List<ParticipantProfilePropertyReferenceArgs>>? = null, val relationshipLinkName: Output<String>? = null, val relationshipName: Output<String>? = null, val resourceGroupName: Output<String>? = null) : ConvertibleToJava<RelationshipLinkArgs>

The relationship link resource format. Uses Azure REST API version 2017-04-26. In version 2.x of the Azure Native provider, it used 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/v3"
"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.ParticipantProfilePropertyReferenceArray{
&customerinsights.ParticipantProfilePropertyReferenceArgs{
InteractionPropertyName: pulumi.String("profile1"),
ProfilePropertyName: pulumi.String("ProfileId"),
},
},
RelatedProfilePropertyReferences: customerinsights.ParticipantProfilePropertyReferenceArray{
&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 com.pulumi.azurenative.customerinsights.inputs.ParticipantProfilePropertyReferenceArgs;
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(ParticipantProfilePropertyReferenceArgs.builder()
.interactionPropertyName("profile1")
.profilePropertyName("ProfileId")
.build())
.relatedProfilePropertyReferences(ParticipantProfilePropertyReferenceArgs.builder()
.interactionPropertyName("profile1")
.profilePropertyName("ProfileId")
.build())
.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/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CustomerInsights/hubs/{hubName}/relationshipLinks/{relationshipLinkName}

Constructors

Link copied to clipboard
constructor(description: Output<Map<String, String>>? = null, displayName: Output<Map<String, String>>? = null, hubName: Output<String>? = null, interactionType: Output<String>? = null, mappings: Output<List<RelationshipLinkFieldMappingArgs>>? = null, profilePropertyReferences: Output<List<ParticipantProfilePropertyReferenceArgs>>? = null, relatedProfilePropertyReferences: Output<List<ParticipantProfilePropertyReferenceArgs>>? = null, relationshipLinkName: Output<String>? = null, relationshipName: Output<String>? = null, resourceGroupName: Output<String>? = null)

Properties

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

Localized descriptions for the Relationship Link.

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

Localized display name for the Relationship Link.

Link copied to clipboard
val hubName: Output<String>? = null

The name of the hub.

Link copied to clipboard
val interactionType: Output<String>? = null

The InteractionType associated with the Relationship Link.

Link copied to clipboard

The mappings between Interaction and Relationship fields.

Link copied to clipboard

The property references for the Profile of the Relationship.

Link copied to clipboard

The property references for the Related Profile of the Relationship.

Link copied to clipboard
val relationshipLinkName: Output<String>? = null

The name of the relationship link.

Link copied to clipboard
val relationshipName: Output<String>? = null

The Relationship associated with the Link.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group.

Functions

Link copied to clipboard
open override fun toJava(): RelationshipLinkArgs