published on Saturday, Jul 18, 2026 by Pulumi
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:
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Properties
Pulumi.
Azure Native. Billing Trust. Inputs. Assessment Properties - The resource-specific properties for this resource.
- Resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- Properties
Assessment
Properties Args - 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.
- resource
Uri String - The fully qualified Azure Resource manager identifier of the resource.
- properties
Assessment
Properties - The resource-specific properties for this resource.
- resource
Uri string - The fully qualified Azure Resource manager identifier of the resource.
- properties
Assessment
Properties - The resource-specific properties for this resource.
- resource_
uri str - The fully qualified Azure Resource manager identifier of the resource.
- properties
Assessment
Properties Args - The resource-specific properties for this resource.
- resource
Uri 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:
- Azure
Api stringVersion - 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 Pulumi.Azure Native. Billing Trust. Outputs. System Data Response - 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 stringVersion - 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 SystemData Response - 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_ stringversion - 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"
- azure
Api StringVersion - 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 SystemData Response - 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 stringVersion - 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 SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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 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- Assessment
Type string | Pulumi.Azure Native. Billing Trust. Assessment Type - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- Initial
Values List<Pulumi.Azure Native. Billing Trust. Inputs. Edu Initial Value> - 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 | AssessmentType - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- Initial
Values []EduInitial Value - 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" | "Payee Enrollment" | "Payee Profile" - 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.
- assessment
Type String | AssessmentType - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- initial
Values List<EduInitial Value> - 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 | AssessmentType - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- initial
Values EduInitial Value[] - 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[EduInitial Value] - 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" | "Payee Enrollment" | "Payee Profile" - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- initial
Values 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- Assessment
Type string - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- Error
Pulumi.
Azure Native. Billing Trust. Inputs. Error Detail Response - 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
- Assessment
Type string - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- Error
Error
Detail Response - 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
- 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
- assessment
Type String - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- error
Error
Detail Response - 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
- assessment
Type string - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- error
Error
Detail Response - 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
- assessment_
type str - The name of the assessment template whose rules will be evaluated (e.g. 'Edu'). Immutable after creation.
- error
Error
Detail Response - 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
- assessment
Type 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
- 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, AssessmentTypeArgs
- Edu
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- Business
Verification BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- Payee
Enrollment PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- Payee
Profile PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- Assessment
Type Edu EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- Assessment
Type Business Verification BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- Assessment
Type Payee Enrollment PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- Assessment
Type Payee Profile PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- "Edu"
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- "Business
Verification" BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- "Payee
Enrollment" PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- "Payee
Profile" PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- Edu
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- Business
Verification BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- Payee
Enrollment PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- Payee
Profile PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- Edu
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- Business
Verification BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- Payee
Enrollment PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- Payee
Profile PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- EDU
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- BUSINESS_VERIFICATION
BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- PAYEE_ENROLLMENT
PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- PAYEE_PROFILE
PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.
- "Edu"
EduEducation qualification assessment. Verifies that the billing account qualifies for education programs based on customer-supplied domains.- "Business
Verification" BusinessVerificationBusiness verification assessment. Verifies the billing account's business identity against the sold-to information on file.- "Payee
Enrollment" PayeeEnrollmentPayee enrollment assessment. Verifies a billing account is eligible to enroll as a payee. Rule names within this template may change between API versions — iteraterulesvia LIST rather than addressing rules by name.- "Payee
Profile" PayeeProfilePayee profile assessment. Verifies the payee profile associated with a billing account. Rule names within this template may change between API versions — iteraterulesvia 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.- 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.
- Domain
Names []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.
- 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.
- 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.
- domain
Names 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.
- 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.
- 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.
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.
Azure Native. Billing Trust. Inputs. Domain Entry> - Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- Domains
[]Domain
Entry - Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- domains list(object)
- Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- domains
List<Domain
Entry> - Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- domains
Domain
Entry[] - Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- domains
Sequence[Domain
Entry] - Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
- domains List<Property Map>
- Per-domain entries to use when populating the education qualification rule. Only
domainNamesandtenantIdare read from this payload;stateanderroron each entry are populated by the service.
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
The resource management error additional info.ErrorDetailResponse, ErrorDetailResponseArgs
The error detail.- Additional
Info List<Pulumi.Azure Native. Billing Trust. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Billing Trust. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - 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.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
published on Saturday, Jul 18, 2026 by Pulumi