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

azure-native.customerinsights.Prediction

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    The prediction resource format. Azure REST API version: 2017-04-26. Prior API version in Azure Native 1.x: 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",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/customerinsights/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    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=azure_native.customerinsights.PredictionMappingsArgs(
            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")
    
    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",
    });
    
    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
    

    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,
                   positive_outcome_expression: Optional[str] = None,
                   score_label: Optional[str] = None,
                   scope_expression: Optional[str] = None,
                   auto_analyze: Optional[bool] = None,
                   resource_group_name: Optional[str] = None,
                   primary_profile_type: Optional[str] = None,
                   negative_outcome_expression: Optional[str] = None,
                   hub_name: Optional[str] = None,
                   involved_kpi_types: Optional[Sequence[str]] = None,
                   involved_relationships: 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 string
    The unique name of the resource.
    args PredictionArgs
    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 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 string
    The unique name of the resource.
    args PredictionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PredictionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PredictionArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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",
        },
        PositiveOutcomeExpression = "string",
        ScoreLabel = "string",
        ScopeExpression = "string",
        AutoAnalyze = false,
        ResourceGroupName = "string",
        PrimaryProfileType = "string",
        NegativeOutcomeExpression = "string",
        HubName = "string",
        InvolvedKpiTypes = new[]
        {
            "string",
        },
        InvolvedRelationships = 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" },
        },
    });
    
    example, err := customerinsights.NewPrediction(ctx, "predictionResource", &customerinsights.PredictionArgs{
    Mappings: &customerinsights.PredictionMappingsArgs{
    Grade: pulumi.String("string"),
    Reason: pulumi.String("string"),
    Score: pulumi.String("string"),
    },
    PositiveOutcomeExpression: pulumi.String("string"),
    ScoreLabel: pulumi.String("string"),
    ScopeExpression: pulumi.String("string"),
    AutoAnalyze: pulumi.Bool(false),
    ResourceGroupName: pulumi.String("string"),
    PrimaryProfileType: pulumi.String("string"),
    NegativeOutcomeExpression: pulumi.String("string"),
    HubName: pulumi.String("string"),
    InvolvedKpiTypes: pulumi.StringArray{
    pulumi.String("string"),
    },
    InvolvedRelationships: 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"),
    },
    })
    
    var predictionResource = new Prediction("predictionResource", PredictionArgs.builder()        
        .mappings(PredictionMappingsArgs.builder()
            .grade("string")
            .reason("string")
            .score("string")
            .build())
        .positiveOutcomeExpression("string")
        .scoreLabel("string")
        .scopeExpression("string")
        .autoAnalyze(false)
        .resourceGroupName("string")
        .primaryProfileType("string")
        .negativeOutcomeExpression("string")
        .hubName("string")
        .involvedKpiTypes("string")
        .involvedRelationships("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());
    
    prediction_resource = azure_native.customerinsights.Prediction("predictionResource",
        mappings=azure_native.customerinsights.PredictionMappingsArgs(
            grade="string",
            reason="string",
            score="string",
        ),
        positive_outcome_expression="string",
        score_label="string",
        scope_expression="string",
        auto_analyze=False,
        resource_group_name="string",
        primary_profile_type="string",
        negative_outcome_expression="string",
        hub_name="string",
        involved_kpi_types=["string"],
        involved_relationships=["string"],
        prediction_name="string",
        description={
            "string": "string",
        },
        involved_interaction_types=["string"],
        grades=[azure_native.customerinsights.PredictionGradesArgs(
            grade_name="string",
            max_score_threshold=0,
            min_score_threshold=0,
        )],
        display_name={
            "string": "string",
        })
    
    const predictionResource = new azure_native.customerinsights.Prediction("predictionResource", {
        mappings: {
            grade: "string",
            reason: "string",
            score: "string",
        },
        positiveOutcomeExpression: "string",
        scoreLabel: "string",
        scopeExpression: "string",
        autoAnalyze: false,
        resourceGroupName: "string",
        primaryProfileType: "string",
        negativeOutcomeExpression: "string",
        hubName: "string",
        involvedKpiTypes: ["string"],
        involvedRelationships: ["string"],
        predictionName: "string",
        description: {
            string: "string",
        },
        involvedInteractionTypes: ["string"],
        grades: [{
            gradeName: "string",
            maxScoreThreshold: 0,
            minScoreThreshold: 0,
        }],
        displayName: {
            string: "string",
        },
    });
    
    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
    

    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

    The Prediction resource accepts the following input properties:

    AutoAnalyze bool
    Whether do auto analyze.
    HubName string
    The name of the hub.
    Mappings Pulumi.AzureNative.CustomerInsights.Inputs.PredictionMappings
    Definition of the link mapping of prediction.
    NegativeOutcomeExpression string
    Negative outcome expression.
    PositiveOutcomeExpression string
    Positive outcome expression.
    PrimaryProfileType string
    Primary profile type.
    ResourceGroupName string
    The name of the resource group.
    ScopeExpression string
    Scope expression.
    ScoreLabel 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 bool
    Whether do auto analyze.
    HubName string
    The name of the hub.
    Mappings PredictionMappingsArgs
    Definition of the link mapping of prediction.
    NegativeOutcomeExpression string
    Negative outcome expression.
    PositiveOutcomeExpression string
    Positive outcome expression.
    PrimaryProfileType string
    Primary profile type.
    ResourceGroupName string
    The name of the resource group.
    ScopeExpression string
    Scope expression.
    ScoreLabel 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 Boolean
    Whether do auto analyze.
    hubName String
    The name of the hub.
    mappings PredictionMappings
    Definition of the link mapping of prediction.
    negativeOutcomeExpression String
    Negative outcome expression.
    positiveOutcomeExpression String
    Positive outcome expression.
    primaryProfileType String
    Primary profile type.
    resourceGroupName String
    The name of the resource group.
    scopeExpression String
    Scope expression.
    scoreLabel 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 boolean
    Whether do auto analyze.
    hubName string
    The name of the hub.
    mappings PredictionMappings
    Definition of the link mapping of prediction.
    negativeOutcomeExpression string
    Negative outcome expression.
    positiveOutcomeExpression string
    Positive outcome expression.
    primaryProfileType string
    Primary profile type.
    resourceGroupName string
    The name of the resource group.
    scopeExpression string
    Scope expression.
    scoreLabel 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 bool
    Whether do auto analyze.
    hub_name str
    The name of the hub.
    mappings PredictionMappingsArgs
    Definition of the link mapping of prediction.
    negative_outcome_expression str
    Negative outcome expression.
    positive_outcome_expression str
    Positive outcome expression.
    primary_profile_type str
    Primary profile type.
    resource_group_name str
    The name of the resource group.
    scope_expression str
    Scope expression.
    score_label 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 Boolean
    Whether do auto analyze.
    hubName String
    The name of the hub.
    mappings Property Map
    Definition of the link mapping of prediction.
    negativeOutcomeExpression String
    Negative outcome expression.
    positiveOutcomeExpression String
    Positive outcome expression.
    primaryProfileType String
    Primary profile type.
    resourceGroupName String
    The name of the resource group.
    scopeExpression String
    Scope expression.
    scoreLabel 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:

    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.
    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.
    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.
    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.
    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.
    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 string
    The grade of the link mapping.
    Reason string
    The reason of the link mapping.
    Score string
    The score of the link mapping.
    Grade string
    The grade of the link mapping.
    Reason string
    The reason of the link mapping.
    Score string
    The score of the link mapping.
    grade String
    The grade of the link mapping.
    reason String
    The reason of the link mapping.
    score String
    The score of the link mapping.
    grade string
    The grade of the link mapping.
    reason string
    The reason of the link mapping.
    score string
    The score of the link mapping.
    grade str
    The grade of the link mapping.
    reason str
    The reason of the link mapping.
    score str
    The score of the link mapping.
    grade String
    The grade of the link mapping.
    reason String
    The reason of the link mapping.
    score 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 string
    The grade of the link mapping.
    Reason string
    The reason of the link mapping.
    Score string
    The score of the link mapping.
    Grade string
    The grade of the link mapping.
    Reason string
    The reason of the link mapping.
    Score string
    The score of the link mapping.
    grade String
    The grade of the link mapping.
    reason String
    The reason of the link mapping.
    score String
    The score of the link mapping.
    grade string
    The grade of the link mapping.
    reason string
    The reason of the link mapping.
    score string
    The score of the link mapping.
    grade str
    The grade of the link mapping.
    reason str
    The reason of the link mapping.
    score str
    The score of the link mapping.
    grade String
    The grade of the link mapping.
    reason String
    The reason of the link mapping.
    score 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} 
    

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

    Package Details

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