1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. billingtrust
  6. Assessment
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    A billing trust assessment. An assessment runs a set of rules to evaluate trust attributes of a billing account. The assessment is a singleton per parent resource and is always named ‘default’. Re-issuing PUT with the same assessmentType is idempotent; changing assessmentType after the assessment exists is not supported.

    Uses Azure REST API version 2026-03-17-preview.

    Example Usage

    Create or update the BusinessVerification assessment for a billing account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var assessment = new AzureNative.BillingTrust.Assessment("assessment", new()
        {
            Properties = new AzureNative.BillingTrust.Inputs.AssessmentPropertiesArgs
            {
                AssessmentType = AzureNative.BillingTrust.AssessmentType.BusinessVerification,
            },
            ResourceUri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
        });
    
    });
    
    package main
    
    import (
    	billingtrust "github.com/pulumi/pulumi-azure-native-sdk/billingtrust/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingtrust.NewAssessment(ctx, "assessment", &billingtrust.AssessmentArgs{
    			Properties: &billingtrust.AssessmentPropertiesArgs{
    				AssessmentType: pulumi.String(billingtrust.AssessmentTypeBusinessVerification),
    			},
    			ResourceUri: pulumi.String("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_billingtrust_assessment" "assessment" {
      properties = {
        assessment_type = "BusinessVerification"
      }
      resource_uri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.billingtrust.Assessment;
    import com.pulumi.azurenative.billingtrust.AssessmentArgs;
    import com.pulumi.azurenative.billingtrust.inputs.AssessmentPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 assessment = new Assessment("assessment", AssessmentArgs.builder()
                .properties(AssessmentPropertiesArgs.builder()
                    .assessmentType("BusinessVerification")
                    .build())
                .resourceUri("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const assessment = new azure_native.billingtrust.Assessment("assessment", {
        properties: {
            assessmentType: azure_native.billingtrust.AssessmentType.BusinessVerification,
        },
        resourceUri: "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    assessment = azure_native.billingtrust.Assessment("assessment",
        properties={
            "assessment_type": azure_native.billingtrust.AssessmentType.BUSINESS_VERIFICATION,
        },
        resource_uri="providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
    
    resources:
      assessment:
        type: azure-native:billingtrust:Assessment
        properties:
          properties:
            assessmentType: BusinessVerification
          resourceUri: providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31
    

    Create or update the Edu assessment for an enrollment

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var assessment = new AzureNative.BillingTrust.Assessment("assessment", new()
        {
            Properties = new AzureNative.BillingTrust.Inputs.AssessmentPropertiesArgs
            {
                AssessmentType = AzureNative.BillingTrust.AssessmentType.Edu,
                InitialValues = new[]
                {
                    new AzureNative.BillingTrust.Inputs.EduInitialValueArgs
                    {
                        Domains = new[]
                        {
                            new AzureNative.BillingTrust.Inputs.DomainEntryArgs
                            {
                                DomainNames = new[]
                                {
                                    "students.contoso.edu",
                                    "faculty.contoso.edu",
                                },
                                TenantId = "11111111-1111-1111-1111-111111111111",
                            },
                        },
                        Kind = "eduQualification",
                    },
                },
            },
            ResourceUri = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default",
        });
    
    });
    
    package main
    
    import (
    	billingtrust "github.com/pulumi/pulumi-azure-native-sdk/billingtrust/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingtrust.NewAssessment(ctx, "assessment", &billingtrust.AssessmentArgs{
    			Properties: &billingtrust.AssessmentPropertiesArgs{
    				AssessmentType: pulumi.String(billingtrust.AssessmentTypeEdu),
    				InitialValues: billingtrust.EduInitialValueArray{
    					&billingtrust.EduInitialValueArgs{
    						Domains: billingtrust.DomainEntryArray{
    							&billingtrust.DomainEntryArgs{
    								DomainNames: pulumi.StringArray{
    									pulumi.String("students.contoso.edu"),
    									pulumi.String("faculty.contoso.edu"),
    								},
    								TenantId: pulumi.String("11111111-1111-1111-1111-111111111111"),
    							},
    						},
    						Kind: pulumi.String("eduQualification"),
    					},
    				},
    			},
    			ResourceUri: pulumi.String("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_billingtrust_assessment" "assessment" {
      properties = {
        assessment_type = "Edu"
        initial_values = [{
          "domains" = [{
            "domainNames" = ["students.contoso.edu", "faculty.contoso.edu"]
            "tenantId"    = "11111111-1111-1111-1111-111111111111"
          }]
          "kind" = "eduQualification"
        }]
      }
      resource_uri = "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.billingtrust.Assessment;
    import com.pulumi.azurenative.billingtrust.AssessmentArgs;
    import com.pulumi.azurenative.billingtrust.inputs.AssessmentPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 assessment = new Assessment("assessment", AssessmentArgs.builder()
                .properties(AssessmentPropertiesArgs.builder()
                    .assessmentType("Edu")
                    .initialValues(Map.ofEntries(
                        Map.entry("domains", Arrays.asList(DomainEntryArgs.builder()
                            .domainNames(                        
                                "students.contoso.edu",
                                "faculty.contoso.edu")
                            .tenantId("11111111-1111-1111-1111-111111111111")
                            .build())),
                        Map.entry("kind", "eduQualification")
                    ))
                    .build())
                .resourceUri("subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const assessment = new azure_native.billingtrust.Assessment("assessment", {
        properties: {
            assessmentType: azure_native.billingtrust.AssessmentType.Edu,
            initialValues: [{
                domains: [{
                    domainNames: [
                        "students.contoso.edu",
                        "faculty.contoso.edu",
                    ],
                    tenantId: "11111111-1111-1111-1111-111111111111",
                }],
                kind: "eduQualification",
            }],
        },
        resourceUri: "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    assessment = azure_native.billingtrust.Assessment("assessment",
        properties={
            "assessment_type": azure_native.billingtrust.AssessmentType.EDU,
            "initial_values": [{
                "domains": [{
                    "domain_names": [
                        "students.contoso.edu",
                        "faculty.contoso.edu",
                    ],
                    "tenant_id": "11111111-1111-1111-1111-111111111111",
                }],
                "kind": "eduQualification",
            }],
        },
        resource_uri="subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default")
    
    resources:
      assessment:
        type: azure-native:billingtrust:Assessment
        properties:
          properties:
            assessmentType: Edu
            initialValues:
              - domains:
                  - domainNames:
                      - students.contoso.edu
                      - faculty.contoso.edu
                    tenantId: 11111111-1111-1111-1111-111111111111
                kind: eduQualification
          resourceUri: subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/billing-edu-rg/providers/Microsoft.Program/educationEnrollments/default
    

    Create or update the PayeeEnrollment assessment for a billing account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var assessment = new AzureNative.BillingTrust.Assessment("assessment", new()
        {
            Properties = new AzureNative.BillingTrust.Inputs.AssessmentPropertiesArgs
            {
                AssessmentType = AzureNative.BillingTrust.AssessmentType.PayeeEnrollment,
            },
            ResourceUri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
        });
    
    });
    
    package main
    
    import (
    	billingtrust "github.com/pulumi/pulumi-azure-native-sdk/billingtrust/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingtrust.NewAssessment(ctx, "assessment", &billingtrust.AssessmentArgs{
    			Properties: &billingtrust.AssessmentPropertiesArgs{
    				AssessmentType: pulumi.String(billingtrust.AssessmentTypePayeeEnrollment),
    			},
    			ResourceUri: pulumi.String("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_billingtrust_assessment" "assessment" {
      properties = {
        assessment_type = "PayeeEnrollment"
      }
      resource_uri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.billingtrust.Assessment;
    import com.pulumi.azurenative.billingtrust.AssessmentArgs;
    import com.pulumi.azurenative.billingtrust.inputs.AssessmentPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 assessment = new Assessment("assessment", AssessmentArgs.builder()
                .properties(AssessmentPropertiesArgs.builder()
                    .assessmentType("PayeeEnrollment")
                    .build())
                .resourceUri("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const assessment = new azure_native.billingtrust.Assessment("assessment", {
        properties: {
            assessmentType: azure_native.billingtrust.AssessmentType.PayeeEnrollment,
        },
        resourceUri: "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    assessment = azure_native.billingtrust.Assessment("assessment",
        properties={
            "assessment_type": azure_native.billingtrust.AssessmentType.PAYEE_ENROLLMENT,
        },
        resource_uri="providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
    
    resources:
      assessment:
        type: azure-native:billingtrust:Assessment
        properties:
          properties:
            assessmentType: PayeeEnrollment
          resourceUri: providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31
    

    Create or update the PayeeProfile assessment for a billing account

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var assessment = new AzureNative.BillingTrust.Assessment("assessment", new()
        {
            Properties = new AzureNative.BillingTrust.Inputs.AssessmentPropertiesArgs
            {
                AssessmentType = AzureNative.BillingTrust.AssessmentType.PayeeProfile,
            },
            ResourceUri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
        });
    
    });
    
    package main
    
    import (
    	billingtrust "github.com/pulumi/pulumi-azure-native-sdk/billingtrust/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := billingtrust.NewAssessment(ctx, "assessment", &billingtrust.AssessmentArgs{
    			Properties: &billingtrust.AssessmentPropertiesArgs{
    				AssessmentType: pulumi.String(billingtrust.AssessmentTypePayeeProfile),
    			},
    			ResourceUri: pulumi.String("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_billingtrust_assessment" "assessment" {
      properties = {
        assessment_type = "PayeeProfile"
      }
      resource_uri = "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31"
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.billingtrust.Assessment;
    import com.pulumi.azurenative.billingtrust.AssessmentArgs;
    import com.pulumi.azurenative.billingtrust.inputs.AssessmentPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 assessment = new Assessment("assessment", AssessmentArgs.builder()
                .properties(AssessmentPropertiesArgs.builder()
                    .assessmentType("PayeeProfile")
                    .build())
                .resourceUri("providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const assessment = new azure_native.billingtrust.Assessment("assessment", {
        properties: {
            assessmentType: azure_native.billingtrust.AssessmentType.PayeeProfile,
        },
        resourceUri: "providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    assessment = azure_native.billingtrust.Assessment("assessment",
        properties={
            "assessment_type": azure_native.billingtrust.AssessmentType.PAYEE_PROFILE,
        },
        resource_uri="providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31")
    
    resources:
      assessment:
        type: azure-native:billingtrust:Assessment
        properties:
          properties:
            assessmentType: PayeeProfile
          resourceUri: providers/Microsoft.Billing/billingAccounts/abc123:00000000-0000-0000-0000-000000000000_2019-05-31
    

    Create Assessment Resource

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

    Constructor syntax

    new Assessment(name: string, args: AssessmentArgs, opts?: CustomResourceOptions);
    @overload
    def Assessment(resource_name: str,
                   args: AssessmentArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Assessment(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   resource_uri: Optional[str] = None,
                   properties: Optional[AssessmentPropertiesArgs] = None)
    func NewAssessment(ctx *Context, name string, args AssessmentArgs, opts ...ResourceOption) (*Assessment, error)
    public Assessment(string name, AssessmentArgs args, CustomResourceOptions? opts = null)
    public Assessment(String name, AssessmentArgs args)
    public Assessment(String name, AssessmentArgs args, CustomResourceOptions options)
    
    type: azure-native:billingtrust:Assessment
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_billingtrust_assessment" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args AssessmentArgs
    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 AssessmentArgs
    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 AssessmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AssessmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AssessmentArgs
    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 azure_nativeAssessmentResource = new AzureNative.BillingTrust.Assessment("azure-nativeAssessmentResource", new()
    {
        ResourceUri = "string",
        Properties = new AzureNative.BillingTrust.Inputs.AssessmentPropertiesArgs
        {
            AssessmentType = "string",
            InitialValues = 
            {
                new AzureNative.BillingTrust.Inputs.EduInitialValueArgs
                {
                    Domains = new[]
                    {
                        new AzureNative.BillingTrust.Inputs.DomainEntryArgs
                        {
                            DomainNames = new[]
                            {
                                "string",
                            },
                            TenantId = "string",
                        },
                    },
                    Kind = "eduQualification",
                },
            },
        },
    });
    
    example, err := billingtrust.NewAssessment(ctx, "azure-nativeAssessmentResource", &billingtrust.AssessmentArgs{
    	ResourceUri: pulumi.String("string"),
    	Properties: &billingtrust.AssessmentPropertiesArgs{
    		AssessmentType: pulumi.String("string"),
    		InitialValues: billingtrust.EduInitialValueArray{
    			&billingtrust.EduInitialValueArgs{
    				Domains: billingtrust.DomainEntryArray{
    					&billingtrust.DomainEntryArgs{
    						DomainNames: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						TenantId: pulumi.String("string"),
    					},
    				},
    				Kind: pulumi.String("eduQualification"),
    			},
    		},
    	},
    })
    
    resource "azure-native_billingtrust_assessment" "azure-nativeAssessmentResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_uri = "string"
      properties = {
        assessment_type = "string"
        initial_values = [{
          domains = [{
            domain_names = ["string"]
            tenant_id    = "string"
          }]
          kind = "eduQualification"
        }]
      }
    }
    
    var azure_nativeAssessmentResource = new com.pulumi.azurenative.billingtrust.Assessment("azure-nativeAssessmentResource", com.pulumi.azurenative.billingtrust.AssessmentArgs.builder()
        .resourceUri("string")
        .properties(com.pulumi.azurenative.billingtrust.inputs.AssessmentPropertiesArgs.builder()
            .assessmentType("string")
            .initialValues(Map.ofEntries(
                Map.entry("domains", Arrays.asList(DomainEntryArgs.builder()
                    .domainNames("string")
                    .tenantId("string")
                    .build())),
                Map.entry("kind", "eduQualification")
            ))
            .build())
        .build());
    
    azure_native_assessment_resource = azure_native.billingtrust.Assessment("azure-nativeAssessmentResource",
        resource_uri="string",
        properties={
            "assessment_type": "string",
            "initial_values": [{
                "domains": [{
                    "domain_names": ["string"],
                    "tenant_id": "string",
                }],
                "kind": "eduQualification",
            }],
        })
    
    const azure_nativeAssessmentResource = new azure_native.billingtrust.Assessment("azure-nativeAssessmentResource", {
        resourceUri: "string",
        properties: {
            assessmentType: "string",
            initialValues: [{
                domains: [{
                    domainNames: ["string"],
                    tenantId: "string",
                }],
                kind: "eduQualification",
            }],
        },
    });
    
    type: azure-native:billingtrust:Assessment
    properties:
        properties:
            assessmentType: string
            initialValues:
                - domains:
                    - domainNames:
                        - string
                      tenantId: string
                  kind: eduQualification
        resourceUri: string
    

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

    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    Properties Pulumi.AzureNative.BillingTrust.Inputs.AssessmentProperties
    The resource-specific properties for this resource.
    ResourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    Properties AssessmentPropertiesArgs
    The resource-specific properties for this resource.
    resource_uri string
    The fully qualified Azure Resource manager identifier of the resource.
    properties object
    The resource-specific properties for this resource.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    properties AssessmentProperties
    The resource-specific properties for this resource.
    resourceUri string
    The fully qualified Azure Resource manager identifier of the resource.
    properties AssessmentProperties
    The resource-specific properties for this resource.
    resource_uri str
    The fully qualified Azure Resource manager identifier of the resource.
    properties AssessmentPropertiesArgs
    The resource-specific properties for this resource.
    resourceUri String
    The fully qualified Azure Resource manager identifier of the resource.
    properties Property Map
    The resource-specific properties for this resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Assessment 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
    The name of the resource
    SystemData Pulumi.AzureNative.BillingTrust.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AssessmentProperties, AssessmentPropertiesArgs

    The properties of an Assessment resource
    AssessmentType string | Pulumi.AzureNative.BillingTrust.AssessmentType
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    InitialValues List<Pulumi.AzureNative.BillingTrust.Inputs.EduInitialValue>
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    AssessmentType string | AssessmentType
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    InitialValues []EduInitialValue
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    assessment_type string | "Edu" | "BusinessVerification" | "PayeeEnrollment" | "PayeeProfile"
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    initial_values list(object)
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    assessmentType String | AssessmentType
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    initialValues List<EduInitialValue>
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    assessmentType string | AssessmentType
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    initialValues EduInitialValue[]
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    assessment_type str | AssessmentType
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    initial_values Sequence[EduInitialValue]
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.
    assessmentType String | "Edu" | "BusinessVerification" | "PayeeEnrollment" | "PayeeProfile"
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    initialValues List<Property Map>
    Optional initial values applied to the rules created with this assessment. Write-only — these values are routed to the per-kind rules and are not returned on read.

    AssessmentPropertiesResponse, AssessmentPropertiesResponseArgs

    The properties of an Assessment resource
    AssessmentType string
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    Error Pulumi.AzureNative.BillingTrust.Inputs.ErrorDetailResponse
    Error information when evaluationState is failed
    EvaluationState string
    The aggregated evaluation state of all active rules within this assessment
    NextEvaluation string
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    ProvisioningState string
    The provisioning state of the resource
    AssessmentType string
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    Error ErrorDetailResponse
    Error information when evaluationState is failed
    EvaluationState string
    The aggregated evaluation state of all active rules within this assessment
    NextEvaluation string
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    ProvisioningState string
    The provisioning state of the resource
    assessment_type string
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    error object
    Error information when evaluationState is failed
    evaluation_state string
    The aggregated evaluation state of all active rules within this assessment
    next_evaluation string
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    provisioning_state string
    The provisioning state of the resource
    assessmentType String
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    error ErrorDetailResponse
    Error information when evaluationState is failed
    evaluationState String
    The aggregated evaluation state of all active rules within this assessment
    nextEvaluation String
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    provisioningState String
    The provisioning state of the resource
    assessmentType string
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    error ErrorDetailResponse
    Error information when evaluationState is failed
    evaluationState string
    The aggregated evaluation state of all active rules within this assessment
    nextEvaluation string
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    provisioningState string
    The provisioning state of the resource
    assessment_type str
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    error ErrorDetailResponse
    Error information when evaluationState is failed
    evaluation_state str
    The aggregated evaluation state of all active rules within this assessment
    next_evaluation str
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    provisioning_state str
    The provisioning state of the resource
    assessmentType String
    The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
    error Property Map
    Error information when evaluationState is failed
    evaluationState String
    The aggregated evaluation state of all active rules within this assessment
    nextEvaluation String
    The next scheduled re-evaluation of this assessment. Only present when one or more rules in this assessment have a configured recurrence.
    provisioningState String
    The provisioning state of the resource

    AssessmentType, AssessmentTypeArgs

    Edu
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    BusinessVerification
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    PayeeEnrollment
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    PayeeProfile
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    AssessmentTypeEdu
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    AssessmentTypeBusinessVerification
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    AssessmentTypePayeeEnrollment
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    AssessmentTypePayeeProfile
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    "Edu"
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    "BusinessVerification"
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    "PayeeEnrollment"
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    "PayeeProfile"
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    Edu
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    BusinessVerification
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    PayeeEnrollment
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    PayeeProfile
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    Edu
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    BusinessVerification
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    PayeeEnrollment
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    PayeeProfile
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    EDU
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    BUSINESS_VERIFICATION
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    PAYEE_ENROLLMENT
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    PAYEE_PROFILE
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    "Edu"
    Edu Education qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.
    "BusinessVerification"
    BusinessVerification Business verification assessment. Verifies the billing account's business identity against the sold-to information on file.
    "PayeeEnrollment"
    PayeeEnrollment Payee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.
    "PayeeProfile"
    PayeeProfile Payee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iterate rules via LIST rather than addressing rules by name.

    DomainEntry, DomainEntryArgs

    A domain entry within an education qualification rule. domainNames and tenantId are supplied on creation; state and error are returned by the service.
    DomainNames List<string>
    Domain names associated with a tenant.
    TenantId string
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    DomainNames []string
    Domain names associated with a tenant.
    TenantId string
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    domain_names list(string)
    Domain names associated with a tenant.
    tenant_id string
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    domainNames List<String>
    Domain names associated with a tenant.
    tenantId String
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    domainNames string[]
    Domain names associated with a tenant.
    tenantId string
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    domain_names Sequence[str]
    Domain names associated with a tenant.
    tenant_id str
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.
    domainNames List<String>
    Domain names associated with a tenant.
    tenantId String
    The Microsoft Entra tenant ID owning these domains. Defaults to the calling user's tenant when omitted.

    EduInitialValue, EduInitialValueArgs

    Initial values for an education qualification rule. Per-domain entries (domainNames + tenantId) are used to populate the rule when the assessment is created.
    Domains List<Pulumi.AzureNative.BillingTrust.Inputs.DomainEntry>
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    Domains []DomainEntry
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    domains list(object)
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    domains List<DomainEntry>
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    domains DomainEntry[]
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    domains Sequence[DomainEntry]
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.
    domains List<Property Map>
    Per-domain entries to use when populating the education qualification rule. Only domainNames and tenantId are read from this payload; state and error on each entry are populated by the service.

    ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs

    The resource management error additional info.
    Info object
    The additional info.
    Type string
    The additional info type.
    Info interface{}
    The additional info.
    Type string
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Object
    The additional info.
    type String
    The additional info type.
    info any
    The additional info.
    type string
    The additional info type.
    info Any
    The additional info.
    type str
    The additional info type.
    info Any
    The additional info.
    type String
    The additional info type.

    ErrorDetailResponse, ErrorDetailResponseArgs

    The error detail.
    AdditionalInfo List<Pulumi.AzureNative.BillingTrust.Inputs.ErrorAdditionalInfoResponse>
    The error additional info.
    Code string
    The error code.
    Details List<Pulumi.AzureNative.BillingTrust.Inputs.ErrorDetailResponse>
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    AdditionalInfo []ErrorAdditionalInfoResponse
    The error additional info.
    Code string
    The error code.
    Details []ErrorDetailResponse
    The error details.
    Message string
    The error message.
    Target string
    The error target.
    additional_info list(object)
    The error additional info.
    code string
    The error code.
    details list(object)
    The error details.
    message string
    The error message.
    target string
    The error target.
    additionalInfo List<ErrorAdditionalInfoResponse>
    The error additional info.
    code String
    The error code.
    details List<ErrorDetailResponse>
    The error details.
    message String
    The error message.
    target String
    The error target.
    additionalInfo ErrorAdditionalInfoResponse[]
    The error additional info.
    code string
    The error code.
    details ErrorDetailResponse[]
    The error details.
    message string
    The error message.
    target string
    The error target.
    additional_info Sequence[ErrorAdditionalInfoResponse]
    The error additional info.
    code str
    The error code.
    details Sequence[ErrorDetailResponse]
    The error details.
    message str
    The error message.
    target str
    The error target.
    additionalInfo List<Property Map>
    The error additional info.
    code String
    The error code.
    details List<Property Map>
    The error details.
    message String
    The error message.
    target String
    The error target.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native:billingtrust:Assessment default /{resourceUri}/providers/Microsoft.BillingTrust/assessments/default 
    

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial