azure-native.customerinsights.Relationship
Explore with Pulumi AI
The relationship resource format. API Version: 2017-04-26.
Example Usage
Relationships_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var relationship = new AzureNative.CustomerInsights.Relationship("relationship", new()
{
Cardinality = AzureNative.CustomerInsights.CardinalityTypes.OneToOne,
Description =
{
{ "en-us", "Relationship Description" },
},
DisplayName =
{
{ "en-us", "Relationship DisplayName" },
},
Fields = new[] {},
HubName = "sdkTestHub",
ProfileType = "testProfile2326994",
RelatedProfileType = "testProfile2326994",
RelationshipName = "SomeRelationship",
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.NewRelationship(ctx, "relationship", &customerinsights.RelationshipArgs{
Cardinality: customerinsights.CardinalityTypesOneToOne,
Description: pulumi.StringMap{
"en-us": pulumi.String("Relationship Description"),
},
DisplayName: pulumi.StringMap{
"en-us": pulumi.String("Relationship DisplayName"),
},
Fields: customerinsights.PropertyDefinitionArray{},
HubName: pulumi.String("sdkTestHub"),
ProfileType: pulumi.String("testProfile2326994"),
RelatedProfileType: pulumi.String("testProfile2326994"),
RelationshipName: pulumi.String("SomeRelationship"),
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.Relationship;
import com.pulumi.azurenative.customerinsights.RelationshipArgs;
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 relationship = new Relationship("relationship", RelationshipArgs.builder()
.cardinality("OneToOne")
.description(Map.of("en-us", "Relationship Description"))
.displayName(Map.of("en-us", "Relationship DisplayName"))
.fields()
.hubName("sdkTestHub")
.profileType("testProfile2326994")
.relatedProfileType("testProfile2326994")
.relationshipName("SomeRelationship")
.resourceGroupName("TestHubRG")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
relationship = azure_native.customerinsights.Relationship("relationship",
cardinality=azure_native.customerinsights.CardinalityTypes.ONE_TO_ONE,
description={
"en-us": "Relationship Description",
},
display_name={
"en-us": "Relationship DisplayName",
},
fields=[],
hub_name="sdkTestHub",
profile_type="testProfile2326994",
related_profile_type="testProfile2326994",
relationship_name="SomeRelationship",
resource_group_name="TestHubRG")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const relationship = new azure_native.customerinsights.Relationship("relationship", {
cardinality: azure_native.customerinsights.CardinalityTypes.OneToOne,
description: {
"en-us": "Relationship Description",
},
displayName: {
"en-us": "Relationship DisplayName",
},
fields: [],
hubName: "sdkTestHub",
profileType: "testProfile2326994",
relatedProfileType: "testProfile2326994",
relationshipName: "SomeRelationship",
resourceGroupName: "TestHubRG",
});
resources:
relationship:
type: azure-native:customerinsights:Relationship
properties:
cardinality: OneToOne
description:
en-us: Relationship Description
displayName:
en-us: Relationship DisplayName
fields: []
hubName: sdkTestHub
profileType: testProfile2326994
relatedProfileType: testProfile2326994
relationshipName: SomeRelationship
resourceGroupName: TestHubRG
Create Relationship Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Relationship(name: string, args: RelationshipArgs, opts?: CustomResourceOptions);
@overload
def Relationship(resource_name: str,
args: RelationshipArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Relationship(resource_name: str,
opts: Optional[ResourceOptions] = None,
hub_name: Optional[str] = None,
profile_type: Optional[str] = None,
related_profile_type: Optional[str] = None,
resource_group_name: Optional[str] = None,
cardinality: Optional[CardinalityTypes] = None,
description: Optional[Mapping[str, str]] = None,
display_name: Optional[Mapping[str, str]] = None,
expiry_date_time_utc: Optional[str] = None,
fields: Optional[Sequence[PropertyDefinitionArgs]] = None,
lookup_mappings: Optional[Sequence[RelationshipTypeMappingArgs]] = None,
relationship_name: Optional[str] = None)
func NewRelationship(ctx *Context, name string, args RelationshipArgs, opts ...ResourceOption) (*Relationship, error)
public Relationship(string name, RelationshipArgs args, CustomResourceOptions? opts = null)
public Relationship(String name, RelationshipArgs args)
public Relationship(String name, RelationshipArgs args, CustomResourceOptions options)
type: azure-native:customerinsights:Relationship
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 RelationshipArgs
- 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 RelationshipArgs
- 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 RelationshipArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RelationshipArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RelationshipArgs
- 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 relationshipResource = new AzureNative.Customerinsights.Relationship("relationshipResource", new()
{
HubName = "string",
ProfileType = "string",
RelatedProfileType = "string",
ResourceGroupName = "string",
Cardinality = "OneToOne",
Description =
{
{ "string", "string" },
},
DisplayName =
{
{ "string", "string" },
},
ExpiryDateTimeUtc = "string",
Fields = new[]
{
{
{ "fieldName", "string" },
{ "fieldType", "string" },
{ "isEnum", false },
{ "enumValidValues", new[]
{
{
{ "localizedValueNames",
{
{ "string", "string" },
} },
{ "value", 0 },
},
} },
{ "isArray", false },
{ "isAvailableInGraph", false },
{ "arrayValueSeparator", "string" },
{ "isFlagEnum", false },
{ "isImage", false },
{ "isLocalizedString", false },
{ "isName", false },
{ "isRequired", false },
{ "maxLength", 0 },
{ "propertyId", "string" },
{ "schemaItemPropLink", "string" },
},
},
LookupMappings = new[]
{
{
{ "fieldMappings", new[]
{
{
{ "profileFieldName", "string" },
{ "relatedProfileKeyProperty", "string" },
},
} },
},
},
RelationshipName = "string",
});
example, err := customerinsights.NewRelationship(ctx, "relationshipResource", &customerinsights.RelationshipArgs{
HubName: "string",
ProfileType: "string",
RelatedProfileType: "string",
ResourceGroupName: "string",
Cardinality: "OneToOne",
Description: map[string]interface{}{
"string": "string",
},
DisplayName: map[string]interface{}{
"string": "string",
},
ExpiryDateTimeUtc: "string",
Fields: []map[string]interface{}{
map[string]interface{}{
"fieldName": "string",
"fieldType": "string",
"isEnum": false,
"enumValidValues": []map[string]interface{}{
map[string]interface{}{
"localizedValueNames": map[string]interface{}{
"string": "string",
},
"value": 0,
},
},
"isArray": false,
"isAvailableInGraph": false,
"arrayValueSeparator": "string",
"isFlagEnum": false,
"isImage": false,
"isLocalizedString": false,
"isName": false,
"isRequired": false,
"maxLength": 0,
"propertyId": "string",
"schemaItemPropLink": "string",
},
},
LookupMappings: []map[string]interface{}{
map[string]interface{}{
"fieldMappings": []map[string]interface{}{
map[string]interface{}{
"profileFieldName": "string",
"relatedProfileKeyProperty": "string",
},
},
},
},
RelationshipName: "string",
})
var relationshipResource = new Relationship("relationshipResource", RelationshipArgs.builder()
.hubName("string")
.profileType("string")
.relatedProfileType("string")
.resourceGroupName("string")
.cardinality("OneToOne")
.description(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.displayName(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.expiryDateTimeUtc("string")
.fields(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.lookupMappings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.relationshipName("string")
.build());
relationship_resource = azure_native.customerinsights.Relationship("relationshipResource",
hub_name=string,
profile_type=string,
related_profile_type=string,
resource_group_name=string,
cardinality=OneToOne,
description={
string: string,
},
display_name={
string: string,
},
expiry_date_time_utc=string,
fields=[{
fieldName: string,
fieldType: string,
isEnum: False,
enumValidValues: [{
localizedValueNames: {
string: string,
},
value: 0,
}],
isArray: False,
isAvailableInGraph: False,
arrayValueSeparator: string,
isFlagEnum: False,
isImage: False,
isLocalizedString: False,
isName: False,
isRequired: False,
maxLength: 0,
propertyId: string,
schemaItemPropLink: string,
}],
lookup_mappings=[{
fieldMappings: [{
profileFieldName: string,
relatedProfileKeyProperty: string,
}],
}],
relationship_name=string)
const relationshipResource = new azure_native.customerinsights.Relationship("relationshipResource", {
hubName: "string",
profileType: "string",
relatedProfileType: "string",
resourceGroupName: "string",
cardinality: "OneToOne",
description: {
string: "string",
},
displayName: {
string: "string",
},
expiryDateTimeUtc: "string",
fields: [{
fieldName: "string",
fieldType: "string",
isEnum: false,
enumValidValues: [{
localizedValueNames: {
string: "string",
},
value: 0,
}],
isArray: false,
isAvailableInGraph: false,
arrayValueSeparator: "string",
isFlagEnum: false,
isImage: false,
isLocalizedString: false,
isName: false,
isRequired: false,
maxLength: 0,
propertyId: "string",
schemaItemPropLink: "string",
}],
lookupMappings: [{
fieldMappings: [{
profileFieldName: "string",
relatedProfileKeyProperty: "string",
}],
}],
relationshipName: "string",
});
type: azure-native:customerinsights:Relationship
properties:
cardinality: OneToOne
description:
string: string
displayName:
string: string
expiryDateTimeUtc: string
fields:
- arrayValueSeparator: string
enumValidValues:
- localizedValueNames:
string: string
value: 0
fieldName: string
fieldType: string
isArray: false
isAvailableInGraph: false
isEnum: false
isFlagEnum: false
isImage: false
isLocalizedString: false
isName: false
isRequired: false
maxLength: 0
propertyId: string
schemaItemPropLink: string
hubName: string
lookupMappings:
- fieldMappings:
- profileFieldName: string
relatedProfileKeyProperty: string
profileType: string
relatedProfileType: string
relationshipName: string
resourceGroupName: string
Relationship 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 Relationship resource accepts the following input properties:
- Hub
Name string - The name of the hub.
- Profile
Type string - Profile type.
- string
- Related profile being referenced.
- Resource
Group stringName - The name of the resource group.
- Cardinality
Pulumi.
Azure Native. Customer Insights. Cardinality Types - The Relationship Cardinality.
- Description Dictionary<string, string>
- Localized descriptions for the Relationship.
- Display
Name Dictionary<string, string> - Localized display name for the Relationship.
- Expiry
Date stringTime Utc - The expiry date time in UTC.
- Fields
List<Pulumi.
Azure Native. Customer Insights. Inputs. Property Definition> - The properties of the Relationship.
- Lookup
Mappings List<Pulumi.Azure Native. Customer Insights. Inputs. Relationship Type Mapping> - Optional property to be used to map fields in profile to their strong ids in related profile.
- Relationship
Name string - The name of the Relationship.
- Hub
Name string - The name of the hub.
- Profile
Type string - Profile type.
- string
- Related profile being referenced.
- Resource
Group stringName - The name of the resource group.
- Cardinality
Cardinality
Types - The Relationship Cardinality.
- Description map[string]string
- Localized descriptions for the Relationship.
- Display
Name map[string]string - Localized display name for the Relationship.
- Expiry
Date stringTime Utc - The expiry date time in UTC.
- Fields
[]Property
Definition Args - The properties of the Relationship.
- Lookup
Mappings []RelationshipType Mapping Args - Optional property to be used to map fields in profile to their strong ids in related profile.
- Relationship
Name string - The name of the Relationship.
- hub
Name String - The name of the hub.
- profile
Type String - Profile type.
- String
- Related profile being referenced.
- resource
Group StringName - The name of the resource group.
- cardinality
Cardinality
Types - The Relationship Cardinality.
- description Map<String,String>
- Localized descriptions for the Relationship.
- display
Name Map<String,String> - Localized display name for the Relationship.
- expiry
Date StringTime Utc - The expiry date time in UTC.
- fields
List<Property
Definition> - The properties of the Relationship.
- lookup
Mappings List<RelationshipType Mapping> - Optional property to be used to map fields in profile to their strong ids in related profile.
- relationship
Name String - The name of the Relationship.
- hub
Name string - The name of the hub.
- profile
Type string - Profile type.
- string
- Related profile being referenced.
- resource
Group stringName - The name of the resource group.
- cardinality
Cardinality
Types - The Relationship Cardinality.
- description {[key: string]: string}
- Localized descriptions for the Relationship.
- display
Name {[key: string]: string} - Localized display name for the Relationship.
- expiry
Date stringTime Utc - The expiry date time in UTC.
- fields
Property
Definition[] - The properties of the Relationship.
- lookup
Mappings RelationshipType Mapping[] - Optional property to be used to map fields in profile to their strong ids in related profile.
- relationship
Name string - The name of the Relationship.
- hub_
name str - The name of the hub.
- profile_
type str - Profile type.
- str
- Related profile being referenced.
- resource_
group_ strname - The name of the resource group.
- cardinality
Cardinality
Types - The Relationship Cardinality.
- description Mapping[str, str]
- Localized descriptions for the Relationship.
- display_
name Mapping[str, str] - Localized display name for the Relationship.
- expiry_
date_ strtime_ utc - The expiry date time in UTC.
- fields
Sequence[Property
Definition Args] - The properties of the Relationship.
- lookup_
mappings Sequence[RelationshipType Mapping Args] - Optional property to be used to map fields in profile to their strong ids in related profile.
- relationship_
name str - The name of the Relationship.
- hub
Name String - The name of the hub.
- profile
Type String - Profile type.
- String
- Related profile being referenced.
- resource
Group StringName - The name of the resource group.
- cardinality
"One
To One" | "One To Many" | "Many To Many" - The Relationship Cardinality.
- description Map<String>
- Localized descriptions for the Relationship.
- display
Name Map<String> - Localized display name for the Relationship.
- expiry
Date StringTime Utc - The expiry date time in UTC.
- fields List<Property Map>
- The properties of the Relationship.
- lookup
Mappings List<Property Map> - Optional property to be used to map fields in profile to their strong ids in related profile.
- relationship
Name String - The name of the Relationship.
Outputs
All input properties are implicitly available as output properties. Additionally, the Relationship resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state.
- Relationship
Guid stringId - The relationship guid id.
- Tenant
Id string - The hub name.
- Type string
- Resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state.
- Relationship
Guid stringId - The relationship guid id.
- Tenant
Id string - The hub name.
- Type string
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state.
- relationship
Guid StringId - The relationship guid id.
- tenant
Id String - The hub name.
- type String
- Resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - Provisioning state.
- relationship
Guid stringId - The relationship guid id.
- tenant
Id string - The hub name.
- type string
- Resource type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - Provisioning state.
- relationship_
guid_ strid - The relationship guid id.
- tenant_
id str - The hub name.
- type str
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state.
- relationship
Guid StringId - The relationship guid id.
- tenant
Id String - The hub name.
- type String
- Resource type.
Supporting Types
CardinalityTypes, CardinalityTypesArgs
- One
To One - OneToOne
- One
To Many - OneToMany
- Many
To Many - ManyToMany
- Cardinality
Types One To One - OneToOne
- Cardinality
Types One To Many - OneToMany
- Cardinality
Types Many To Many - ManyToMany
- One
To One - OneToOne
- One
To Many - OneToMany
- Many
To Many - ManyToMany
- One
To One - OneToOne
- One
To Many - OneToMany
- Many
To Many - ManyToMany
- ONE_TO_ONE
- OneToOne
- ONE_TO_MANY
- OneToMany
- MANY_TO_MANY
- ManyToMany
- "One
To One" - OneToOne
- "One
To Many" - OneToMany
- "Many
To Many" - ManyToMany
DataSourcePrecedenceResponse, DataSourcePrecedenceResponseArgs
- Data
Source stringReference Id - The data source reference id.
- Data
Source stringType - The data source type.
- Id int
- The data source ID.
- Name string
- The data source name
- Status string
- The data source status.
- Precedence int
- the precedence value.
- Data
Source stringReference Id - The data source reference id.
- Data
Source stringType - The data source type.
- Id int
- The data source ID.
- Name string
- The data source name
- Status string
- The data source status.
- Precedence int
- the precedence value.
- data
Source StringReference Id - The data source reference id.
- data
Source StringType - The data source type.
- id Integer
- The data source ID.
- name String
- The data source name
- status String
- The data source status.
- precedence Integer
- the precedence value.
- data
Source stringReference Id - The data source reference id.
- data
Source stringType - The data source type.
- id number
- The data source ID.
- name string
- The data source name
- status string
- The data source status.
- precedence number
- the precedence value.
- data_
source_ strreference_ id - The data source reference id.
- data_
source_ strtype - The data source type.
- id int
- The data source ID.
- name str
- The data source name
- status str
- The data source status.
- precedence int
- the precedence value.
- data
Source StringReference Id - The data source reference id.
- data
Source StringType - The data source type.
- id Number
- The data source ID.
- name String
- The data source name
- status String
- The data source status.
- precedence Number
- the precedence value.
ProfileEnumValidValuesFormat, ProfileEnumValidValuesFormatArgs
- Localized
Value Dictionary<string, string>Names - Localized names of the enum member.
- Value int
- The integer value of the enum member.
- Localized
Value map[string]stringNames - Localized names of the enum member.
- Value int
- The integer value of the enum member.
- localized
Value Map<String,String>Names - Localized names of the enum member.
- value Integer
- The integer value of the enum member.
- localized
Value {[key: string]: string}Names - Localized names of the enum member.
- value number
- The integer value of the enum member.
- localized_
value_ Mapping[str, str]names - Localized names of the enum member.
- value int
- The integer value of the enum member.
- localized
Value Map<String>Names - Localized names of the enum member.
- value Number
- The integer value of the enum member.
ProfileEnumValidValuesFormatResponse, ProfileEnumValidValuesFormatResponseArgs
- Localized
Value Dictionary<string, string>Names - Localized names of the enum member.
- Value int
- The integer value of the enum member.
- Localized
Value map[string]stringNames - Localized names of the enum member.
- Value int
- The integer value of the enum member.
- localized
Value Map<String,String>Names - Localized names of the enum member.
- value Integer
- The integer value of the enum member.
- localized
Value {[key: string]: string}Names - Localized names of the enum member.
- value number
- The integer value of the enum member.
- localized_
value_ Mapping[str, str]names - Localized names of the enum member.
- value int
- The integer value of the enum member.
- localized
Value Map<String>Names - Localized names of the enum member.
- value Number
- The integer value of the enum member.
PropertyDefinition, PropertyDefinitionArgs
- Field
Name string - Name of the property.
- Field
Type string - Type of the property.
- Array
Value stringSeparator - Array value separator for properties with isArray set.
- Enum
Valid List<Pulumi.Values Azure Native. Customer Insights. Inputs. Profile Enum Valid Values Format> - Describes valid values for an enum property.
- Is
Array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- Is
Available boolIn Graph - Whether property is available in graph or not.
- Is
Enum bool - Indicates if the property is an enum.
- Is
Flag boolEnum - Indicates if the property is an flag enum.
- Is
Image bool - Whether the property is an Image.
- Is
Localized boolString - Whether the property is a localized string.
- Is
Name bool - Whether the property is a name or a part of name.
- Is
Required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- Max
Length int - Max length of string. Used only if type is string.
- Property
Id string - The ID associated with the property.
- Schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- Field
Name string - Name of the property.
- Field
Type string - Type of the property.
- Array
Value stringSeparator - Array value separator for properties with isArray set.
- Enum
Valid []ProfileValues Enum Valid Values Format - Describes valid values for an enum property.
- Is
Array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- Is
Available boolIn Graph - Whether property is available in graph or not.
- Is
Enum bool - Indicates if the property is an enum.
- Is
Flag boolEnum - Indicates if the property is an flag enum.
- Is
Image bool - Whether the property is an Image.
- Is
Localized boolString - Whether the property is a localized string.
- Is
Name bool - Whether the property is a name or a part of name.
- Is
Required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- Max
Length int - Max length of string. Used only if type is string.
- Property
Id string - The ID associated with the property.
- Schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- field
Name String - Name of the property.
- field
Type String - Type of the property.
- array
Value StringSeparator - Array value separator for properties with isArray set.
- enum
Valid List<ProfileValues Enum Valid Values Format> - Describes valid values for an enum property.
- is
Array Boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available BooleanIn Graph - Whether property is available in graph or not.
- is
Enum Boolean - Indicates if the property is an enum.
- is
Flag BooleanEnum - Indicates if the property is an flag enum.
- is
Image Boolean - Whether the property is an Image.
- is
Localized BooleanString - Whether the property is a localized string.
- is
Name Boolean - Whether the property is a name or a part of name.
- is
Required Boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length Integer - Max length of string. Used only if type is string.
- property
Id String - The ID associated with the property.
- schema
Item StringProp Link - URL encoded schema.org item prop link for the property.
- field
Name string - Name of the property.
- field
Type string - Type of the property.
- array
Value stringSeparator - Array value separator for properties with isArray set.
- enum
Valid ProfileValues Enum Valid Values Format[] - Describes valid values for an enum property.
- is
Array boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available booleanIn Graph - Whether property is available in graph or not.
- is
Enum boolean - Indicates if the property is an enum.
- is
Flag booleanEnum - Indicates if the property is an flag enum.
- is
Image boolean - Whether the property is an Image.
- is
Localized booleanString - Whether the property is a localized string.
- is
Name boolean - Whether the property is a name or a part of name.
- is
Required boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length number - Max length of string. Used only if type is string.
- property
Id string - The ID associated with the property.
- schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- field_
name str - Name of the property.
- field_
type str - Type of the property.
- array_
value_ strseparator - Array value separator for properties with isArray set.
- enum_
valid_ Sequence[Profilevalues Enum Valid Values Format] - Describes valid values for an enum property.
- is_
array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- is_
available_ boolin_ graph - Whether property is available in graph or not.
- is_
enum bool - Indicates if the property is an enum.
- is_
flag_ boolenum - Indicates if the property is an flag enum.
- is_
image bool - Whether the property is an Image.
- is_
localized_ boolstring - Whether the property is a localized string.
- is_
name bool - Whether the property is a name or a part of name.
- is_
required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max_
length int - Max length of string. Used only if type is string.
- property_
id str - The ID associated with the property.
- schema_
item_ strprop_ link - URL encoded schema.org item prop link for the property.
- field
Name String - Name of the property.
- field
Type String - Type of the property.
- array
Value StringSeparator - Array value separator for properties with isArray set.
- enum
Valid List<Property Map>Values - Describes valid values for an enum property.
- is
Array Boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available BooleanIn Graph - Whether property is available in graph or not.
- is
Enum Boolean - Indicates if the property is an enum.
- is
Flag BooleanEnum - Indicates if the property is an flag enum.
- is
Image Boolean - Whether the property is an Image.
- is
Localized BooleanString - Whether the property is a localized string.
- is
Name Boolean - Whether the property is a name or a part of name.
- is
Required Boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length Number - Max length of string. Used only if type is string.
- property
Id String - The ID associated with the property.
- schema
Item StringProp Link - URL encoded schema.org item prop link for the property.
PropertyDefinitionResponse, PropertyDefinitionResponseArgs
- Data
Source List<Pulumi.Precedence Rules Azure Native. Customer Insights. Inputs. Data Source Precedence Response> - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- Field
Name string - Name of the property.
- Field
Type string - Type of the property.
- Array
Value stringSeparator - Array value separator for properties with isArray set.
- Enum
Valid List<Pulumi.Values Azure Native. Customer Insights. Inputs. Profile Enum Valid Values Format Response> - Describes valid values for an enum property.
- Is
Array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- Is
Available boolIn Graph - Whether property is available in graph or not.
- Is
Enum bool - Indicates if the property is an enum.
- Is
Flag boolEnum - Indicates if the property is an flag enum.
- Is
Image bool - Whether the property is an Image.
- Is
Localized boolString - Whether the property is a localized string.
- Is
Name bool - Whether the property is a name or a part of name.
- Is
Required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- Max
Length int - Max length of string. Used only if type is string.
- Property
Id string - The ID associated with the property.
- Schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- Data
Source []DataPrecedence Rules Source Precedence Response - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- Field
Name string - Name of the property.
- Field
Type string - Type of the property.
- Array
Value stringSeparator - Array value separator for properties with isArray set.
- Enum
Valid []ProfileValues Enum Valid Values Format Response - Describes valid values for an enum property.
- Is
Array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- Is
Available boolIn Graph - Whether property is available in graph or not.
- Is
Enum bool - Indicates if the property is an enum.
- Is
Flag boolEnum - Indicates if the property is an flag enum.
- Is
Image bool - Whether the property is an Image.
- Is
Localized boolString - Whether the property is a localized string.
- Is
Name bool - Whether the property is a name or a part of name.
- Is
Required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- Max
Length int - Max length of string. Used only if type is string.
- Property
Id string - The ID associated with the property.
- Schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- data
Source List<DataPrecedence Rules Source Precedence Response> - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- field
Name String - Name of the property.
- field
Type String - Type of the property.
- array
Value StringSeparator - Array value separator for properties with isArray set.
- enum
Valid List<ProfileValues Enum Valid Values Format Response> - Describes valid values for an enum property.
- is
Array Boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available BooleanIn Graph - Whether property is available in graph or not.
- is
Enum Boolean - Indicates if the property is an enum.
- is
Flag BooleanEnum - Indicates if the property is an flag enum.
- is
Image Boolean - Whether the property is an Image.
- is
Localized BooleanString - Whether the property is a localized string.
- is
Name Boolean - Whether the property is a name or a part of name.
- is
Required Boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length Integer - Max length of string. Used only if type is string.
- property
Id String - The ID associated with the property.
- schema
Item StringProp Link - URL encoded schema.org item prop link for the property.
- data
Source DataPrecedence Rules Source Precedence Response[] - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- field
Name string - Name of the property.
- field
Type string - Type of the property.
- array
Value stringSeparator - Array value separator for properties with isArray set.
- enum
Valid ProfileValues Enum Valid Values Format Response[] - Describes valid values for an enum property.
- is
Array boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available booleanIn Graph - Whether property is available in graph or not.
- is
Enum boolean - Indicates if the property is an enum.
- is
Flag booleanEnum - Indicates if the property is an flag enum.
- is
Image boolean - Whether the property is an Image.
- is
Localized booleanString - Whether the property is a localized string.
- is
Name boolean - Whether the property is a name or a part of name.
- is
Required boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length number - Max length of string. Used only if type is string.
- property
Id string - The ID associated with the property.
- schema
Item stringProp Link - URL encoded schema.org item prop link for the property.
- data_
source_ Sequence[Dataprecedence_ rules Source Precedence Response] - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- field_
name str - Name of the property.
- field_
type str - Type of the property.
- array_
value_ strseparator - Array value separator for properties with isArray set.
- enum_
valid_ Sequence[Profilevalues Enum Valid Values Format Response] - Describes valid values for an enum property.
- is_
array bool - Indicates if the property is actually an array of the fieldType above on the data api.
- is_
available_ boolin_ graph - Whether property is available in graph or not.
- is_
enum bool - Indicates if the property is an enum.
- is_
flag_ boolenum - Indicates if the property is an flag enum.
- is_
image bool - Whether the property is an Image.
- is_
localized_ boolstring - Whether the property is a localized string.
- is_
name bool - Whether the property is a name or a part of name.
- is_
required bool - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max_
length int - Max length of string. Used only if type is string.
- property_
id str - The ID associated with the property.
- schema_
item_ strprop_ link - URL encoded schema.org item prop link for the property.
- data
Source List<Property Map>Precedence Rules - This is specific to interactions modeled as activities. Data sources are used to determine where data is stored and also in precedence rules.
- field
Name String - Name of the property.
- field
Type String - Type of the property.
- array
Value StringSeparator - Array value separator for properties with isArray set.
- enum
Valid List<Property Map>Values - Describes valid values for an enum property.
- is
Array Boolean - Indicates if the property is actually an array of the fieldType above on the data api.
- is
Available BooleanIn Graph - Whether property is available in graph or not.
- is
Enum Boolean - Indicates if the property is an enum.
- is
Flag BooleanEnum - Indicates if the property is an flag enum.
- is
Image Boolean - Whether the property is an Image.
- is
Localized BooleanString - Whether the property is a localized string.
- is
Name Boolean - Whether the property is a name or a part of name.
- is
Required Boolean - Whether property value is required on instances, IsRequired field only for Interaction. Profile Instance will not check for required field.
- max
Length Number - Max length of string. Used only if type is string.
- property
Id String - The ID associated with the property.
- schema
Item StringProp Link - URL encoded schema.org item prop link for the property.
RelationshipTypeFieldMapping, RelationshipTypeFieldMappingArgs
- Profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- Profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field StringName - Specifies the fieldName in profile.
- String
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile_
field_ strname - Specifies the fieldName in profile.
- str
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field StringName - Specifies the fieldName in profile.
- String
- Specifies the KeyProperty (from StrongId) of the related profile.
RelationshipTypeFieldMappingResponse, RelationshipTypeFieldMappingResponseArgs
- Profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- Profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field StringName - Specifies the fieldName in profile.
- String
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field stringName - Specifies the fieldName in profile.
- string
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile_
field_ strname - Specifies the fieldName in profile.
- str
- Specifies the KeyProperty (from StrongId) of the related profile.
- profile
Field StringName - Specifies the fieldName in profile.
- String
- Specifies the KeyProperty (from StrongId) of the related profile.
RelationshipTypeMapping, RelationshipTypeMappingArgs
- Field
Mappings List<Pulumi.Azure Native. Customer Insights. Inputs. Relationship Type Field Mapping> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- Field
Mappings []RelationshipType Field Mapping - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings List<RelationshipType Field Mapping> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings RelationshipType Field Mapping[] - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field_
mappings Sequence[RelationshipType Field Mapping] - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings List<Property Map> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
RelationshipTypeMappingResponse, RelationshipTypeMappingResponseArgs
- Field
Mappings List<Pulumi.Azure Native. Customer Insights. Inputs. Relationship Type Field Mapping Response> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- Field
Mappings []RelationshipType Field Mapping Response - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings List<RelationshipType Field Mapping Response> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings RelationshipType Field Mapping Response[] - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field_
mappings Sequence[RelationshipType Field Mapping Response] - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
- field
Mappings List<Property Map> - Maps a profile property with the StrongId of related profile. This is an array to support StrongIds that are composite key as well.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:customerinsights:Relationship sdkTestHub/testProfile2326994 /subscriptions/c909e979-ef71-4def-a970-bc7c154db8c5/resourceGroups/TestHubRG/providers/Microsoft.CustomerInsights/hubs/sdkTestHub/relationships/SomeRelationship
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0