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

azure-native.testbase.Package

Explore with Pulumi AI

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.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

    The Test Base Package resource.

    Uses Azure REST API version 2023-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-04-01-preview.

    Other available API versions: 2022-04-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native testbase [ApiVersion]. See the version guide for details.

    Example Usage

    PackageCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var package = new AzureNative.TestBase.Package("package", new()
        {
            ApplicationName = "contoso-package2",
            BlobPath = "storageAccountPath/package.zip",
            FirstPartyApps = new[]
            {
                new AzureNative.TestBase.Inputs.FirstPartyAppDefinitionArgs
                {
                    Architecture = AzureNative.TestBase.Architecture.X64,
                    Channel = "Current Channel",
                    InteropExecutionMode = AzureNative.TestBase.InteropExecutionMode.FirstPartyAppWithTests,
                    Name = "Office",
                    Ring = "Insider",
                },
            },
            FlightingRing = "Insider Beta Channel",
            Location = "westus",
            PackageName = "contoso-package2",
            ResourceGroupName = "contoso-rg1",
            Tags = null,
            TargetOSList = new[]
            {
                new AzureNative.TestBase.Inputs.TargetOSInfoArgs
                {
                    OsUpdateType = "Security updates",
                    TargetOSs = new[]
                    {
                        "Windows 10 2004",
                        "Windows 10 1903",
                    },
                },
            },
            TestBaseAccountName = "contoso-testBaseAccount1",
            Tests = new[]
            {
                new AzureNative.TestBase.Inputs.TestArgs
                {
                    Commands = new[]
                    {
                        new AzureNative.TestBase.Inputs.CommandArgs
                        {
                            Action = AzureNative.TestBase.Action.Install,
                            AlwaysRun = true,
                            ApplyUpdateBefore = false,
                            Content = "app/scripts/install/job.ps1",
                            ContentType = AzureNative.TestBase.ContentType.Path,
                            Install1PAppBefore = true,
                            MaxRunTime = 1800,
                            Name = "Install",
                            RestartAfter = true,
                            RunAsInteractive = true,
                            RunElevated = true,
                        },
                        new AzureNative.TestBase.Inputs.CommandArgs
                        {
                            Action = AzureNative.TestBase.Action.Launch,
                            AlwaysRun = false,
                            ApplyUpdateBefore = true,
                            Content = "app/scripts/launch/job.ps1",
                            ContentType = AzureNative.TestBase.ContentType.Path,
                            Install1PAppBefore = false,
                            MaxRunTime = 1800,
                            Name = "Launch",
                            RestartAfter = false,
                            RunAsInteractive = true,
                            RunElevated = true,
                        },
                        new AzureNative.TestBase.Inputs.CommandArgs
                        {
                            Action = AzureNative.TestBase.Action.Close,
                            AlwaysRun = false,
                            ApplyUpdateBefore = false,
                            Content = "app/scripts/close/job.ps1",
                            ContentType = AzureNative.TestBase.ContentType.Path,
                            Install1PAppBefore = false,
                            MaxRunTime = 1800,
                            Name = "Close",
                            RestartAfter = false,
                            RunAsInteractive = true,
                            RunElevated = true,
                        },
                        new AzureNative.TestBase.Inputs.CommandArgs
                        {
                            Action = AzureNative.TestBase.Action.Uninstall,
                            AlwaysRun = true,
                            ApplyUpdateBefore = false,
                            Content = "app/scripts/uninstall/job.ps1",
                            ContentType = AzureNative.TestBase.ContentType.Path,
                            Install1PAppBefore = false,
                            MaxRunTime = 1800,
                            Name = "Uninstall",
                            RestartAfter = false,
                            RunAsInteractive = true,
                            RunElevated = true,
                        },
                    },
                    IsActive = true,
                    TestType = AzureNative.TestBase.TestType.OutOfBoxTest,
                },
            },
            Version = "1.0.0",
        });
    
    });
    
    package main
    
    import (
    	testbase "github.com/pulumi/pulumi-azure-native-sdk/testbase/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := testbase.NewPackage(ctx, "package", &testbase.PackageArgs{
    			ApplicationName: pulumi.String("contoso-package2"),
    			BlobPath:        pulumi.String("storageAccountPath/package.zip"),
    			FirstPartyApps: testbase.FirstPartyAppDefinitionArray{
    				&testbase.FirstPartyAppDefinitionArgs{
    					Architecture:         pulumi.String(testbase.ArchitectureX64),
    					Channel:              pulumi.String("Current Channel"),
    					InteropExecutionMode: pulumi.String(testbase.InteropExecutionModeFirstPartyAppWithTests),
    					Name:                 pulumi.String("Office"),
    					Ring:                 pulumi.String("Insider"),
    				},
    			},
    			FlightingRing:     pulumi.String("Insider Beta Channel"),
    			Location:          pulumi.String("westus"),
    			PackageName:       pulumi.String("contoso-package2"),
    			ResourceGroupName: pulumi.String("contoso-rg1"),
    			Tags:              pulumi.StringMap{},
    			TargetOSList: testbase.TargetOSInfoArray{
    				&testbase.TargetOSInfoArgs{
    					OsUpdateType: pulumi.String("Security updates"),
    					TargetOSs: pulumi.StringArray{
    						pulumi.String("Windows 10 2004"),
    						pulumi.String("Windows 10 1903"),
    					},
    				},
    			},
    			TestBaseAccountName: pulumi.String("contoso-testBaseAccount1"),
    			Tests: testbase.TestArray{
    				&testbase.TestArgs{
    					Commands: testbase.CommandArray{
    						&testbase.CommandArgs{
    							Action:             pulumi.String(testbase.ActionInstall),
    							AlwaysRun:          pulumi.Bool(true),
    							ApplyUpdateBefore:  pulumi.Bool(false),
    							Content:            pulumi.String("app/scripts/install/job.ps1"),
    							ContentType:        pulumi.String(testbase.ContentTypePath),
    							Install1PAppBefore: pulumi.Bool(true),
    							MaxRunTime:         pulumi.Int(1800),
    							Name:               pulumi.String("Install"),
    							RestartAfter:       pulumi.Bool(true),
    							RunAsInteractive:   pulumi.Bool(true),
    							RunElevated:        pulumi.Bool(true),
    						},
    						&testbase.CommandArgs{
    							Action:             pulumi.String(testbase.ActionLaunch),
    							AlwaysRun:          pulumi.Bool(false),
    							ApplyUpdateBefore:  pulumi.Bool(true),
    							Content:            pulumi.String("app/scripts/launch/job.ps1"),
    							ContentType:        pulumi.String(testbase.ContentTypePath),
    							Install1PAppBefore: pulumi.Bool(false),
    							MaxRunTime:         pulumi.Int(1800),
    							Name:               pulumi.String("Launch"),
    							RestartAfter:       pulumi.Bool(false),
    							RunAsInteractive:   pulumi.Bool(true),
    							RunElevated:        pulumi.Bool(true),
    						},
    						&testbase.CommandArgs{
    							Action:             pulumi.String(testbase.ActionClose),
    							AlwaysRun:          pulumi.Bool(false),
    							ApplyUpdateBefore:  pulumi.Bool(false),
    							Content:            pulumi.String("app/scripts/close/job.ps1"),
    							ContentType:        pulumi.String(testbase.ContentTypePath),
    							Install1PAppBefore: pulumi.Bool(false),
    							MaxRunTime:         pulumi.Int(1800),
    							Name:               pulumi.String("Close"),
    							RestartAfter:       pulumi.Bool(false),
    							RunAsInteractive:   pulumi.Bool(true),
    							RunElevated:        pulumi.Bool(true),
    						},
    						&testbase.CommandArgs{
    							Action:             pulumi.String(testbase.ActionUninstall),
    							AlwaysRun:          pulumi.Bool(true),
    							ApplyUpdateBefore:  pulumi.Bool(false),
    							Content:            pulumi.String("app/scripts/uninstall/job.ps1"),
    							ContentType:        pulumi.String(testbase.ContentTypePath),
    							Install1PAppBefore: pulumi.Bool(false),
    							MaxRunTime:         pulumi.Int(1800),
    							Name:               pulumi.String("Uninstall"),
    							RestartAfter:       pulumi.Bool(false),
    							RunAsInteractive:   pulumi.Bool(true),
    							RunElevated:        pulumi.Bool(true),
    						},
    					},
    					IsActive: pulumi.Bool(true),
    					TestType: pulumi.String(testbase.TestTypeOutOfBoxTest),
    				},
    			},
    			Version: pulumi.String("1.0.0"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.testbase.Package;
    import com.pulumi.azurenative.testbase.PackageArgs;
    import com.pulumi.azurenative.testbase.inputs.FirstPartyAppDefinitionArgs;
    import com.pulumi.azurenative.testbase.inputs.TargetOSInfoArgs;
    import com.pulumi.azurenative.testbase.inputs.TestArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var package_ = new Package("package", PackageArgs.builder()
                .applicationName("contoso-package2")
                .blobPath("storageAccountPath/package.zip")
                .firstPartyApps(FirstPartyAppDefinitionArgs.builder()
                    .architecture("x64")
                    .channel("Current Channel")
                    .interopExecutionMode("firstPartyAppWithTests")
                    .name("Office")
                    .ring("Insider")
                    .build())
                .flightingRing("Insider Beta Channel")
                .location("westus")
                .packageName("contoso-package2")
                .resourceGroupName("contoso-rg1")
                .tags(Map.ofEntries(
                ))
                .targetOSList(TargetOSInfoArgs.builder()
                    .osUpdateType("Security updates")
                    .targetOSs(                
                        "Windows 10 2004",
                        "Windows 10 1903")
                    .build())
                .testBaseAccountName("contoso-testBaseAccount1")
                .tests(TestArgs.builder()
                    .commands(                
                        CommandArgs.builder()
                            .action("Install")
                            .alwaysRun(true)
                            .applyUpdateBefore(false)
                            .content("app/scripts/install/job.ps1")
                            .contentType("Path")
                            .install1PAppBefore(true)
                            .maxRunTime(1800)
                            .name("Install")
                            .restartAfter(true)
                            .runAsInteractive(true)
                            .runElevated(true)
                            .build(),
                        CommandArgs.builder()
                            .action("Launch")
                            .alwaysRun(false)
                            .applyUpdateBefore(true)
                            .content("app/scripts/launch/job.ps1")
                            .contentType("Path")
                            .install1PAppBefore(false)
                            .maxRunTime(1800)
                            .name("Launch")
                            .restartAfter(false)
                            .runAsInteractive(true)
                            .runElevated(true)
                            .build(),
                        CommandArgs.builder()
                            .action("Close")
                            .alwaysRun(false)
                            .applyUpdateBefore(false)
                            .content("app/scripts/close/job.ps1")
                            .contentType("Path")
                            .install1PAppBefore(false)
                            .maxRunTime(1800)
                            .name("Close")
                            .restartAfter(false)
                            .runAsInteractive(true)
                            .runElevated(true)
                            .build(),
                        CommandArgs.builder()
                            .action("Uninstall")
                            .alwaysRun(true)
                            .applyUpdateBefore(false)
                            .content("app/scripts/uninstall/job.ps1")
                            .contentType("Path")
                            .install1PAppBefore(false)
                            .maxRunTime(1800)
                            .name("Uninstall")
                            .restartAfter(false)
                            .runAsInteractive(true)
                            .runElevated(true)
                            .build())
                    .isActive(true)
                    .testType("OutOfBoxTest")
                    .build())
                .version("1.0.0")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const _package = new azure_native.testbase.Package("package", {
        applicationName: "contoso-package2",
        blobPath: "storageAccountPath/package.zip",
        firstPartyApps: [{
            architecture: azure_native.testbase.Architecture.X64,
            channel: "Current Channel",
            interopExecutionMode: azure_native.testbase.InteropExecutionMode.FirstPartyAppWithTests,
            name: "Office",
            ring: "Insider",
        }],
        flightingRing: "Insider Beta Channel",
        location: "westus",
        packageName: "contoso-package2",
        resourceGroupName: "contoso-rg1",
        tags: {},
        targetOSList: [{
            osUpdateType: "Security updates",
            targetOSs: [
                "Windows 10 2004",
                "Windows 10 1903",
            ],
        }],
        testBaseAccountName: "contoso-testBaseAccount1",
        tests: [{
            commands: [
                {
                    action: azure_native.testbase.Action.Install,
                    alwaysRun: true,
                    applyUpdateBefore: false,
                    content: "app/scripts/install/job.ps1",
                    contentType: azure_native.testbase.ContentType.Path,
                    install1PAppBefore: true,
                    maxRunTime: 1800,
                    name: "Install",
                    restartAfter: true,
                    runAsInteractive: true,
                    runElevated: true,
                },
                {
                    action: azure_native.testbase.Action.Launch,
                    alwaysRun: false,
                    applyUpdateBefore: true,
                    content: "app/scripts/launch/job.ps1",
                    contentType: azure_native.testbase.ContentType.Path,
                    install1PAppBefore: false,
                    maxRunTime: 1800,
                    name: "Launch",
                    restartAfter: false,
                    runAsInteractive: true,
                    runElevated: true,
                },
                {
                    action: azure_native.testbase.Action.Close,
                    alwaysRun: false,
                    applyUpdateBefore: false,
                    content: "app/scripts/close/job.ps1",
                    contentType: azure_native.testbase.ContentType.Path,
                    install1PAppBefore: false,
                    maxRunTime: 1800,
                    name: "Close",
                    restartAfter: false,
                    runAsInteractive: true,
                    runElevated: true,
                },
                {
                    action: azure_native.testbase.Action.Uninstall,
                    alwaysRun: true,
                    applyUpdateBefore: false,
                    content: "app/scripts/uninstall/job.ps1",
                    contentType: azure_native.testbase.ContentType.Path,
                    install1PAppBefore: false,
                    maxRunTime: 1800,
                    name: "Uninstall",
                    restartAfter: false,
                    runAsInteractive: true,
                    runElevated: true,
                },
            ],
            isActive: true,
            testType: azure_native.testbase.TestType.OutOfBoxTest,
        }],
        version: "1.0.0",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    package = azure_native.testbase.Package("package",
        application_name="contoso-package2",
        blob_path="storageAccountPath/package.zip",
        first_party_apps=[{
            "architecture": azure_native.testbase.Architecture.X64,
            "channel": "Current Channel",
            "interop_execution_mode": azure_native.testbase.InteropExecutionMode.FIRST_PARTY_APP_WITH_TESTS,
            "name": "Office",
            "ring": "Insider",
        }],
        flighting_ring="Insider Beta Channel",
        location="westus",
        package_name="contoso-package2",
        resource_group_name="contoso-rg1",
        tags={},
        target_os_list=[{
            "os_update_type": "Security updates",
            "target_oss": [
                "Windows 10 2004",
                "Windows 10 1903",
            ],
        }],
        test_base_account_name="contoso-testBaseAccount1",
        tests=[{
            "commands": [
                {
                    "action": azure_native.testbase.Action.INSTALL,
                    "always_run": True,
                    "apply_update_before": False,
                    "content": "app/scripts/install/job.ps1",
                    "content_type": azure_native.testbase.ContentType.PATH,
                    "install1_p_app_before": True,
                    "max_run_time": 1800,
                    "name": "Install",
                    "restart_after": True,
                    "run_as_interactive": True,
                    "run_elevated": True,
                },
                {
                    "action": azure_native.testbase.Action.LAUNCH,
                    "always_run": False,
                    "apply_update_before": True,
                    "content": "app/scripts/launch/job.ps1",
                    "content_type": azure_native.testbase.ContentType.PATH,
                    "install1_p_app_before": False,
                    "max_run_time": 1800,
                    "name": "Launch",
                    "restart_after": False,
                    "run_as_interactive": True,
                    "run_elevated": True,
                },
                {
                    "action": azure_native.testbase.Action.CLOSE,
                    "always_run": False,
                    "apply_update_before": False,
                    "content": "app/scripts/close/job.ps1",
                    "content_type": azure_native.testbase.ContentType.PATH,
                    "install1_p_app_before": False,
                    "max_run_time": 1800,
                    "name": "Close",
                    "restart_after": False,
                    "run_as_interactive": True,
                    "run_elevated": True,
                },
                {
                    "action": azure_native.testbase.Action.UNINSTALL,
                    "always_run": True,
                    "apply_update_before": False,
                    "content": "app/scripts/uninstall/job.ps1",
                    "content_type": azure_native.testbase.ContentType.PATH,
                    "install1_p_app_before": False,
                    "max_run_time": 1800,
                    "name": "Uninstall",
                    "restart_after": False,
                    "run_as_interactive": True,
                    "run_elevated": True,
                },
            ],
            "is_active": True,
            "test_type": azure_native.testbase.TestType.OUT_OF_BOX_TEST,
        }],
        version="1.0.0")
    
    resources:
      package:
        type: azure-native:testbase:Package
        properties:
          applicationName: contoso-package2
          blobPath: storageAccountPath/package.zip
          firstPartyApps:
            - architecture: x64
              channel: Current Channel
              interopExecutionMode: firstPartyAppWithTests
              name: Office
              ring: Insider
          flightingRing: Insider Beta Channel
          location: westus
          packageName: contoso-package2
          resourceGroupName: contoso-rg1
          tags: {}
          targetOSList:
            - osUpdateType: Security updates
              targetOSs:
                - Windows 10 2004
                - Windows 10 1903
          testBaseAccountName: contoso-testBaseAccount1
          tests:
            - commands:
                - action: Install
                  alwaysRun: true
                  applyUpdateBefore: false
                  content: app/scripts/install/job.ps1
                  contentType: Path
                  install1PAppBefore: true
                  maxRunTime: 1800
                  name: Install
                  restartAfter: true
                  runAsInteractive: true
                  runElevated: true
                - action: Launch
                  alwaysRun: false
                  applyUpdateBefore: true
                  content: app/scripts/launch/job.ps1
                  contentType: Path
                  install1PAppBefore: false
                  maxRunTime: 1800
                  name: Launch
                  restartAfter: false
                  runAsInteractive: true
                  runElevated: true
                - action: Close
                  alwaysRun: false
                  applyUpdateBefore: false
                  content: app/scripts/close/job.ps1
                  contentType: Path
                  install1PAppBefore: false
                  maxRunTime: 1800
                  name: Close
                  restartAfter: false
                  runAsInteractive: true
                  runElevated: true
                - action: Uninstall
                  alwaysRun: true
                  applyUpdateBefore: false
                  content: app/scripts/uninstall/job.ps1
                  contentType: Path
                  install1PAppBefore: false
                  maxRunTime: 1800
                  name: Uninstall
                  restartAfter: false
                  runAsInteractive: true
                  runElevated: true
              isActive: true
              testType: OutOfBoxTest
          version: 1.0.0
    

    Create Package Resource

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

    Constructor syntax

    new Package(name: string, args: PackageArgs, opts?: CustomResourceOptions);
    @overload
    def Package(resource_name: str,
                args: PackageArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Package(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                version: Optional[str] = None,
                test_base_account_name: Optional[str] = None,
                application_name: Optional[str] = None,
                first_party_apps: Optional[Sequence[FirstPartyAppDefinitionArgs]] = None,
                inplace_upgrade_os_pair: Optional[InplaceUpgradeOSInfoArgs] = None,
                intune_enrollment_metadata: Optional[IntuneEnrollmentMetadataArgs] = None,
                location: Optional[str] = None,
                package_name: Optional[str] = None,
                flighting_ring: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                target_os_list: Optional[Sequence[TargetOSInfoArgs]] = None,
                draft_package_id: Optional[str] = None,
                tests: Optional[Sequence[TestArgs]] = None,
                blob_path: Optional[str] = None)
    func NewPackage(ctx *Context, name string, args PackageArgs, opts ...ResourceOption) (*Package, error)
    public Package(string name, PackageArgs args, CustomResourceOptions? opts = null)
    public Package(String name, PackageArgs args)
    public Package(String name, PackageArgs args, CustomResourceOptions options)
    
    type: azure-native:testbase:Package
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args PackageArgs
    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 PackageArgs
    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 PackageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PackageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PackageArgs
    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_nativePackageResource = new AzureNative.TestBase.Package("azure-nativePackageResource", new()
    {
        ResourceGroupName = "string",
        Version = "string",
        TestBaseAccountName = "string",
        ApplicationName = "string",
        FirstPartyApps = new[]
        {
            new AzureNative.TestBase.Inputs.FirstPartyAppDefinitionArgs
            {
                Architecture = "string",
                Channel = "string",
                InteropExecutionMode = "string",
                Name = "string",
                Ring = "string",
            },
        },
        InplaceUpgradeOSPair = new AzureNative.TestBase.Inputs.InplaceUpgradeOSInfoArgs
        {
            BaselineOS = new AzureNative.TestBase.Inputs.OsPropertiesArgs
            {
                CustomImageId = "string",
                OsName = "string",
                ReleaseProperties = new AzureNative.TestBase.Inputs.ReleasePropertiesArgs
                {
                    BuildNumber = "string",
                    BuildRevision = "string",
                    ReleaseName = "string",
                    ReleaseVersionDate = "string",
                },
            },
            TargetOS = "string",
        },
        IntuneEnrollmentMetadata = new AzureNative.TestBase.Inputs.IntuneEnrollmentMetadataArgs
        {
            AppList = new[]
            {
                new AzureNative.TestBase.Inputs.EnrolledIntuneAppArgs
                {
                    AppId = "string",
                    AppName = "string",
                    ExpectedInstallationPath = "string",
                },
            },
            CredentialId = "string",
            ExpectedDeploymentDurationInMinute = 0,
        },
        Location = "string",
        PackageName = "string",
        FlightingRing = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TargetOSList = new[]
        {
            new AzureNative.TestBase.Inputs.TargetOSInfoArgs
            {
                OsUpdateType = "string",
                BaselineOSs = new[]
                {
                    "string",
                },
                InsiderChannelIds = new[]
                {
                    "string",
                },
                TargetOSImageIds = new[]
                {
                    "string",
                },
                TargetOSs = new[]
                {
                    "string",
                },
            },
        },
        DraftPackageId = "string",
        Tests = new[]
        {
            new AzureNative.TestBase.Inputs.TestArgs
            {
                Commands = new[]
                {
                    new AzureNative.TestBase.Inputs.CommandArgs
                    {
                        ContentType = "string",
                        Name = "string",
                        Action = "string",
                        Content = "string",
                        Install1PAppBefore = false,
                        EnrollIntuneBefore = false,
                        ApplyUpdateBefore = false,
                        MaxRunTime = 0,
                        AlwaysRun = false,
                        PostUpgrade = false,
                        PreUpgrade = false,
                        RestartAfter = false,
                        RunAsInteractive = false,
                        RunElevated = false,
                    },
                },
                TestType = "string",
                IsActive = false,
            },
        },
        BlobPath = "string",
    });
    
    example, err := testbase.NewPackage(ctx, "azure-nativePackageResource", &testbase.PackageArgs{
    	ResourceGroupName:   pulumi.String("string"),
    	Version:             pulumi.String("string"),
    	TestBaseAccountName: pulumi.String("string"),
    	ApplicationName:     pulumi.String("string"),
    	FirstPartyApps: testbase.FirstPartyAppDefinitionArray{
    		&testbase.FirstPartyAppDefinitionArgs{
    			Architecture:         pulumi.String("string"),
    			Channel:              pulumi.String("string"),
    			InteropExecutionMode: pulumi.String("string"),
    			Name:                 pulumi.String("string"),
    			Ring:                 pulumi.String("string"),
    		},
    	},
    	InplaceUpgradeOSPair: &testbase.InplaceUpgradeOSInfoArgs{
    		BaselineOS: &testbase.OsPropertiesArgs{
    			CustomImageId: pulumi.String("string"),
    			OsName:        pulumi.String("string"),
    			ReleaseProperties: &testbase.ReleasePropertiesArgs{
    				BuildNumber:        pulumi.String("string"),
    				BuildRevision:      pulumi.String("string"),
    				ReleaseName:        pulumi.String("string"),
    				ReleaseVersionDate: pulumi.String("string"),
    			},
    		},
    		TargetOS: pulumi.String("string"),
    	},
    	IntuneEnrollmentMetadata: &testbase.IntuneEnrollmentMetadataArgs{
    		AppList: testbase.EnrolledIntuneAppArray{
    			&testbase.EnrolledIntuneAppArgs{
    				AppId:                    pulumi.String("string"),
    				AppName:                  pulumi.String("string"),
    				ExpectedInstallationPath: pulumi.String("string"),
    			},
    		},
    		CredentialId:                       pulumi.String("string"),
    		ExpectedDeploymentDurationInMinute: pulumi.Int(0),
    	},
    	Location:      pulumi.String("string"),
    	PackageName:   pulumi.String("string"),
    	FlightingRing: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TargetOSList: testbase.TargetOSInfoArray{
    		&testbase.TargetOSInfoArgs{
    			OsUpdateType: pulumi.String("string"),
    			BaselineOSs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			InsiderChannelIds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			TargetOSImageIds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			TargetOSs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	DraftPackageId: pulumi.String("string"),
    	Tests: testbase.TestArray{
    		&testbase.TestArgs{
    			Commands: testbase.CommandArray{
    				&testbase.CommandArgs{
    					ContentType:        pulumi.String("string"),
    					Name:               pulumi.String("string"),
    					Action:             pulumi.String("string"),
    					Content:            pulumi.String("string"),
    					Install1PAppBefore: pulumi.Bool(false),
    					EnrollIntuneBefore: pulumi.Bool(false),
    					ApplyUpdateBefore:  pulumi.Bool(false),
    					MaxRunTime:         pulumi.Int(0),
    					AlwaysRun:          pulumi.Bool(false),
    					PostUpgrade:        pulumi.Bool(false),
    					PreUpgrade:         pulumi.Bool(false),
    					RestartAfter:       pulumi.Bool(false),
    					RunAsInteractive:   pulumi.Bool(false),
    					RunElevated:        pulumi.Bool(false),
    				},
    			},
    			TestType: pulumi.String("string"),
    			IsActive: pulumi.Bool(false),
    		},
    	},
    	BlobPath: pulumi.String("string"),
    })
    
    var azure_nativePackageResource = new com.pulumi.azurenative.testbase.Package("azure-nativePackageResource", com.pulumi.azurenative.testbase.PackageArgs.builder()
        .resourceGroupName("string")
        .version("string")
        .testBaseAccountName("string")
        .applicationName("string")
        .firstPartyApps(FirstPartyAppDefinitionArgs.builder()
            .architecture("string")
            .channel("string")
            .interopExecutionMode("string")
            .name("string")
            .ring("string")
            .build())
        .inplaceUpgradeOSPair(InplaceUpgradeOSInfoArgs.builder()
            .baselineOS(OsPropertiesArgs.builder()
                .customImageId("string")
                .osName("string")
                .releaseProperties(ReleasePropertiesArgs.builder()
                    .buildNumber("string")
                    .buildRevision("string")
                    .releaseName("string")
                    .releaseVersionDate("string")
                    .build())
                .build())
            .targetOS("string")
            .build())
        .intuneEnrollmentMetadata(IntuneEnrollmentMetadataArgs.builder()
            .appList(EnrolledIntuneAppArgs.builder()
                .appId("string")
                .appName("string")
                .expectedInstallationPath("string")
                .build())
            .credentialId("string")
            .expectedDeploymentDurationInMinute(0)
            .build())
        .location("string")
        .packageName("string")
        .flightingRing("string")
        .tags(Map.of("string", "string"))
        .targetOSList(TargetOSInfoArgs.builder()
            .osUpdateType("string")
            .baselineOSs("string")
            .insiderChannelIds("string")
            .targetOSImageIds("string")
            .targetOSs("string")
            .build())
        .draftPackageId("string")
        .tests(TestArgs.builder()
            .commands(CommandArgs.builder()
                .contentType("string")
                .name("string")
                .action("string")
                .content("string")
                .install1PAppBefore(false)
                .enrollIntuneBefore(false)
                .applyUpdateBefore(false)
                .maxRunTime(0)
                .alwaysRun(false)
                .postUpgrade(false)
                .preUpgrade(false)
                .restartAfter(false)
                .runAsInteractive(false)
                .runElevated(false)
                .build())
            .testType("string")
            .isActive(false)
            .build())
        .blobPath("string")
        .build());
    
    azure_native_package_resource = azure_native.testbase.Package("azure-nativePackageResource",
        resource_group_name="string",
        version="string",
        test_base_account_name="string",
        application_name="string",
        first_party_apps=[{
            "architecture": "string",
            "channel": "string",
            "interop_execution_mode": "string",
            "name": "string",
            "ring": "string",
        }],
        inplace_upgrade_os_pair={
            "baseline_os": {
                "custom_image_id": "string",
                "os_name": "string",
                "release_properties": {
                    "build_number": "string",
                    "build_revision": "string",
                    "release_name": "string",
                    "release_version_date": "string",
                },
            },
            "target_os": "string",
        },
        intune_enrollment_metadata={
            "app_list": [{
                "app_id": "string",
                "app_name": "string",
                "expected_installation_path": "string",
            }],
            "credential_id": "string",
            "expected_deployment_duration_in_minute": 0,
        },
        location="string",
        package_name="string",
        flighting_ring="string",
        tags={
            "string": "string",
        },
        target_os_list=[{
            "os_update_type": "string",
            "baseline_oss": ["string"],
            "insider_channel_ids": ["string"],
            "target_os_image_ids": ["string"],
            "target_oss": ["string"],
        }],
        draft_package_id="string",
        tests=[{
            "commands": [{
                "content_type": "string",
                "name": "string",
                "action": "string",
                "content": "string",
                "install1_p_app_before": False,
                "enroll_intune_before": False,
                "apply_update_before": False,
                "max_run_time": 0,
                "always_run": False,
                "post_upgrade": False,
                "pre_upgrade": False,
                "restart_after": False,
                "run_as_interactive": False,
                "run_elevated": False,
            }],
            "test_type": "string",
            "is_active": False,
        }],
        blob_path="string")
    
    const azure_nativePackageResource = new azure_native.testbase.Package("azure-nativePackageResource", {
        resourceGroupName: "string",
        version: "string",
        testBaseAccountName: "string",
        applicationName: "string",
        firstPartyApps: [{
            architecture: "string",
            channel: "string",
            interopExecutionMode: "string",
            name: "string",
            ring: "string",
        }],
        inplaceUpgradeOSPair: {
            baselineOS: {
                customImageId: "string",
                osName: "string",
                releaseProperties: {
                    buildNumber: "string",
                    buildRevision: "string",
                    releaseName: "string",
                    releaseVersionDate: "string",
                },
            },
            targetOS: "string",
        },
        intuneEnrollmentMetadata: {
            appList: [{
                appId: "string",
                appName: "string",
                expectedInstallationPath: "string",
            }],
            credentialId: "string",
            expectedDeploymentDurationInMinute: 0,
        },
        location: "string",
        packageName: "string",
        flightingRing: "string",
        tags: {
            string: "string",
        },
        targetOSList: [{
            osUpdateType: "string",
            baselineOSs: ["string"],
            insiderChannelIds: ["string"],
            targetOSImageIds: ["string"],
            targetOSs: ["string"],
        }],
        draftPackageId: "string",
        tests: [{
            commands: [{
                contentType: "string",
                name: "string",
                action: "string",
                content: "string",
                install1PAppBefore: false,
                enrollIntuneBefore: false,
                applyUpdateBefore: false,
                maxRunTime: 0,
                alwaysRun: false,
                postUpgrade: false,
                preUpgrade: false,
                restartAfter: false,
                runAsInteractive: false,
                runElevated: false,
            }],
            testType: "string",
            isActive: false,
        }],
        blobPath: "string",
    });
    
    type: azure-native:testbase:Package
    properties:
        applicationName: string
        blobPath: string
        draftPackageId: string
        firstPartyApps:
            - architecture: string
              channel: string
              interopExecutionMode: string
              name: string
              ring: string
        flightingRing: string
        inplaceUpgradeOSPair:
            baselineOS:
                customImageId: string
                osName: string
                releaseProperties:
                    buildNumber: string
                    buildRevision: string
                    releaseName: string
                    releaseVersionDate: string
            targetOS: string
        intuneEnrollmentMetadata:
            appList:
                - appId: string
                  appName: string
                  expectedInstallationPath: string
            credentialId: string
            expectedDeploymentDurationInMinute: 0
        location: string
        packageName: string
        resourceGroupName: string
        tags:
            string: string
        targetOSList:
            - baselineOSs:
                - string
              insiderChannelIds:
                - string
              osUpdateType: string
              targetOSImageIds:
                - string
              targetOSs:
                - string
        testBaseAccountName: string
        tests:
            - commands:
                - action: string
                  alwaysRun: false
                  applyUpdateBefore: false
                  content: string
                  contentType: string
                  enrollIntuneBefore: false
                  install1PAppBefore: false
                  maxRunTime: 0
                  name: string
                  postUpgrade: false
                  preUpgrade: false
                  restartAfter: false
                  runAsInteractive: false
                  runElevated: false
              isActive: false
              testType: string
        version: string
    

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

    ApplicationName string
    Application name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TestBaseAccountName string
    The resource name of the Test Base Account.
    Version string
    Application version
    BlobPath string
    The file path of the package.
    DraftPackageId string
    The id of draft package. Used to create or update this package from a draft package.
    FirstPartyApps List<Pulumi.AzureNative.TestBase.Inputs.FirstPartyAppDefinition>
    The list of first party applications to test along with user application.
    FlightingRing string
    The flighting ring for feature update.
    InplaceUpgradeOSPair Pulumi.AzureNative.TestBase.Inputs.InplaceUpgradeOSInfo
    Specifies the baseline os and target os for inplace upgrade.
    IntuneEnrollmentMetadata Pulumi.AzureNative.TestBase.Inputs.IntuneEnrollmentMetadata
    The metadata of Intune enrollment.
    Location string
    The geo-location where the resource lives
    PackageName string
    The resource name of the Test Base Package.
    Tags Dictionary<string, string>
    Resource tags.
    TargetOSList List<Pulumi.AzureNative.TestBase.Inputs.TargetOSInfo>
    Specifies the target OSs of specific OS Update types.
    Tests List<Pulumi.AzureNative.TestBase.Inputs.Test>
    The detailed test information.
    ApplicationName string
    Application name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    TestBaseAccountName string
    The resource name of the Test Base Account.
    Version string
    Application version
    BlobPath string
    The file path of the package.
    DraftPackageId string
    The id of draft package. Used to create or update this package from a draft package.
    FirstPartyApps []FirstPartyAppDefinitionArgs
    The list of first party applications to test along with user application.
    FlightingRing string
    The flighting ring for feature update.
    InplaceUpgradeOSPair InplaceUpgradeOSInfoArgs
    Specifies the baseline os and target os for inplace upgrade.
    IntuneEnrollmentMetadata IntuneEnrollmentMetadataArgs
    The metadata of Intune enrollment.
    Location string
    The geo-location where the resource lives
    PackageName string
    The resource name of the Test Base Package.
    Tags map[string]string
    Resource tags.
    TargetOSList []TargetOSInfoArgs
    Specifies the target OSs of specific OS Update types.
    Tests []TestArgs
    The detailed test information.
    applicationName String
    Application name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    testBaseAccountName String
    The resource name of the Test Base Account.
    version String
    Application version
    blobPath String
    The file path of the package.
    draftPackageId String
    The id of draft package. Used to create or update this package from a draft package.
    firstPartyApps List<FirstPartyAppDefinition>
    The list of first party applications to test along with user application.
    flightingRing String
    The flighting ring for feature update.
    inplaceUpgradeOSPair InplaceUpgradeOSInfo
    Specifies the baseline os and target os for inplace upgrade.
    intuneEnrollmentMetadata IntuneEnrollmentMetadata
    The metadata of Intune enrollment.
    location String
    The geo-location where the resource lives
    packageName String
    The resource name of the Test Base Package.
    tags Map<String,String>
    Resource tags.
    targetOSList List<TargetOSInfo>
    Specifies the target OSs of specific OS Update types.
    tests List<Test>
    The detailed test information.
    applicationName string
    Application name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    testBaseAccountName string
    The resource name of the Test Base Account.
    version string
    Application version
    blobPath string
    The file path of the package.
    draftPackageId string
    The id of draft package. Used to create or update this package from a draft package.
    firstPartyApps FirstPartyAppDefinition[]
    The list of first party applications to test along with user application.
    flightingRing string
    The flighting ring for feature update.
    inplaceUpgradeOSPair InplaceUpgradeOSInfo
    Specifies the baseline os and target os for inplace upgrade.
    intuneEnrollmentMetadata IntuneEnrollmentMetadata
    The metadata of Intune enrollment.
    location string
    The geo-location where the resource lives
    packageName string
    The resource name of the Test Base Package.
    tags {[key: string]: string}
    Resource tags.
    targetOSList TargetOSInfo[]
    Specifies the target OSs of specific OS Update types.
    tests Test[]
    The detailed test information.
    application_name str
    Application name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    test_base_account_name str
    The resource name of the Test Base Account.
    version str
    Application version
    blob_path str
    The file path of the package.
    draft_package_id str
    The id of draft package. Used to create or update this package from a draft package.
    first_party_apps Sequence[FirstPartyAppDefinitionArgs]
    The list of first party applications to test along with user application.
    flighting_ring str
    The flighting ring for feature update.
    inplace_upgrade_os_pair InplaceUpgradeOSInfoArgs
    Specifies the baseline os and target os for inplace upgrade.
    intune_enrollment_metadata IntuneEnrollmentMetadataArgs
    The metadata of Intune enrollment.
    location str
    The geo-location where the resource lives
    package_name str
    The resource name of the Test Base Package.
    tags Mapping[str, str]
    Resource tags.
    target_os_list Sequence[TargetOSInfoArgs]
    Specifies the target OSs of specific OS Update types.
    tests Sequence[TestArgs]
    The detailed test information.
    applicationName String
    Application name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    testBaseAccountName String
    The resource name of the Test Base Account.
    version String
    Application version
    blobPath String
    The file path of the package.
    draftPackageId String
    The id of draft package. Used to create or update this package from a draft package.
    firstPartyApps List<Property Map>
    The list of first party applications to test along with user application.
    flightingRing String
    The flighting ring for feature update.
    inplaceUpgradeOSPair Property Map
    Specifies the baseline os and target os for inplace upgrade.
    intuneEnrollmentMetadata Property Map
    The metadata of Intune enrollment.
    location String
    The geo-location where the resource lives
    packageName String
    The resource name of the Test Base Package.
    tags Map<String>
    Resource tags.
    targetOSList List<Property Map>
    Specifies the target OSs of specific OS Update types.
    tests List<Property Map>
    The detailed test information.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    GalleryApps List<Pulumi.AzureNative.TestBase.Outputs.GalleryAppDefinitionResponse>
    The list of gallery apps to test along with user application.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsEnabled bool
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    LastModifiedTime string
    The UTC timestamp when the package was last modified.
    Name string
    The name of the resource
    PackageStatus string
    The status of the package.
    ProvisioningState string
    The provisioning state of the resource.
    SystemData Pulumi.AzureNative.TestBase.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TestTypes List<string>
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    ValidationResults List<Pulumi.AzureNative.TestBase.Outputs.PackageValidationResultResponse>
    The validation results. There's validation on package when it's created or updated.
    AzureApiVersion string
    The Azure API version of the resource.
    GalleryApps []GalleryAppDefinitionResponse
    The list of gallery apps to test along with user application.
    Id string
    The provider-assigned unique ID for this managed resource.
    IsEnabled bool
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    LastModifiedTime string
    The UTC timestamp when the package was last modified.
    Name string
    The name of the resource
    PackageStatus string
    The status of the package.
    ProvisioningState string
    The provisioning state of the resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    TestTypes []string
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    ValidationResults []PackageValidationResultResponse
    The validation results. There's validation on package when it's created or updated.
    azureApiVersion String
    The Azure API version of the resource.
    galleryApps List<GalleryAppDefinitionResponse>
    The list of gallery apps to test along with user application.
    id String
    The provider-assigned unique ID for this managed resource.
    isEnabled Boolean
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    lastModifiedTime String
    The UTC timestamp when the package was last modified.
    name String
    The name of the resource
    packageStatus String
    The status of the package.
    provisioningState String
    The provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    testTypes List<String>
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationResults List<PackageValidationResultResponse>
    The validation results. There's validation on package when it's created or updated.
    azureApiVersion string
    The Azure API version of the resource.
    galleryApps GalleryAppDefinitionResponse[]
    The list of gallery apps to test along with user application.
    id string
    The provider-assigned unique ID for this managed resource.
    isEnabled boolean
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    lastModifiedTime string
    The UTC timestamp when the package was last modified.
    name string
    The name of the resource
    packageStatus string
    The status of the package.
    provisioningState string
    The provisioning state of the resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    testTypes string[]
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationResults PackageValidationResultResponse[]
    The validation results. There's validation on package when it's created or updated.
    azure_api_version str
    The Azure API version of the resource.
    gallery_apps Sequence[GalleryAppDefinitionResponse]
    The list of gallery apps to test along with user application.
    id str
    The provider-assigned unique ID for this managed resource.
    is_enabled bool
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    last_modified_time str
    The UTC timestamp when the package was last modified.
    name str
    The name of the resource
    package_status str
    The status of the package.
    provisioning_state str
    The provisioning state of the resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    test_types Sequence[str]
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validation_results Sequence[PackageValidationResultResponse]
    The validation results. There's validation on package when it's created or updated.
    azureApiVersion String
    The Azure API version of the resource.
    galleryApps List<Property Map>
    The list of gallery apps to test along with user application.
    id String
    The provider-assigned unique ID for this managed resource.
    isEnabled Boolean
    Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
    lastModifiedTime String
    The UTC timestamp when the package was last modified.
    name String
    The name of the resource
    packageStatus String
    The status of the package.
    provisioningState String
    The provisioning state of the resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    testTypes List<String>
    OOB, functional or flow driven. Mapped to the data in 'tests' property.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    validationResults List<Property Map>
    The validation results. There's validation on package when it's created or updated.

    Supporting Types

    Action, ActionArgs

    Install
    Install
    Launch
    Launch
    Close
    Close
    Uninstall
    Uninstall
    Custom
    Custom
    FlowDrivenCustom
    FlowDrivenCustom
    ActionInstall
    Install
    ActionLaunch
    Launch
    ActionClose
    Close
    ActionUninstall
    Uninstall
    ActionCustom
    Custom
    ActionFlowDrivenCustom
    FlowDrivenCustom
    Install
    Install
    Launch
    Launch
    Close
    Close
    Uninstall
    Uninstall
    Custom
    Custom
    FlowDrivenCustom
    FlowDrivenCustom
    Install
    Install
    Launch
    Launch
    Close
    Close
    Uninstall
    Uninstall
    Custom
    Custom
    FlowDrivenCustom
    FlowDrivenCustom
    INSTALL
    Install
    LAUNCH
    Launch
    CLOSE
    Close
    UNINSTALL
    Uninstall
    CUSTOM
    Custom
    FLOW_DRIVEN_CUSTOM
    FlowDrivenCustom
    "Install"
    Install
    "Launch"
    Launch
    "Close"
    Close
    "Uninstall"
    Uninstall
    "Custom"
    Custom
    "FlowDrivenCustom"
    FlowDrivenCustom

    Architecture, ArchitectureArgs

    X86
    x86
    X64
    x64
    Arm64
    arm64
    ArchitectureX86
    x86
    ArchitectureX64
    x64
    ArchitectureArm64
    arm64
    X86
    x86
    X64
    x64
    Arm64
    arm64
    X86
    x86
    X64
    x64
    Arm64
    arm64
    X86
    x86
    X64
    x64
    ARM64
    arm64
    "x86"
    x86
    "x64"
    x64
    "arm64"
    arm64

    Command, CommandArgs

    Action string | Pulumi.AzureNative.TestBase.Action
    The action of the command.
    Content string
    The content of the command. The content depends on source type.
    ContentType string | Pulumi.AzureNative.TestBase.ContentType
    The type of command content.
    Name string
    The name of the command.
    AlwaysRun bool
    Specifies whether to run the command even if a previous command is failed.
    ApplyUpdateBefore bool
    Specifies whether to apply update before the command.
    EnrollIntuneBefore bool
    Specifies whether to enroll Intune before the command.
    Install1PAppBefore bool
    Specifies whether to install first party applications before running the command.
    MaxRunTime int
    Specifies the max run time of the command.
    PostUpgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    PreUpgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    RestartAfter bool
    Specifies whether to restart the VM after the command executed.
    RunAsInteractive bool
    Specifies whether to run the command in interactive mode.
    RunElevated bool
    Specifies whether to run the command as administrator.
    Action string | Action
    The action of the command.
    Content string
    The content of the command. The content depends on source type.
    ContentType string | ContentType
    The type of command content.
    Name string
    The name of the command.
    AlwaysRun bool
    Specifies whether to run the command even if a previous command is failed.
    ApplyUpdateBefore bool
    Specifies whether to apply update before the command.
    EnrollIntuneBefore bool
    Specifies whether to enroll Intune before the command.
    Install1PAppBefore bool
    Specifies whether to install first party applications before running the command.
    MaxRunTime int
    Specifies the max run time of the command.
    PostUpgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    PreUpgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    RestartAfter bool
    Specifies whether to restart the VM after the command executed.
    RunAsInteractive bool
    Specifies whether to run the command in interactive mode.
    RunElevated bool
    Specifies whether to run the command as administrator.
    action String | Action
    The action of the command.
    content String
    The content of the command. The content depends on source type.
    contentType String | ContentType
    The type of command content.
    name String
    The name of the command.
    alwaysRun Boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore Boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore Boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore Boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime Integer
    Specifies the max run time of the command.
    postUpgrade Boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade Boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter Boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive Boolean
    Specifies whether to run the command in interactive mode.
    runElevated Boolean
    Specifies whether to run the command as administrator.
    action string | Action
    The action of the command.
    content string
    The content of the command. The content depends on source type.
    contentType string | ContentType
    The type of command content.
    name string
    The name of the command.
    alwaysRun boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime number
    Specifies the max run time of the command.
    postUpgrade boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive boolean
    Specifies whether to run the command in interactive mode.
    runElevated boolean
    Specifies whether to run the command as administrator.
    action str | Action
    The action of the command.
    content str
    The content of the command. The content depends on source type.
    content_type str | ContentType
    The type of command content.
    name str
    The name of the command.
    always_run bool
    Specifies whether to run the command even if a previous command is failed.
    apply_update_before bool
    Specifies whether to apply update before the command.
    enroll_intune_before bool
    Specifies whether to enroll Intune before the command.
    install1_p_app_before bool
    Specifies whether to install first party applications before running the command.
    max_run_time int
    Specifies the max run time of the command.
    post_upgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    pre_upgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restart_after bool
    Specifies whether to restart the VM after the command executed.
    run_as_interactive bool
    Specifies whether to run the command in interactive mode.
    run_elevated bool
    Specifies whether to run the command as administrator.
    action String | "Install" | "Launch" | "Close" | "Uninstall" | "Custom" | "FlowDrivenCustom"
    The action of the command.
    content String
    The content of the command. The content depends on source type.
    contentType String | "Inline" | "File" | "Path"
    The type of command content.
    name String
    The name of the command.
    alwaysRun Boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore Boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore Boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore Boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime Number
    Specifies the max run time of the command.
    postUpgrade Boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade Boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter Boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive Boolean
    Specifies whether to run the command in interactive mode.
    runElevated Boolean
    Specifies whether to run the command as administrator.

    CommandResponse, CommandResponseArgs

    Action string
    The action of the command.
    Content string
    The content of the command. The content depends on source type.
    ContentType string
    The type of command content.
    Name string
    The name of the command.
    AlwaysRun bool
    Specifies whether to run the command even if a previous command is failed.
    ApplyUpdateBefore bool
    Specifies whether to apply update before the command.
    EnrollIntuneBefore bool
    Specifies whether to enroll Intune before the command.
    Install1PAppBefore bool
    Specifies whether to install first party applications before running the command.
    MaxRunTime int
    Specifies the max run time of the command.
    PostUpgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    PreUpgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    RestartAfter bool
    Specifies whether to restart the VM after the command executed.
    RunAsInteractive bool
    Specifies whether to run the command in interactive mode.
    RunElevated bool
    Specifies whether to run the command as administrator.
    Action string
    The action of the command.
    Content string
    The content of the command. The content depends on source type.
    ContentType string
    The type of command content.
    Name string
    The name of the command.
    AlwaysRun bool
    Specifies whether to run the command even if a previous command is failed.
    ApplyUpdateBefore bool
    Specifies whether to apply update before the command.
    EnrollIntuneBefore bool
    Specifies whether to enroll Intune before the command.
    Install1PAppBefore bool
    Specifies whether to install first party applications before running the command.
    MaxRunTime int
    Specifies the max run time of the command.
    PostUpgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    PreUpgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    RestartAfter bool
    Specifies whether to restart the VM after the command executed.
    RunAsInteractive bool
    Specifies whether to run the command in interactive mode.
    RunElevated bool
    Specifies whether to run the command as administrator.
    action String
    The action of the command.
    content String
    The content of the command. The content depends on source type.
    contentType String
    The type of command content.
    name String
    The name of the command.
    alwaysRun Boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore Boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore Boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore Boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime Integer
    Specifies the max run time of the command.
    postUpgrade Boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade Boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter Boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive Boolean
    Specifies whether to run the command in interactive mode.
    runElevated Boolean
    Specifies whether to run the command as administrator.
    action string
    The action of the command.
    content string
    The content of the command. The content depends on source type.
    contentType string
    The type of command content.
    name string
    The name of the command.
    alwaysRun boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime number
    Specifies the max run time of the command.
    postUpgrade boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive boolean
    Specifies whether to run the command in interactive mode.
    runElevated boolean
    Specifies whether to run the command as administrator.
    action str
    The action of the command.
    content str
    The content of the command. The content depends on source type.
    content_type str
    The type of command content.
    name str
    The name of the command.
    always_run bool
    Specifies whether to run the command even if a previous command is failed.
    apply_update_before bool
    Specifies whether to apply update before the command.
    enroll_intune_before bool
    Specifies whether to enroll Intune before the command.
    install1_p_app_before bool
    Specifies whether to install first party applications before running the command.
    max_run_time int
    Specifies the max run time of the command.
    post_upgrade bool
    Specifies whether the command is assigned to be executed after in-place upgrade.
    pre_upgrade bool
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restart_after bool
    Specifies whether to restart the VM after the command executed.
    run_as_interactive bool
    Specifies whether to run the command in interactive mode.
    run_elevated bool
    Specifies whether to run the command as administrator.
    action String
    The action of the command.
    content String
    The content of the command. The content depends on source type.
    contentType String
    The type of command content.
    name String
    The name of the command.
    alwaysRun Boolean
    Specifies whether to run the command even if a previous command is failed.
    applyUpdateBefore Boolean
    Specifies whether to apply update before the command.
    enrollIntuneBefore Boolean
    Specifies whether to enroll Intune before the command.
    install1PAppBefore Boolean
    Specifies whether to install first party applications before running the command.
    maxRunTime Number
    Specifies the max run time of the command.
    postUpgrade Boolean
    Specifies whether the command is assigned to be executed after in-place upgrade.
    preUpgrade Boolean
    Specifies whether the command is assigned to be executed before in-place upgrade.
    restartAfter Boolean
    Specifies whether to restart the VM after the command executed.
    runAsInteractive Boolean
    Specifies whether to run the command in interactive mode.
    runElevated Boolean
    Specifies whether to run the command as administrator.

    ContentType, ContentTypeArgs

    Inline
    Inline
    File
    File
    Path
    Path
    ContentTypeInline
    Inline
    ContentTypeFile
    File
    ContentTypePath
    Path
    Inline
    Inline
    File
    File
    Path
    Path
    Inline
    Inline
    File
    File
    Path
    Path
    INLINE
    Inline
    FILE
    File
    PATH
    Path
    "Inline"
    Inline
    "File"
    File
    "Path"
    Path

    EnrolledIntuneApp, EnrolledIntuneAppArgs

    AppId string
    Intune app id.
    AppName string
    Intune app name.
    ExpectedInstallationPath string
    Intune app expected installation path.
    AppId string
    Intune app id.
    AppName string
    Intune app name.
    ExpectedInstallationPath string
    Intune app expected installation path.
    appId String
    Intune app id.
    appName String
    Intune app name.
    expectedInstallationPath String
    Intune app expected installation path.
    appId string
    Intune app id.
    appName string
    Intune app name.
    expectedInstallationPath string
    Intune app expected installation path.
    app_id str
    Intune app id.
    app_name str
    Intune app name.
    expected_installation_path str
    Intune app expected installation path.
    appId String
    Intune app id.
    appName String
    Intune app name.
    expectedInstallationPath String
    Intune app expected installation path.

    EnrolledIntuneAppResponse, EnrolledIntuneAppResponseArgs

    AppId string
    Intune app id.
    AppName string
    Intune app name.
    ExpectedInstallationPath string
    Intune app expected installation path.
    AppId string
    Intune app id.
    AppName string
    Intune app name.
    ExpectedInstallationPath string
    Intune app expected installation path.
    appId String
    Intune app id.
    appName String
    Intune app name.
    expectedInstallationPath String
    Intune app expected installation path.
    appId string
    Intune app id.
    appName string
    Intune app name.
    expectedInstallationPath string
    Intune app expected installation path.
    app_id str
    Intune app id.
    app_name str
    Intune app name.
    expected_installation_path str
    Intune app expected installation path.
    appId String
    Intune app id.
    appName String
    Intune app name.
    expectedInstallationPath String
    Intune app expected installation path.

    FirstPartyAppDefinition, FirstPartyAppDefinitionArgs

    Architecture string | Pulumi.AzureNative.TestBase.Architecture
    The architecture of a first party application of a Test Base Account.
    Channel string
    The channel info of a first party application of a Test Base Account.
    InteropExecutionMode string | Pulumi.AzureNative.TestBase.InteropExecutionMode
    Specifies how the first party applications should be inter-operated with user's application.
    Name string
    The media name of a first party application of a Test Base Account.
    Ring string
    The ring info of a first party application of a Test Base Account.
    Architecture string | Architecture
    The architecture of a first party application of a Test Base Account.
    Channel string
    The channel info of a first party application of a Test Base Account.
    InteropExecutionMode string | InteropExecutionMode
    Specifies how the first party applications should be inter-operated with user's application.
    Name string
    The media name of a first party application of a Test Base Account.
    Ring string
    The ring info of a first party application of a Test Base Account.
    architecture String | Architecture
    The architecture of a first party application of a Test Base Account.
    channel String
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode String | InteropExecutionMode
    Specifies how the first party applications should be inter-operated with user's application.
    name String
    The media name of a first party application of a Test Base Account.
    ring String
    The ring info of a first party application of a Test Base Account.
    architecture string | Architecture
    The architecture of a first party application of a Test Base Account.
    channel string
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode string | InteropExecutionMode
    Specifies how the first party applications should be inter-operated with user's application.
    name string
    The media name of a first party application of a Test Base Account.
    ring string
    The ring info of a first party application of a Test Base Account.
    architecture str | Architecture
    The architecture of a first party application of a Test Base Account.
    channel str
    The channel info of a first party application of a Test Base Account.
    interop_execution_mode str | InteropExecutionMode
    Specifies how the first party applications should be inter-operated with user's application.
    name str
    The media name of a first party application of a Test Base Account.
    ring str
    The ring info of a first party application of a Test Base Account.
    architecture String | "x86" | "x64" | "arm64"
    The architecture of a first party application of a Test Base Account.
    channel String
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode String | "firstPartyAppWithTests" | "firstPartyApp"
    Specifies how the first party applications should be inter-operated with user's application.
    name String
    The media name of a first party application of a Test Base Account.
    ring String
    The ring info of a first party application of a Test Base Account.

    FirstPartyAppDefinitionResponse, FirstPartyAppDefinitionResponseArgs

    Architecture string
    The architecture of a first party application of a Test Base Account.
    Channel string
    The channel info of a first party application of a Test Base Account.
    InteropExecutionMode string
    Specifies how the first party applications should be inter-operated with user's application.
    Name string
    The media name of a first party application of a Test Base Account.
    Ring string
    The ring info of a first party application of a Test Base Account.
    Architecture string
    The architecture of a first party application of a Test Base Account.
    Channel string
    The channel info of a first party application of a Test Base Account.
    InteropExecutionMode string
    Specifies how the first party applications should be inter-operated with user's application.
    Name string
    The media name of a first party application of a Test Base Account.
    Ring string
    The ring info of a first party application of a Test Base Account.
    architecture String
    The architecture of a first party application of a Test Base Account.
    channel String
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode String
    Specifies how the first party applications should be inter-operated with user's application.
    name String
    The media name of a first party application of a Test Base Account.
    ring String
    The ring info of a first party application of a Test Base Account.
    architecture string
    The architecture of a first party application of a Test Base Account.
    channel string
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode string
    Specifies how the first party applications should be inter-operated with user's application.
    name string
    The media name of a first party application of a Test Base Account.
    ring string
    The ring info of a first party application of a Test Base Account.
    architecture str
    The architecture of a first party application of a Test Base Account.
    channel str
    The channel info of a first party application of a Test Base Account.
    interop_execution_mode str
    Specifies how the first party applications should be inter-operated with user's application.
    name str
    The media name of a first party application of a Test Base Account.
    ring str
    The ring info of a first party application of a Test Base Account.
    architecture String
    The architecture of a first party application of a Test Base Account.
    channel String
    The channel info of a first party application of a Test Base Account.
    interopExecutionMode String
    Specifies how the first party applications should be inter-operated with user's application.
    name String
    The media name of a first party application of a Test Base Account.
    ring String
    The ring info of a first party application of a Test Base Account.

    GalleryAppDefinitionResponse, GalleryAppDefinitionResponseArgs

    SkuId string
    The SKU id of the gallery application.
    IsConsented bool
    Whether the disclaimer of the gallery application is accepted.
    SkuId string
    The SKU id of the gallery application.
    IsConsented bool
    Whether the disclaimer of the gallery application is accepted.
    skuId String
    The SKU id of the gallery application.
    isConsented Boolean
    Whether the disclaimer of the gallery application is accepted.
    skuId string
    The SKU id of the gallery application.
    isConsented boolean
    Whether the disclaimer of the gallery application is accepted.
    sku_id str
    The SKU id of the gallery application.
    is_consented bool
    Whether the disclaimer of the gallery application is accepted.
    skuId String
    The SKU id of the gallery application.
    isConsented Boolean
    Whether the disclaimer of the gallery application is accepted.

    InplaceUpgradeOSInfo, InplaceUpgradeOSInfoArgs

    BaselineOS Pulumi.AzureNative.TestBase.Inputs.OsProperties
    Specifies the baseline os for in-place upgrade tests.
    TargetOS string
    Specifies the target os for in-place upgrade tests.
    BaselineOS OsProperties
    Specifies the baseline os for in-place upgrade tests.
    TargetOS string
    Specifies the target os for in-place upgrade tests.
    baselineOS OsProperties
    Specifies the baseline os for in-place upgrade tests.
    targetOS String
    Specifies the target os for in-place upgrade tests.
    baselineOS OsProperties
    Specifies the baseline os for in-place upgrade tests.
    targetOS string
    Specifies the target os for in-place upgrade tests.
    baseline_os OsProperties
    Specifies the baseline os for in-place upgrade tests.
    target_os str
    Specifies the target os for in-place upgrade tests.
    baselineOS Property Map
    Specifies the baseline os for in-place upgrade tests.
    targetOS String
    Specifies the target os for in-place upgrade tests.

    InplaceUpgradeOSInfoResponse, InplaceUpgradeOSInfoResponseArgs

    BaselineOS Pulumi.AzureNative.TestBase.Inputs.OsPropertiesResponse
    Specifies the baseline os for in-place upgrade tests.
    TargetOS string
    Specifies the target os for in-place upgrade tests.
    BaselineOS OsPropertiesResponse
    Specifies the baseline os for in-place upgrade tests.
    TargetOS string
    Specifies the target os for in-place upgrade tests.
    baselineOS OsPropertiesResponse
    Specifies the baseline os for in-place upgrade tests.
    targetOS String
    Specifies the target os for in-place upgrade tests.
    baselineOS OsPropertiesResponse
    Specifies the baseline os for in-place upgrade tests.
    targetOS string
    Specifies the target os for in-place upgrade tests.
    baseline_os OsPropertiesResponse
    Specifies the baseline os for in-place upgrade tests.
    target_os str
    Specifies the target os for in-place upgrade tests.
    baselineOS Property Map
    Specifies the baseline os for in-place upgrade tests.
    targetOS String
    Specifies the target os for in-place upgrade tests.

    InteropExecutionMode, InteropExecutionModeArgs

    FirstPartyAppWithTests
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    FirstPartyApp
    firstPartyAppUser application will test with the first party applications.
    InteropExecutionModeFirstPartyAppWithTests
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    InteropExecutionModeFirstPartyApp
    firstPartyAppUser application will test with the first party applications.
    FirstPartyAppWithTests
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    FirstPartyApp
    firstPartyAppUser application will test with the first party applications.
    FirstPartyAppWithTests
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    FirstPartyApp
    firstPartyAppUser application will test with the first party applications.
    FIRST_PARTY_APP_WITH_TESTS
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    FIRST_PARTY_APP
    firstPartyAppUser application will test with the first party applications.
    "firstPartyAppWithTests"
    firstPartyAppWithTestsUser application will test with the first party applications. For out-of-box tests, additional test cases for first party applications will also be run.
    "firstPartyApp"
    firstPartyAppUser application will test with the first party applications.

    IntuneEnrollmentMetadata, IntuneEnrollmentMetadataArgs

    AppList List<Pulumi.AzureNative.TestBase.Inputs.EnrolledIntuneApp>
    The enrolled Intune apps.
    CredentialId string
    The id of the Intune enrollment credential.
    ExpectedDeploymentDurationInMinute int
    The expected duration of Intune applications and policies deployment.
    AppList []EnrolledIntuneApp
    The enrolled Intune apps.
    CredentialId string
    The id of the Intune enrollment credential.
    ExpectedDeploymentDurationInMinute int
    The expected duration of Intune applications and policies deployment.
    appList List<EnrolledIntuneApp>
    The enrolled Intune apps.
    credentialId String
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute Integer
    The expected duration of Intune applications and policies deployment.
    appList EnrolledIntuneApp[]
    The enrolled Intune apps.
    credentialId string
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute number
    The expected duration of Intune applications and policies deployment.
    app_list Sequence[EnrolledIntuneApp]
    The enrolled Intune apps.
    credential_id str
    The id of the Intune enrollment credential.
    expected_deployment_duration_in_minute int
    The expected duration of Intune applications and policies deployment.
    appList List<Property Map>
    The enrolled Intune apps.
    credentialId String
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute Number
    The expected duration of Intune applications and policies deployment.

    IntuneEnrollmentMetadataResponse, IntuneEnrollmentMetadataResponseArgs

    AppList List<Pulumi.AzureNative.TestBase.Inputs.EnrolledIntuneAppResponse>
    The enrolled Intune apps.
    CredentialId string
    The id of the Intune enrollment credential.
    ExpectedDeploymentDurationInMinute int
    The expected duration of Intune applications and policies deployment.
    AppList []EnrolledIntuneAppResponse
    The enrolled Intune apps.
    CredentialId string
    The id of the Intune enrollment credential.
    ExpectedDeploymentDurationInMinute int
    The expected duration of Intune applications and policies deployment.
    appList List<EnrolledIntuneAppResponse>
    The enrolled Intune apps.
    credentialId String
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute Integer
    The expected duration of Intune applications and policies deployment.
    appList EnrolledIntuneAppResponse[]
    The enrolled Intune apps.
    credentialId string
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute number
    The expected duration of Intune applications and policies deployment.
    app_list Sequence[EnrolledIntuneAppResponse]
    The enrolled Intune apps.
    credential_id str
    The id of the Intune enrollment credential.
    expected_deployment_duration_in_minute int
    The expected duration of Intune applications and policies deployment.
    appList List<Property Map>
    The enrolled Intune apps.
    credentialId String
    The id of the Intune enrollment credential.
    expectedDeploymentDurationInMinute Number
    The expected duration of Intune applications and policies deployment.

    OsProperties, OsPropertiesArgs

    CustomImageId string
    Specify the referenced Test Base Custom Image Id if available.
    OsName string
    The name of the OS.
    ReleaseProperties Pulumi.AzureNative.TestBase.Inputs.ReleaseProperties
    The properties of the OS release.
    CustomImageId string
    Specify the referenced Test Base Custom Image Id if available.
    OsName string
    The name of the OS.
    ReleaseProperties ReleaseProperties
    The properties of the OS release.
    customImageId String
    Specify the referenced Test Base Custom Image Id if available.
    osName String
    The name of the OS.
    releaseProperties ReleaseProperties
    The properties of the OS release.
    customImageId string
    Specify the referenced Test Base Custom Image Id if available.
    osName string
    The name of the OS.
    releaseProperties ReleaseProperties
    The properties of the OS release.
    custom_image_id str
    Specify the referenced Test Base Custom Image Id if available.
    os_name str
    The name of the OS.
    release_properties ReleaseProperties
    The properties of the OS release.
    customImageId String
    Specify the referenced Test Base Custom Image Id if available.
    osName String
    The name of the OS.
    releaseProperties Property Map
    The properties of the OS release.

    OsPropertiesResponse, OsPropertiesResponseArgs

    CustomImageDisplayName string
    The name of the custom image resource.
    CustomImageId string
    Specify the referenced Test Base Custom Image Id if available.
    OsName string
    The name of the OS.
    ReleaseProperties Pulumi.AzureNative.TestBase.Inputs.ReleasePropertiesResponse
    The properties of the OS release.
    CustomImageDisplayName string
    The name of the custom image resource.
    CustomImageId string
    Specify the referenced Test Base Custom Image Id if available.
    OsName string
    The name of the OS.
    ReleaseProperties ReleasePropertiesResponse
    The properties of the OS release.
    customImageDisplayName String
    The name of the custom image resource.
    customImageId String
    Specify the referenced Test Base Custom Image Id if available.
    osName String
    The name of the OS.
    releaseProperties ReleasePropertiesResponse
    The properties of the OS release.
    customImageDisplayName string
    The name of the custom image resource.
    customImageId string
    Specify the referenced Test Base Custom Image Id if available.
    osName string
    The name of the OS.
    releaseProperties ReleasePropertiesResponse
    The properties of the OS release.
    custom_image_display_name str
    The name of the custom image resource.
    custom_image_id str
    Specify the referenced Test Base Custom Image Id if available.
    os_name str
    The name of the OS.
    release_properties ReleasePropertiesResponse
    The properties of the OS release.
    customImageDisplayName String
    The name of the custom image resource.
    customImageId String
    Specify the referenced Test Base Custom Image Id if available.
    osName String
    The name of the OS.
    releaseProperties Property Map
    The properties of the OS release.

    PackageValidationResultResponse, PackageValidationResultResponseArgs

    Errors List<string>
    Error information.
    IsValid bool
    Indicates whether the package passed the validation.
    ValidationName string
    Validation name.
    Errors []string
    Error information.
    IsValid bool
    Indicates whether the package passed the validation.
    ValidationName string
    Validation name.
    errors List<String>
    Error information.
    isValid Boolean
    Indicates whether the package passed the validation.
    validationName String
    Validation name.
    errors string[]
    Error information.
    isValid boolean
    Indicates whether the package passed the validation.
    validationName string
    Validation name.
    errors Sequence[str]
    Error information.
    is_valid bool
    Indicates whether the package passed the validation.
    validation_name str
    Validation name.
    errors List<String>
    Error information.
    isValid Boolean
    Indicates whether the package passed the validation.
    validationName String
    Validation name.

    ReleaseProperties, ReleasePropertiesArgs

    BuildNumber string
    The build number of the OS release.
    BuildRevision string
    The build revision of the OS release.
    ReleaseName string
    The name of the OS release.
    ReleaseVersionDate string
    The release version date of the OS release.
    BuildNumber string
    The build number of the OS release.
    BuildRevision string
    The build revision of the OS release.
    ReleaseName string
    The name of the OS release.
    ReleaseVersionDate string
    The release version date of the OS release.
    buildNumber String
    The build number of the OS release.
    buildRevision String
    The build revision of the OS release.
    releaseName String
    The name of the OS release.
    releaseVersionDate String
    The release version date of the OS release.
    buildNumber string
    The build number of the OS release.
    buildRevision string
    The build revision of the OS release.
    releaseName string
    The name of the OS release.
    releaseVersionDate string
    The release version date of the OS release.
    build_number str
    The build number of the OS release.
    build_revision str
    The build revision of the OS release.
    release_name str
    The name of the OS release.
    release_version_date str
    The release version date of the OS release.
    buildNumber String
    The build number of the OS release.
    buildRevision String
    The build revision of the OS release.
    releaseName String
    The name of the OS release.
    releaseVersionDate String
    The release version date of the OS release.

    ReleasePropertiesResponse, ReleasePropertiesResponseArgs

    BuildNumber string
    The build number of the OS release.
    BuildRevision string
    The build revision of the OS release.
    ReleaseName string
    The name of the OS release.
    ReleaseVersionDate string
    The release version date of the OS release.
    BuildNumber string
    The build number of the OS release.
    BuildRevision string
    The build revision of the OS release.
    ReleaseName string
    The name of the OS release.
    ReleaseVersionDate string
    The release version date of the OS release.
    buildNumber String
    The build number of the OS release.
    buildRevision String
    The build revision of the OS release.
    releaseName String
    The name of the OS release.
    releaseVersionDate String
    The release version date of the OS release.
    buildNumber string
    The build number of the OS release.
    buildRevision string
    The build revision of the OS release.
    releaseName string
    The name of the OS release.
    releaseVersionDate string
    The release version date of the OS release.
    build_number str
    The build number of the OS release.
    build_revision str
    The build revision of the OS release.
    release_name str
    The name of the OS release.
    release_version_date str
    The release version date of the OS release.
    buildNumber String
    The build number of the OS release.
    buildRevision String
    The build revision of the OS release.
    releaseName String
    The name of the OS release.
    releaseVersionDate String
    The release version date of the OS release.

    SystemDataResponse, SystemDataResponseArgs

    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.
    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.

    TargetOSInfo, TargetOSInfoArgs

    OsUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    BaselineOSs List<string>
    Specifies the baseline OSs to be tested.
    InsiderChannelIds List<string>
    Insider Channel Ids. Only used for feature update.
    TargetOSImageIds List<string>
    Specifies the ids of the target OSs from Custom Images to be tested.
    TargetOSs List<string>
    Specifies the target OSs to be tested.
    OsUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    BaselineOSs []string
    Specifies the baseline OSs to be tested.
    InsiderChannelIds []string
    Insider Channel Ids. Only used for feature update.
    TargetOSImageIds []string
    Specifies the ids of the target OSs from Custom Images to be tested.
    TargetOSs []string
    Specifies the target OSs to be tested.
    osUpdateType String
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs List<String>
    Specifies the baseline OSs to be tested.
    insiderChannelIds List<String>
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds List<String>
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs List<String>
    Specifies the target OSs to be tested.
    osUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs string[]
    Specifies the baseline OSs to be tested.
    insiderChannelIds string[]
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds string[]
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs string[]
    Specifies the target OSs to be tested.
    os_update_type str
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baseline_oss Sequence[str]
    Specifies the baseline OSs to be tested.
    insider_channel_ids Sequence[str]
    Insider Channel Ids. Only used for feature update.
    target_os_image_ids Sequence[str]
    Specifies the ids of the target OSs from Custom Images to be tested.
    target_oss Sequence[str]
    Specifies the target OSs to be tested.
    osUpdateType String
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs List<String>
    Specifies the baseline OSs to be tested.
    insiderChannelIds List<String>
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds List<String>
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs List<String>
    Specifies the target OSs to be tested.

    TargetOSInfoResponse, TargetOSInfoResponseArgs

    OsUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    BaselineOSs List<string>
    Specifies the baseline OSs to be tested.
    InsiderChannelIds List<string>
    Insider Channel Ids. Only used for feature update.
    TargetOSImageIds List<string>
    Specifies the ids of the target OSs from Custom Images to be tested.
    TargetOSs List<string>
    Specifies the target OSs to be tested.
    OsUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    BaselineOSs []string
    Specifies the baseline OSs to be tested.
    InsiderChannelIds []string
    Insider Channel Ids. Only used for feature update.
    TargetOSImageIds []string
    Specifies the ids of the target OSs from Custom Images to be tested.
    TargetOSs []string
    Specifies the target OSs to be tested.
    osUpdateType String
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs List<String>
    Specifies the baseline OSs to be tested.
    insiderChannelIds List<String>
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds List<String>
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs List<String>
    Specifies the target OSs to be tested.
    osUpdateType string
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs string[]
    Specifies the baseline OSs to be tested.
    insiderChannelIds string[]
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds string[]
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs string[]
    Specifies the target OSs to be tested.
    os_update_type str
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baseline_oss Sequence[str]
    Specifies the baseline OSs to be tested.
    insider_channel_ids Sequence[str]
    Insider Channel Ids. Only used for feature update.
    target_os_image_ids Sequence[str]
    Specifies the ids of the target OSs from Custom Images to be tested.
    target_oss Sequence[str]
    Specifies the target OSs to be tested.
    osUpdateType String
    Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
    baselineOSs List<String>
    Specifies the baseline OSs to be tested.
    insiderChannelIds List<String>
    Insider Channel Ids. Only used for feature update.
    targetOSImageIds List<String>
    Specifies the ids of the target OSs from Custom Images to be tested.
    targetOSs List<String>
    Specifies the target OSs to be tested.

    Test, TestArgs

    Commands List<Pulumi.AzureNative.TestBase.Inputs.Command>
    The commands used in the test.
    TestType string | Pulumi.AzureNative.TestBase.TestType
    The type of the test.
    IsActive bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    Commands []Command
    The commands used in the test.
    TestType string | TestType
    The type of the test.
    IsActive bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands List<Command>
    The commands used in the test.
    testType String | TestType
    The type of the test.
    isActive Boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands Command[]
    The commands used in the test.
    testType string | TestType
    The type of the test.
    isActive boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands Sequence[Command]
    The commands used in the test.
    test_type str | TestType
    The type of the test.
    is_active bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands List<Property Map>
    The commands used in the test.
    testType String | "OutOfBoxTest" | "FunctionalTest" | "FlowDrivenTest"
    The type of the test.
    isActive Boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.

    TestResponse, TestResponseArgs

    Commands List<Pulumi.AzureNative.TestBase.Inputs.CommandResponse>
    The commands used in the test.
    TestType string
    The type of the test.
    ValidationResultId string
    Resource identifier of the validation test result.
    ValidationRunStatus string
    The status of the validation run of the package.
    IsActive bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    Commands []CommandResponse
    The commands used in the test.
    TestType string
    The type of the test.
    ValidationResultId string
    Resource identifier of the validation test result.
    ValidationRunStatus string
    The status of the validation run of the package.
    IsActive bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands List<CommandResponse>
    The commands used in the test.
    testType String
    The type of the test.
    validationResultId String
    Resource identifier of the validation test result.
    validationRunStatus String
    The status of the validation run of the package.
    isActive Boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands CommandResponse[]
    The commands used in the test.
    testType string
    The type of the test.
    validationResultId string
    Resource identifier of the validation test result.
    validationRunStatus string
    The status of the validation run of the package.
    isActive boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands Sequence[CommandResponse]
    The commands used in the test.
    test_type str
    The type of the test.
    validation_result_id str
    Resource identifier of the validation test result.
    validation_run_status str
    The status of the validation run of the package.
    is_active bool
    Indicates if this test is active.It doesn't schedule test for not active Test.
    commands List<Property Map>
    The commands used in the test.
    testType String
    The type of the test.
    validationResultId String
    Resource identifier of the validation test result.
    validationRunStatus String
    The status of the validation run of the package.
    isActive Boolean
    Indicates if this test is active.It doesn't schedule test for not active Test.

    TestType, TestTypeArgs

    OutOfBoxTest
    OutOfBoxTest
    FunctionalTest
    FunctionalTest
    FlowDrivenTest
    FlowDrivenTest
    TestTypeOutOfBoxTest
    OutOfBoxTest
    TestTypeFunctionalTest
    FunctionalTest
    TestTypeFlowDrivenTest
    FlowDrivenTest
    OutOfBoxTest
    OutOfBoxTest
    FunctionalTest
    FunctionalTest
    FlowDrivenTest
    FlowDrivenTest
    OutOfBoxTest
    OutOfBoxTest
    FunctionalTest
    FunctionalTest
    FlowDrivenTest
    FlowDrivenTest
    OUT_OF_BOX_TEST
    OutOfBoxTest
    FUNCTIONAL_TEST
    FunctionalTest
    FLOW_DRIVEN_TEST
    FlowDrivenTest
    "OutOfBoxTest"
    OutOfBoxTest
    "FunctionalTest"
    FunctionalTest
    "FlowDrivenTest"
    FlowDrivenTest

    Import

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

    $ pulumi import azure-native:testbase:Package contoso-package2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TestBase/testBaseAccounts/{testBaseAccountName}/packages/{packageName} 
    

    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.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi