1. Packages
  2. Azure Native
  3. API Docs
  4. customerinsights
  5. Prediction
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.customerinsights.Prediction

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

The prediction 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

Predictions_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var prediction = new AzureNative.CustomerInsights.Prediction("prediction", new()
    {
        AutoAnalyze = true,
        Description = 
        {
            { "en-us", "sdktest" },
        },
        DisplayName = 
        {
            { "en-us", "sdktest" },
        },
        Grades = new[] {},
        HubName = "sdkTestHub",
        InvolvedInteractionTypes = new[] {},
        InvolvedKpiTypes = new[] {},
        InvolvedRelationships = new[] {},
        Mappings = new AzureNative.CustomerInsights.Inputs.PredictionMappingsArgs
        {
            Grade = "sdktest_Grade",
            Reason = "sdktest_Reason",
            Score = "sdktest_Score",
        },
        NegativeOutcomeExpression = "Customers.FirstName = 'Mike'",
        PositiveOutcomeExpression = "Customers.FirstName = 'David'",
        PredictionName = "sdktest",
        PrimaryProfileType = "Customers",
        ResourceGroupName = "TestHubRG",
        ScopeExpression = "*",
        ScoreLabel = "score label",
    });

});
Copy
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.NewPrediction(ctx, "prediction", &customerinsights.PredictionArgs{
			AutoAnalyze: pulumi.Bool(true),
			Description: pulumi.StringMap{
				"en-us": pulumi.String("sdktest"),
			},
			DisplayName: pulumi.StringMap{
				"en-us": pulumi.String("sdktest"),
			},
			Grades:                   customerinsights.PredictionGradesArray{},
			HubName:                  pulumi.String("sdkTestHub"),
			InvolvedInteractionTypes: pulumi.StringArray{},
			InvolvedKpiTypes:         pulumi.StringArray{},
			InvolvedRelationships:    pulumi.StringArray{},
			Mappings: &customerinsights.PredictionMappingsArgs{
				Grade:  pulumi.String("sdktest_Grade"),
				Reason: pulumi.String("sdktest_Reason"),
				Score:  pulumi.String("sdktest_Score"),
			},
			NegativeOutcomeExpression: pulumi.String("Customers.FirstName = 'Mike'"),
			PositiveOutcomeExpression: pulumi.String("Customers.FirstName = 'David'"),
			PredictionName:            pulumi.String("sdktest"),
			PrimaryProfileType:        pulumi.String("Customers"),
			ResourceGroupName:         pulumi.String("TestHubRG"),
			ScopeExpression:           pulumi.String("*"),
			ScoreLabel:                pulumi.String("score label"),
		})
		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.customerinsights.Prediction;
import com.pulumi.azurenative.customerinsights.PredictionArgs;
import com.pulumi.azurenative.customerinsights.inputs.PredictionMappingsArgs;
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 prediction = new Prediction("prediction", PredictionArgs.builder()
            .autoAnalyze(true)
            .description(Map.of("en-us", "sdktest"))
            .displayName(Map.of("en-us", "sdktest"))
            .grades()
            .hubName("sdkTestHub")
            .involvedInteractionTypes()
            .involvedKpiTypes()
            .involvedRelationships()
            .mappings(PredictionMappingsArgs.builder()
                .grade("sdktest_Grade")
                .reason("sdktest_Reason")
                .score("sdktest_Score")
                .build())
            .negativeOutcomeExpression("Customers.FirstName = 'Mike'")
            .positiveOutcomeExpression("Customers.FirstName = 'David'")
            .predictionName("sdktest")
            .primaryProfileType("Customers")
            .resourceGroupName("TestHubRG")
            .scopeExpression("*")
            .scoreLabel("score label")
            .build());

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

const prediction = new azure_native.customerinsights.Prediction("prediction", {
    autoAnalyze: true,
    description: {
        "en-us": "sdktest",
    },
    displayName: {
        "en-us": "sdktest",
    },
    grades: [],
    hubName: "sdkTestHub",
    involvedInteractionTypes: [],
    involvedKpiTypes: [],
    involvedRelationships: [],
    mappings: {
        grade: "sdktest_Grade",
        reason: "sdktest_Reason",
        score: "sdktest_Score",
    },
    negativeOutcomeExpression: "Customers.FirstName = 'Mike'",
    positiveOutcomeExpression: "Customers.FirstName = 'David'",
    predictionName: "sdktest",
    primaryProfileType: "Customers",
    resourceGroupName: "TestHubRG",
    scopeExpression: "*",
    scoreLabel: "score label",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

prediction = azure_native.customerinsights.Prediction("prediction",
    auto_analyze=True,
    description={
        "en-us": "sdktest",
    },
    display_name={
        "en-us": "sdktest",
    },
    grades=[],
    hub_name="sdkTestHub",
    involved_interaction_types=[],
    involved_kpi_types=[],
    involved_relationships=[],
    mappings={
        "grade": "sdktest_Grade",
        "reason": "sdktest_Reason",
        "score": "sdktest_Score",
    },
    negative_outcome_expression="Customers.FirstName = 'Mike'",
    positive_outcome_expression="Customers.FirstName = 'David'",
    prediction_name="sdktest",
    primary_profile_type="Customers",
    resource_group_name="TestHubRG",
    scope_expression="*",
    score_label="score label")
Copy
resources:
  prediction:
    type: azure-native:customerinsights:Prediction
    properties:
      autoAnalyze: true
      description:
        en-us: sdktest
      displayName:
        en-us: sdktest
      grades: []
      hubName: sdkTestHub
      involvedInteractionTypes: []
      involvedKpiTypes: []
      involvedRelationships: []
      mappings:
        grade: sdktest_Grade
        reason: sdktest_Reason
        score: sdktest_Score
      negativeOutcomeExpression: Customers.FirstName = 'Mike'
      positiveOutcomeExpression: Customers.FirstName = 'David'
      predictionName: sdktest
      primaryProfileType: Customers
      resourceGroupName: TestHubRG
      scopeExpression: '*'
      scoreLabel: score label
Copy

Create Prediction Resource

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

Constructor syntax

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

@overload
def Prediction(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               mappings: Optional[PredictionMappingsArgs] = None,
               negative_outcome_expression: Optional[str] = None,
               score_label: Optional[str] = None,
               scope_expression: Optional[str] = None,
               hub_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               primary_profile_type: Optional[str] = None,
               positive_outcome_expression: Optional[str] = None,
               auto_analyze: Optional[bool] = None,
               involved_relationships: Optional[Sequence[str]] = None,
               involved_kpi_types: Optional[Sequence[str]] = None,
               prediction_name: Optional[str] = None,
               description: Optional[Mapping[str, str]] = None,
               involved_interaction_types: Optional[Sequence[str]] = None,
               grades: Optional[Sequence[PredictionGradesArgs]] = None,
               display_name: Optional[Mapping[str, str]] = None)
func NewPrediction(ctx *Context, name string, args PredictionArgs, opts ...ResourceOption) (*Prediction, error)
public Prediction(string name, PredictionArgs args, CustomResourceOptions? opts = null)
public Prediction(String name, PredictionArgs args)
public Prediction(String name, PredictionArgs args, CustomResourceOptions options)
type: azure-native:customerinsights:Prediction
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. PredictionArgs
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. PredictionArgs
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. PredictionArgs
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. PredictionArgs
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. PredictionArgs
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 predictionResource = new AzureNative.CustomerInsights.Prediction("predictionResource", new()
{
    Mappings = new AzureNative.CustomerInsights.Inputs.PredictionMappingsArgs
    {
        Grade = "string",
        Reason = "string",
        Score = "string",
    },
    NegativeOutcomeExpression = "string",
    ScoreLabel = "string",
    ScopeExpression = "string",
    HubName = "string",
    ResourceGroupName = "string",
    PrimaryProfileType = "string",
    PositiveOutcomeExpression = "string",
    AutoAnalyze = false,
    InvolvedRelationships = new[]
    {
        "string",
    },
    InvolvedKpiTypes = new[]
    {
        "string",
    },
    PredictionName = "string",
    Description = 
    {
        { "string", "string" },
    },
    InvolvedInteractionTypes = new[]
    {
        "string",
    },
    Grades = new[]
    {
        new AzureNative.CustomerInsights.Inputs.PredictionGradesArgs
        {
            GradeName = "string",
            MaxScoreThreshold = 0,
            MinScoreThreshold = 0,
        },
    },
    DisplayName = 
    {
        { "string", "string" },
    },
});
Copy
example, err := customerinsights.NewPrediction(ctx, "predictionResource", &customerinsights.PredictionArgs{
	Mappings: &customerinsights.PredictionMappingsArgs{
		Grade:  pulumi.String("string"),
		Reason: pulumi.String("string"),
		Score:  pulumi.String("string"),
	},
	NegativeOutcomeExpression: pulumi.String("string"),
	ScoreLabel:                pulumi.String("string"),
	ScopeExpression:           pulumi.String("string"),
	HubName:                   pulumi.String("string"),
	ResourceGroupName:         pulumi.String("string"),
	PrimaryProfileType:        pulumi.String("string"),
	PositiveOutcomeExpression: pulumi.String("string"),
	AutoAnalyze:               pulumi.Bool(false),
	InvolvedRelationships: pulumi.StringArray{
		pulumi.String("string"),
	},
	InvolvedKpiTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	PredictionName: pulumi.String("string"),
	Description: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	InvolvedInteractionTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Grades: customerinsights.PredictionGradesArray{
		&customerinsights.PredictionGradesArgs{
			GradeName:         pulumi.String("string"),
			MaxScoreThreshold: pulumi.Int(0),
			MinScoreThreshold: pulumi.Int(0),
		},
	},
	DisplayName: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var predictionResource = new Prediction("predictionResource", PredictionArgs.builder()
    .mappings(PredictionMappingsArgs.builder()
        .grade("string")
        .reason("string")
        .score("string")
        .build())
    .negativeOutcomeExpression("string")
    .scoreLabel("string")
    .scopeExpression("string")
    .hubName("string")
    .resourceGroupName("string")
    .primaryProfileType("string")
    .positiveOutcomeExpression("string")
    .autoAnalyze(false)
    .involvedRelationships("string")
    .involvedKpiTypes("string")
    .predictionName("string")
    .description(Map.of("string", "string"))
    .involvedInteractionTypes("string")
    .grades(PredictionGradesArgs.builder()
        .gradeName("string")
        .maxScoreThreshold(0)
        .minScoreThreshold(0)
        .build())
    .displayName(Map.of("string", "string"))
    .build());
Copy
prediction_resource = azure_native.customerinsights.Prediction("predictionResource",
    mappings={
        "grade": "string",
        "reason": "string",
        "score": "string",
    },
    negative_outcome_expression="string",
    score_label="string",
    scope_expression="string",
    hub_name="string",
    resource_group_name="string",
    primary_profile_type="string",
    positive_outcome_expression="string",
    auto_analyze=False,
    involved_relationships=["string"],
    involved_kpi_types=["string"],
    prediction_name="string",
    description={
        "string": "string",
    },
    involved_interaction_types=["string"],
    grades=[{
        "grade_name": "string",
        "max_score_threshold": 0,
        "min_score_threshold": 0,
    }],
    display_name={
        "string": "string",
    })
Copy
const predictionResource = new azure_native.customerinsights.Prediction("predictionResource", {
    mappings: {
        grade: "string",
        reason: "string",
        score: "string",
    },
    negativeOutcomeExpression: "string",
    scoreLabel: "string",
    scopeExpression: "string",
    hubName: "string",
    resourceGroupName: "string",
    primaryProfileType: "string",
    positiveOutcomeExpression: "string",
    autoAnalyze: false,
    involvedRelationships: ["string"],
    involvedKpiTypes: ["string"],
    predictionName: "string",
    description: {
        string: "string",
    },
    involvedInteractionTypes: ["string"],
    grades: [{
        gradeName: "string",
        maxScoreThreshold: 0,
        minScoreThreshold: 0,
    }],
    displayName: {
        string: "string",
    },
});
Copy
type: azure-native:customerinsights:Prediction
properties:
    autoAnalyze: false
    description:
        string: string
    displayName:
        string: string
    grades:
        - gradeName: string
          maxScoreThreshold: 0
          minScoreThreshold: 0
    hubName: string
    involvedInteractionTypes:
        - string
    involvedKpiTypes:
        - string
    involvedRelationships:
        - string
    mappings:
        grade: string
        reason: string
        score: string
    negativeOutcomeExpression: string
    positiveOutcomeExpression: string
    predictionName: string
    primaryProfileType: string
    resourceGroupName: string
    scopeExpression: string
    scoreLabel: string
Copy

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

AutoAnalyze This property is required. bool
Whether do auto analyze.
HubName
This property is required.
Changes to this property will trigger replacement.
string
The name of the hub.
Mappings This property is required. Pulumi.AzureNative.CustomerInsights.Inputs.PredictionMappings
Definition of the link mapping of prediction.
NegativeOutcomeExpression This property is required. string
Negative outcome expression.
PositiveOutcomeExpression This property is required. string
Positive outcome expression.
PrimaryProfileType This property is required. string
Primary profile type.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
ScopeExpression This property is required. string
Scope expression.
ScoreLabel This property is required. string
Score label.
Description Dictionary<string, string>
Description of the prediction.
DisplayName Dictionary<string, string>
Display name of the prediction.
Grades List<Pulumi.AzureNative.CustomerInsights.Inputs.PredictionGrades>
The prediction grades.
InvolvedInteractionTypes List<string>
Interaction types involved in the prediction.
InvolvedKpiTypes List<string>
KPI types involved in the prediction.
InvolvedRelationships List<string>
Relationships involved in the prediction.
PredictionName string
Name of the prediction.
AutoAnalyze This property is required. bool
Whether do auto analyze.
HubName
This property is required.
Changes to this property will trigger replacement.
string
The name of the hub.
Mappings This property is required. PredictionMappingsArgs
Definition of the link mapping of prediction.
NegativeOutcomeExpression This property is required. string
Negative outcome expression.
PositiveOutcomeExpression This property is required. string
Positive outcome expression.
PrimaryProfileType This property is required. string
Primary profile type.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
ScopeExpression This property is required. string
Scope expression.
ScoreLabel This property is required. string
Score label.
Description map[string]string
Description of the prediction.
DisplayName map[string]string
Display name of the prediction.
Grades []PredictionGradesArgs
The prediction grades.
InvolvedInteractionTypes []string
Interaction types involved in the prediction.
InvolvedKpiTypes []string
KPI types involved in the prediction.
InvolvedRelationships []string
Relationships involved in the prediction.
PredictionName string
Name of the prediction.
autoAnalyze This property is required. Boolean
Whether do auto analyze.
hubName
This property is required.
Changes to this property will trigger replacement.
String
The name of the hub.
mappings This property is required. PredictionMappings
Definition of the link mapping of prediction.
negativeOutcomeExpression This property is required. String
Negative outcome expression.
positiveOutcomeExpression This property is required. String
Positive outcome expression.
primaryProfileType This property is required. String
Primary profile type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
scopeExpression This property is required. String
Scope expression.
scoreLabel This property is required. String
Score label.
description Map<String,String>
Description of the prediction.
displayName Map<String,String>
Display name of the prediction.
grades List<PredictionGrades>
The prediction grades.
involvedInteractionTypes List<String>
Interaction types involved in the prediction.
involvedKpiTypes List<String>
KPI types involved in the prediction.
involvedRelationships List<String>
Relationships involved in the prediction.
predictionName String
Name of the prediction.
autoAnalyze This property is required. boolean
Whether do auto analyze.
hubName
This property is required.
Changes to this property will trigger replacement.
string
The name of the hub.
mappings This property is required. PredictionMappings
Definition of the link mapping of prediction.
negativeOutcomeExpression This property is required. string
Negative outcome expression.
positiveOutcomeExpression This property is required. string
Positive outcome expression.
primaryProfileType This property is required. string
Primary profile type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
scopeExpression This property is required. string
Scope expression.
scoreLabel This property is required. string
Score label.
description {[key: string]: string}
Description of the prediction.
displayName {[key: string]: string}
Display name of the prediction.
grades PredictionGrades[]
The prediction grades.
involvedInteractionTypes string[]
Interaction types involved in the prediction.
involvedKpiTypes string[]
KPI types involved in the prediction.
involvedRelationships string[]
Relationships involved in the prediction.
predictionName string
Name of the prediction.
auto_analyze This property is required. bool
Whether do auto analyze.
hub_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the hub.
mappings This property is required. PredictionMappingsArgs
Definition of the link mapping of prediction.
negative_outcome_expression This property is required. str
Negative outcome expression.
positive_outcome_expression This property is required. str
Positive outcome expression.
primary_profile_type This property is required. str
Primary profile type.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
scope_expression This property is required. str
Scope expression.
score_label This property is required. str
Score label.
description Mapping[str, str]
Description of the prediction.
display_name Mapping[str, str]
Display name of the prediction.
grades Sequence[PredictionGradesArgs]
The prediction grades.
involved_interaction_types Sequence[str]
Interaction types involved in the prediction.
involved_kpi_types Sequence[str]
KPI types involved in the prediction.
involved_relationships Sequence[str]
Relationships involved in the prediction.
prediction_name str
Name of the prediction.
autoAnalyze This property is required. Boolean
Whether do auto analyze.
hubName
This property is required.
Changes to this property will trigger replacement.
String
The name of the hub.
mappings This property is required. Property Map
Definition of the link mapping of prediction.
negativeOutcomeExpression This property is required. String
Negative outcome expression.
positiveOutcomeExpression This property is required. String
Positive outcome expression.
primaryProfileType This property is required. String
Primary profile type.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
scopeExpression This property is required. String
Scope expression.
scoreLabel This property is required. String
Score label.
description Map<String>
Description of the prediction.
displayName Map<String>
Display name of the prediction.
grades List<Property Map>
The prediction grades.
involvedInteractionTypes List<String>
Interaction types involved in the prediction.
involvedKpiTypes List<String>
KPI types involved in the prediction.
involvedRelationships List<String>
Relationships involved in the prediction.
predictionName String
Name of the prediction.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
Provisioning state.
SystemGeneratedEntities Pulumi.AzureNative.CustomerInsights.Outputs.PredictionResponseSystemGeneratedEntities
System generated entities.
TenantId string
The hub name.
Type string
Resource type.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
Provisioning state.
SystemGeneratedEntities PredictionResponseSystemGeneratedEntities
System generated entities.
TenantId string
The hub name.
Type string
Resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
Provisioning state.
systemGeneratedEntities PredictionResponseSystemGeneratedEntities
System generated entities.
tenantId String
The hub name.
type String
Resource type.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name.
provisioningState string
Provisioning state.
systemGeneratedEntities PredictionResponseSystemGeneratedEntities
System generated entities.
tenantId string
The hub name.
type string
Resource type.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name.
provisioning_state str
Provisioning state.
system_generated_entities PredictionResponseSystemGeneratedEntities
System generated entities.
tenant_id str
The hub name.
type str
Resource type.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
Provisioning state.
systemGeneratedEntities Property Map
System generated entities.
tenantId String
The hub name.
type String
Resource type.

Supporting Types

PredictionGrades
, PredictionGradesArgs

GradeName string
Name of the grade.
MaxScoreThreshold int
Maximum score threshold.
MinScoreThreshold int
Minimum score threshold.
GradeName string
Name of the grade.
MaxScoreThreshold int
Maximum score threshold.
MinScoreThreshold int
Minimum score threshold.
gradeName String
Name of the grade.
maxScoreThreshold Integer
Maximum score threshold.
minScoreThreshold Integer
Minimum score threshold.
gradeName string
Name of the grade.
maxScoreThreshold number
Maximum score threshold.
minScoreThreshold number
Minimum score threshold.
grade_name str
Name of the grade.
max_score_threshold int
Maximum score threshold.
min_score_threshold int
Minimum score threshold.
gradeName String
Name of the grade.
maxScoreThreshold Number
Maximum score threshold.
minScoreThreshold Number
Minimum score threshold.

PredictionMappings
, PredictionMappingsArgs

Grade This property is required. string
The grade of the link mapping.
Reason This property is required. string
The reason of the link mapping.
Score This property is required. string
The score of the link mapping.
Grade This property is required. string
The grade of the link mapping.
Reason This property is required. string
The reason of the link mapping.
Score This property is required. string
The score of the link mapping.
grade This property is required. String
The grade of the link mapping.
reason This property is required. String
The reason of the link mapping.
score This property is required. String
The score of the link mapping.
grade This property is required. string
The grade of the link mapping.
reason This property is required. string
The reason of the link mapping.
score This property is required. string
The score of the link mapping.
grade This property is required. str
The grade of the link mapping.
reason This property is required. str
The reason of the link mapping.
score This property is required. str
The score of the link mapping.
grade This property is required. String
The grade of the link mapping.
reason This property is required. String
The reason of the link mapping.
score This property is required. String
The score of the link mapping.

PredictionResponseGrades
, PredictionResponseGradesArgs

GradeName string
Name of the grade.
MaxScoreThreshold int
Maximum score threshold.
MinScoreThreshold int
Minimum score threshold.
GradeName string
Name of the grade.
MaxScoreThreshold int
Maximum score threshold.
MinScoreThreshold int
Minimum score threshold.
gradeName String
Name of the grade.
maxScoreThreshold Integer
Maximum score threshold.
minScoreThreshold Integer
Minimum score threshold.
gradeName string
Name of the grade.
maxScoreThreshold number
Maximum score threshold.
minScoreThreshold number
Minimum score threshold.
grade_name str
Name of the grade.
max_score_threshold int
Maximum score threshold.
min_score_threshold int
Minimum score threshold.
gradeName String
Name of the grade.
maxScoreThreshold Number
Maximum score threshold.
minScoreThreshold Number
Minimum score threshold.

PredictionResponseMappings
, PredictionResponseMappingsArgs

Grade This property is required. string
The grade of the link mapping.
Reason This property is required. string
The reason of the link mapping.
Score This property is required. string
The score of the link mapping.
Grade This property is required. string
The grade of the link mapping.
Reason This property is required. string
The reason of the link mapping.
Score This property is required. string
The score of the link mapping.
grade This property is required. String
The grade of the link mapping.
reason This property is required. String
The reason of the link mapping.
score This property is required. String
The score of the link mapping.
grade This property is required. string
The grade of the link mapping.
reason This property is required. string
The reason of the link mapping.
score This property is required. string
The score of the link mapping.
grade This property is required. str
The grade of the link mapping.
reason This property is required. str
The reason of the link mapping.
score This property is required. str
The score of the link mapping.
grade This property is required. String
The grade of the link mapping.
reason This property is required. String
The reason of the link mapping.
score This property is required. String
The score of the link mapping.

PredictionResponseSystemGeneratedEntities
, PredictionResponseSystemGeneratedEntitiesArgs

GeneratedInteractionTypes List<string>
Generated interaction types.
GeneratedKpis Dictionary<string, string>
Generated KPIs.
GeneratedLinks List<string>
Generated links.
GeneratedInteractionTypes []string
Generated interaction types.
GeneratedKpis map[string]string
Generated KPIs.
GeneratedLinks []string
Generated links.
generatedInteractionTypes List<String>
Generated interaction types.
generatedKpis Map<String,String>
Generated KPIs.
generatedLinks List<String>
Generated links.
generatedInteractionTypes string[]
Generated interaction types.
generatedKpis {[key: string]: string}
Generated KPIs.
generatedLinks string[]
Generated links.
generated_interaction_types Sequence[str]
Generated interaction types.
generated_kpis Mapping[str, str]
Generated KPIs.
generated_links Sequence[str]
Generated links.
generatedInteractionTypes List<String>
Generated interaction types.
generatedKpis Map<String>
Generated KPIs.
generatedLinks List<String>
Generated links.

Import

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

$ pulumi import azure-native:customerinsights:Prediction sdkTestHub/sdktest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CustomerInsights/hubs/{hubName}/predictions/{predictionName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi