1. Packages
  2. Azure Native v2
  3. API Docs
  4. testbase
  5. DraftPackage
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.testbase.DraftPackage

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The Test Base Draft Package resource. Azure REST API version: 2023-11-01-preview.

Example Usage

DraftPackageCreate

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

return await Deployment.RunAsync(() => 
{
    var draftPackage = new AzureNative.TestBase.DraftPackage("draftPackage", new()
    {
        AppFileName = "TestBaseM365DigitalClock.msi",
        ApplicationName = "contoso-package",
        DraftPackageName = "61d99543-14ff-47ae-bf03-8a8b8445502e",
        ResourceGroupName = "contoso-rg1",
        SourceType = AzureNative.TestBase.DraftPackageSourceType.Native,
        TestBaseAccountName = "contoso-testBaseAccount1",
        UseSample = false,
        Version = "1.0",
    });

});
Copy
package main

import (
	testbase "github.com/pulumi/pulumi-azure-native-sdk/testbase/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := testbase.NewDraftPackage(ctx, "draftPackage", &testbase.DraftPackageArgs{
			AppFileName:         pulumi.String("TestBaseM365DigitalClock.msi"),
			ApplicationName:     pulumi.String("contoso-package"),
			DraftPackageName:    pulumi.String("61d99543-14ff-47ae-bf03-8a8b8445502e"),
			ResourceGroupName:   pulumi.String("contoso-rg1"),
			SourceType:          pulumi.String(testbase.DraftPackageSourceTypeNative),
			TestBaseAccountName: pulumi.String("contoso-testBaseAccount1"),
			UseSample:           pulumi.Bool(false),
			Version:             pulumi.String("1.0"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.testbase.DraftPackage;
import com.pulumi.azurenative.testbase.DraftPackageArgs;
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 draftPackage = new DraftPackage("draftPackage", DraftPackageArgs.builder()
            .appFileName("TestBaseM365DigitalClock.msi")
            .applicationName("contoso-package")
            .draftPackageName("61d99543-14ff-47ae-bf03-8a8b8445502e")
            .resourceGroupName("contoso-rg1")
            .sourceType("Native")
            .testBaseAccountName("contoso-testBaseAccount1")
            .useSample(false)
            .version("1.0")
            .build());

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

const draftPackage = new azure_native.testbase.DraftPackage("draftPackage", {
    appFileName: "TestBaseM365DigitalClock.msi",
    applicationName: "contoso-package",
    draftPackageName: "61d99543-14ff-47ae-bf03-8a8b8445502e",
    resourceGroupName: "contoso-rg1",
    sourceType: azure_native.testbase.DraftPackageSourceType.Native,
    testBaseAccountName: "contoso-testBaseAccount1",
    useSample: false,
    version: "1.0",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

draft_package = azure_native.testbase.DraftPackage("draftPackage",
    app_file_name="TestBaseM365DigitalClock.msi",
    application_name="contoso-package",
    draft_package_name="61d99543-14ff-47ae-bf03-8a8b8445502e",
    resource_group_name="contoso-rg1",
    source_type=azure_native.testbase.DraftPackageSourceType.NATIVE,
    test_base_account_name="contoso-testBaseAccount1",
    use_sample=False,
    version="1.0")
Copy
resources:
  draftPackage:
    type: azure-native:testbase:DraftPackage
    properties:
      appFileName: TestBaseM365DigitalClock.msi
      applicationName: contoso-package
      draftPackageName: 61d99543-14ff-47ae-bf03-8a8b8445502e
      resourceGroupName: contoso-rg1
      sourceType: Native
      testBaseAccountName: contoso-testBaseAccount1
      useSample: false
      version: '1.0'
Copy

Create DraftPackage Resource

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

Constructor syntax

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

@overload
def DraftPackage(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 resource_group_name: Optional[str] = None,
                 test_base_account_name: Optional[str] = None,
                 intune_metadata: Optional[DraftPackageIntuneAppMetadataArgs] = None,
                 gallery_apps: Optional[Sequence[GalleryAppDefinitionArgs]] = None,
                 edit_package: Optional[bool] = None,
                 executable_launch_command: Optional[str] = None,
                 first_party_apps: Optional[Sequence[FirstPartyAppDefinitionArgs]] = None,
                 flighting_ring: Optional[str] = None,
                 package_id: Optional[str] = None,
                 highlighted_files: Optional[Sequence[HighlightedFileArgs]] = None,
                 inplace_upgrade_os_pair: Optional[InplaceUpgradeOSInfoArgs] = None,
                 intune_enrollment_metadata: Optional[IntuneEnrollmentMetadataArgs] = None,
                 draft_package_name: Optional[str] = None,
                 app_file_name: Optional[str] = None,
                 tab_state: Optional[TabStateArgs] = None,
                 process_name: Optional[str] = None,
                 comments: Optional[str] = None,
                 source_type: Optional[Union[str, DraftPackageSourceType]] = None,
                 package_tags: Optional[Mapping[str, str]] = None,
                 target_os_list: Optional[Sequence[TargetOSInfoArgs]] = None,
                 application_name: Optional[str] = None,
                 test_types: Optional[Sequence[Union[str, TestType]]] = None,
                 tests: Optional[Sequence[TestArgs]] = None,
                 use_autofill: Optional[bool] = None,
                 use_sample: Optional[bool] = None,
                 version: Optional[str] = None)
func NewDraftPackage(ctx *Context, name string, args DraftPackageArgs, opts ...ResourceOption) (*DraftPackage, error)
public DraftPackage(string name, DraftPackageArgs args, CustomResourceOptions? opts = null)
public DraftPackage(String name, DraftPackageArgs args)
public DraftPackage(String name, DraftPackageArgs args, CustomResourceOptions options)
type: azure-native:testbase:DraftPackage
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DraftPackageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DraftPackageArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DraftPackageArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DraftPackageArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DraftPackageArgs
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 draftPackageResource = new AzureNative.Testbase.DraftPackage("draftPackageResource", new()
{
    ResourceGroupName = "string",
    TestBaseAccountName = "string",
    IntuneMetadata = 
    {
        { "intuneApp", 
        {
            { "appId", "string" },
            { "appName", "string" },
            { "createDate", "string" },
            { "dependencyIds", new[]
            {
                "string",
            } },
            { "dependentAppCount", 0 },
            { "description", "string" },
            { "expectedExitCodes", new[]
            {
                "string",
            } },
            { "installCommand", "string" },
            { "lastProcessed", 0 },
            { "minimumSupportedOS", "string" },
            { "owner", "string" },
            { "publisher", "string" },
            { "setupFile", "string" },
            { "status", "string" },
            { "uninstallCommand", "string" },
            { "version", "string" },
        } },
        { "intuneAppDependencies", new[]
        {
            
            {
                { "appId", "string" },
                { "appName", "string" },
                { "createDate", "string" },
                { "dependencyIds", new[]
                {
                    "string",
                } },
                { "dependentAppCount", 0 },
                { "description", "string" },
                { "expectedExitCodes", new[]
                {
                    "string",
                } },
                { "installCommand", "string" },
                { "lastProcessed", 0 },
                { "minimumSupportedOS", "string" },
                { "owner", "string" },
                { "publisher", "string" },
                { "setupFile", "string" },
                { "status", "string" },
                { "uninstallCommand", "string" },
                { "version", "string" },
            },
        } },
    },
    GalleryApps = new[]
    {
        
        {
            { "skuId", "string" },
            { "isConsented", false },
        },
    },
    EditPackage = false,
    ExecutableLaunchCommand = "string",
    FirstPartyApps = new[]
    {
        
        {
            { "architecture", "string" },
            { "channel", "string" },
            { "interopExecutionMode", "string" },
            { "name", "string" },
            { "ring", "string" },
        },
    },
    FlightingRing = "string",
    PackageId = "string",
    HighlightedFiles = new[]
    {
        
        {
            { "path", "string" },
            { "sections", new[]
            {
                "string",
            } },
            { "visited", false },
        },
    },
    InplaceUpgradeOSPair = 
    {
        { "baselineOS", 
        {
            { "customImageId", "string" },
            { "osName", "string" },
            { "releaseProperties", 
            {
                { "buildNumber", "string" },
                { "buildRevision", "string" },
                { "releaseName", "string" },
                { "releaseVersionDate", "string" },
            } },
        } },
        { "targetOS", "string" },
    },
    IntuneEnrollmentMetadata = 
    {
        { "appList", new[]
        {
            
            {
                { "appId", "string" },
                { "appName", "string" },
                { "expectedInstallationPath", "string" },
            },
        } },
        { "credentialId", "string" },
        { "expectedDeploymentDurationInMinute", 0 },
    },
    DraftPackageName = "string",
    AppFileName = "string",
    TabState = 
    {
        { "currentTab", "string" },
        { "visitedTabs", new[]
        {
            "string",
        } },
    },
    ProcessName = "string",
    Comments = "string",
    SourceType = "string",
    PackageTags = 
    {
        { "string", "string" },
    },
    TargetOSList = new[]
    {
        
        {
            { "osUpdateType", "string" },
            { "baselineOSs", new[]
            {
                "string",
            } },
            { "insiderChannelIds", new[]
            {
                "string",
            } },
            { "targetOSImageIds", new[]
            {
                "string",
            } },
            { "targetOSs", new[]
            {
                "string",
            } },
        },
    },
    ApplicationName = "string",
    TestTypes = new[]
    {
        "string",
    },
    Tests = new[]
    {
        
        {
            { "commands", new[]
            {
                
                {
                    { "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 },
        },
    },
    UseAutofill = false,
    UseSample = false,
    Version = "string",
});
Copy
example, err := testbase.NewDraftPackage(ctx, "draftPackageResource", &testbase.DraftPackageArgs{
	ResourceGroupName:   "string",
	TestBaseAccountName: "string",
	IntuneMetadata: map[string]interface{}{
		"intuneApp": map[string]interface{}{
			"appId":      "string",
			"appName":    "string",
			"createDate": "string",
			"dependencyIds": []string{
				"string",
			},
			"dependentAppCount": 0,
			"description":       "string",
			"expectedExitCodes": []string{
				"string",
			},
			"installCommand":     "string",
			"lastProcessed":      0,
			"minimumSupportedOS": "string",
			"owner":              "string",
			"publisher":          "string",
			"setupFile":          "string",
			"status":             "string",
			"uninstallCommand":   "string",
			"version":            "string",
		},
		"intuneAppDependencies": []map[string]interface{}{
			map[string]interface{}{
				"appId":      "string",
				"appName":    "string",
				"createDate": "string",
				"dependencyIds": []string{
					"string",
				},
				"dependentAppCount": 0,
				"description":       "string",
				"expectedExitCodes": []string{
					"string",
				},
				"installCommand":     "string",
				"lastProcessed":      0,
				"minimumSupportedOS": "string",
				"owner":              "string",
				"publisher":          "string",
				"setupFile":          "string",
				"status":             "string",
				"uninstallCommand":   "string",
				"version":            "string",
			},
		},
	},
	GalleryApps: []map[string]interface{}{
		map[string]interface{}{
			"skuId":       "string",
			"isConsented": false,
		},
	},
	EditPackage:             false,
	ExecutableLaunchCommand: "string",
	FirstPartyApps: []map[string]interface{}{
		map[string]interface{}{
			"architecture":         "string",
			"channel":              "string",
			"interopExecutionMode": "string",
			"name":                 "string",
			"ring":                 "string",
		},
	},
	FlightingRing: "string",
	PackageId:     "string",
	HighlightedFiles: []map[string]interface{}{
		map[string]interface{}{
			"path": "string",
			"sections": []string{
				"string",
			},
			"visited": false,
		},
	},
	InplaceUpgradeOSPair: map[string]interface{}{
		"baselineOS": map[string]interface{}{
			"customImageId": "string",
			"osName":        "string",
			"releaseProperties": map[string]interface{}{
				"buildNumber":        "string",
				"buildRevision":      "string",
				"releaseName":        "string",
				"releaseVersionDate": "string",
			},
		},
		"targetOS": "string",
	},
	IntuneEnrollmentMetadata: map[string]interface{}{
		"appList": []map[string]interface{}{
			map[string]interface{}{
				"appId":                    "string",
				"appName":                  "string",
				"expectedInstallationPath": "string",
			},
		},
		"credentialId":                       "string",
		"expectedDeploymentDurationInMinute": 0,
	},
	DraftPackageName: "string",
	AppFileName:      "string",
	TabState: map[string]interface{}{
		"currentTab": "string",
		"visitedTabs": []string{
			"string",
		},
	},
	ProcessName: "string",
	Comments:    "string",
	SourceType:  "string",
	PackageTags: map[string]interface{}{
		"string": "string",
	},
	TargetOSList: []map[string]interface{}{
		map[string]interface{}{
			"osUpdateType": "string",
			"baselineOSs": []string{
				"string",
			},
			"insiderChannelIds": []string{
				"string",
			},
			"targetOSImageIds": []string{
				"string",
			},
			"targetOSs": []string{
				"string",
			},
		},
	},
	ApplicationName: "string",
	TestTypes: []string{
		"string",
	},
	Tests: []map[string]interface{}{
		map[string]interface{}{
			"commands": []map[string]interface{}{
				map[string]interface{}{
					"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,
		},
	},
	UseAutofill: false,
	UseSample:   false,
	Version:     "string",
})
Copy
var draftPackageResource = new DraftPackage("draftPackageResource", DraftPackageArgs.builder()
    .resourceGroupName("string")
    .testBaseAccountName("string")
    .intuneMetadata(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .galleryApps(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .editPackage(false)
    .executableLaunchCommand("string")
    .firstPartyApps(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .flightingRing("string")
    .packageId("string")
    .highlightedFiles(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .inplaceUpgradeOSPair(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .intuneEnrollmentMetadata(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .draftPackageName("string")
    .appFileName("string")
    .tabState(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .processName("string")
    .comments("string")
    .sourceType("string")
    .packageTags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .targetOSList(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .applicationName("string")
    .testTypes("string")
    .tests(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .useAutofill(false)
    .useSample(false)
    .version("string")
    .build());
Copy
draft_package_resource = azure_native.testbase.DraftPackage("draftPackageResource",
    resource_group_name=string,
    test_base_account_name=string,
    intune_metadata={
        intuneApp: {
            appId: string,
            appName: string,
            createDate: string,
            dependencyIds: [string],
            dependentAppCount: 0,
            description: string,
            expectedExitCodes: [string],
            installCommand: string,
            lastProcessed: 0,
            minimumSupportedOS: string,
            owner: string,
            publisher: string,
            setupFile: string,
            status: string,
            uninstallCommand: string,
            version: string,
        },
        intuneAppDependencies: [{
            appId: string,
            appName: string,
            createDate: string,
            dependencyIds: [string],
            dependentAppCount: 0,
            description: string,
            expectedExitCodes: [string],
            installCommand: string,
            lastProcessed: 0,
            minimumSupportedOS: string,
            owner: string,
            publisher: string,
            setupFile: string,
            status: string,
            uninstallCommand: string,
            version: string,
        }],
    },
    gallery_apps=[{
        skuId: string,
        isConsented: False,
    }],
    edit_package=False,
    executable_launch_command=string,
    first_party_apps=[{
        architecture: string,
        channel: string,
        interopExecutionMode: string,
        name: string,
        ring: string,
    }],
    flighting_ring=string,
    package_id=string,
    highlighted_files=[{
        path: string,
        sections: [string],
        visited: False,
    }],
    inplace_upgrade_os_pair={
        baselineOS: {
            customImageId: string,
            osName: string,
            releaseProperties: {
                buildNumber: string,
                buildRevision: string,
                releaseName: string,
                releaseVersionDate: string,
            },
        },
        targetOS: string,
    },
    intune_enrollment_metadata={
        appList: [{
            appId: string,
            appName: string,
            expectedInstallationPath: string,
        }],
        credentialId: string,
        expectedDeploymentDurationInMinute: 0,
    },
    draft_package_name=string,
    app_file_name=string,
    tab_state={
        currentTab: string,
        visitedTabs: [string],
    },
    process_name=string,
    comments=string,
    source_type=string,
    package_tags={
        string: string,
    },
    target_os_list=[{
        osUpdateType: string,
        baselineOSs: [string],
        insiderChannelIds: [string],
        targetOSImageIds: [string],
        targetOSs: [string],
    }],
    application_name=string,
    test_types=[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,
    }],
    use_autofill=False,
    use_sample=False,
    version=string)
Copy
const draftPackageResource = new azure_native.testbase.DraftPackage("draftPackageResource", {
    resourceGroupName: "string",
    testBaseAccountName: "string",
    intuneMetadata: {
        intuneApp: {
            appId: "string",
            appName: "string",
            createDate: "string",
            dependencyIds: ["string"],
            dependentAppCount: 0,
            description: "string",
            expectedExitCodes: ["string"],
            installCommand: "string",
            lastProcessed: 0,
            minimumSupportedOS: "string",
            owner: "string",
            publisher: "string",
            setupFile: "string",
            status: "string",
            uninstallCommand: "string",
            version: "string",
        },
        intuneAppDependencies: [{
            appId: "string",
            appName: "string",
            createDate: "string",
            dependencyIds: ["string"],
            dependentAppCount: 0,
            description: "string",
            expectedExitCodes: ["string"],
            installCommand: "string",
            lastProcessed: 0,
            minimumSupportedOS: "string",
            owner: "string",
            publisher: "string",
            setupFile: "string",
            status: "string",
            uninstallCommand: "string",
            version: "string",
        }],
    },
    galleryApps: [{
        skuId: "string",
        isConsented: false,
    }],
    editPackage: false,
    executableLaunchCommand: "string",
    firstPartyApps: [{
        architecture: "string",
        channel: "string",
        interopExecutionMode: "string",
        name: "string",
        ring: "string",
    }],
    flightingRing: "string",
    packageId: "string",
    highlightedFiles: [{
        path: "string",
        sections: ["string"],
        visited: false,
    }],
    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,
    },
    draftPackageName: "string",
    appFileName: "string",
    tabState: {
        currentTab: "string",
        visitedTabs: ["string"],
    },
    processName: "string",
    comments: "string",
    sourceType: "string",
    packageTags: {
        string: "string",
    },
    targetOSList: [{
        osUpdateType: "string",
        baselineOSs: ["string"],
        insiderChannelIds: ["string"],
        targetOSImageIds: ["string"],
        targetOSs: ["string"],
    }],
    applicationName: "string",
    testTypes: ["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,
    }],
    useAutofill: false,
    useSample: false,
    version: "string",
});
Copy
type: azure-native:testbase:DraftPackage
properties:
    appFileName: string
    applicationName: string
    comments: string
    draftPackageName: string
    editPackage: false
    executableLaunchCommand: string
    firstPartyApps:
        - architecture: string
          channel: string
          interopExecutionMode: string
          name: string
          ring: string
    flightingRing: string
    galleryApps:
        - isConsented: false
          skuId: string
    highlightedFiles:
        - path: string
          sections:
            - string
          visited: false
    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
    intuneMetadata:
        intuneApp:
            appId: string
            appName: string
            createDate: string
            dependencyIds:
                - string
            dependentAppCount: 0
            description: string
            expectedExitCodes:
                - string
            installCommand: string
            lastProcessed: 0
            minimumSupportedOS: string
            owner: string
            publisher: string
            setupFile: string
            status: string
            uninstallCommand: string
            version: string
        intuneAppDependencies:
            - appId: string
              appName: string
              createDate: string
              dependencyIds:
                - string
              dependentAppCount: 0
              description: string
              expectedExitCodes:
                - string
              installCommand: string
              lastProcessed: 0
              minimumSupportedOS: string
              owner: string
              publisher: string
              setupFile: string
              status: string
              uninstallCommand: string
              version: string
    packageId: string
    packageTags:
        string: string
    processName: string
    resourceGroupName: string
    sourceType: string
    tabState:
        currentTab: string
        visitedTabs:
            - string
    targetOSList:
        - baselineOSs:
            - string
          insiderChannelIds:
            - string
          osUpdateType: string
          targetOSImageIds:
            - string
          targetOSs:
            - string
    testBaseAccountName: string
    testTypes:
        - 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
    useAutofill: false
    useSample: false
    version: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TestBaseAccountName
This property is required.
Changes to this property will trigger replacement.
string
The resource name of the Test Base Account.
AppFileName string
The name of the app file.
ApplicationName string
Application name
Comments string
Comments added by user.
DraftPackageName Changes to this property will trigger replacement. string
The resource name of the Test Base Draft Package.
EditPackage bool
Specifies whether this draft package is used to edit a package.
ExecutableLaunchCommand string
The executable launch command for script auto-fill. Will be used to run the application.
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.
GalleryApps List<Pulumi.AzureNative.TestBase.Inputs.GalleryAppDefinition>
The list of gallery apps to test along with user application.
HighlightedFiles List<Pulumi.AzureNative.TestBase.Inputs.HighlightedFile>
The highlight files in the package.
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.
IntuneMetadata Pulumi.AzureNative.TestBase.Inputs.DraftPackageIntuneAppMetadata
Metadata used to generate draft package folder and scripts.
PackageId string
Specifies the package id from which the draft package copied.
PackageTags Dictionary<string, string>
Tags of the package to be created.
ProcessName string
The process name for script auto-fill. Will be used to identify the application process.
SourceType string | Pulumi.AzureNative.TestBase.DraftPackageSourceType
The source type.
TabState Pulumi.AzureNative.TestBase.Inputs.TabState
Tab state.
TargetOSList List<Pulumi.AzureNative.TestBase.Inputs.TargetOSInfo>
Specifies the target OSs of specific OS Update types.
TestTypes List<Union<string, Pulumi.AzureNative.TestBase.TestType>>
OOB, functional or flow driven. Mapped to the data in 'tests' property.
Tests List<Pulumi.AzureNative.TestBase.Inputs.Test>
The detailed test information.
UseAutofill bool
Indicates whether user choose to enable script auto-fill.
UseSample bool
Specifies whether a sample package should be used instead of the one uploaded by the user.
Version string
Application version
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
TestBaseAccountName
This property is required.
Changes to this property will trigger replacement.
string
The resource name of the Test Base Account.
AppFileName string
The name of the app file.
ApplicationName string
Application name
Comments string
Comments added by user.
DraftPackageName Changes to this property will trigger replacement. string
The resource name of the Test Base Draft Package.
EditPackage bool
Specifies whether this draft package is used to edit a package.
ExecutableLaunchCommand string
The executable launch command for script auto-fill. Will be used to run the application.
FirstPartyApps []FirstPartyAppDefinitionArgs
The list of first party applications to test along with user application.
FlightingRing string
The flighting ring for feature update.
GalleryApps []GalleryAppDefinitionArgs
The list of gallery apps to test along with user application.
HighlightedFiles []HighlightedFileArgs
The highlight files in the package.
InplaceUpgradeOSPair InplaceUpgradeOSInfoArgs
Specifies the baseline os and target os for inplace upgrade.
IntuneEnrollmentMetadata IntuneEnrollmentMetadataArgs
The metadata of Intune enrollment.
IntuneMetadata DraftPackageIntuneAppMetadataArgs
Metadata used to generate draft package folder and scripts.
PackageId string
Specifies the package id from which the draft package copied.
PackageTags map[string]string
Tags of the package to be created.
ProcessName string
The process name for script auto-fill. Will be used to identify the application process.
SourceType string | DraftPackageSourceType
The source type.
TabState TabStateArgs
Tab state.
TargetOSList []TargetOSInfoArgs
Specifies the target OSs of specific OS Update types.
TestTypes []string
OOB, functional or flow driven. Mapped to the data in 'tests' property.
Tests []TestArgs
The detailed test information.
UseAutofill bool
Indicates whether user choose to enable script auto-fill.
UseSample bool
Specifies whether a sample package should be used instead of the one uploaded by the user.
Version string
Application version
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
testBaseAccountName
This property is required.
Changes to this property will trigger replacement.
String
The resource name of the Test Base Account.
appFileName String
The name of the app file.
applicationName String
Application name
comments String
Comments added by user.
draftPackageName Changes to this property will trigger replacement. String
The resource name of the Test Base Draft Package.
editPackage Boolean
Specifies whether this draft package is used to edit a package.
executableLaunchCommand String
The executable launch command for script auto-fill. Will be used to run the application.
firstPartyApps List<FirstPartyAppDefinition>
The list of first party applications to test along with user application.
flightingRing String
The flighting ring for feature update.
galleryApps List<GalleryAppDefinition>
The list of gallery apps to test along with user application.
highlightedFiles List<HighlightedFile>
The highlight files in the package.
inplaceUpgradeOSPair InplaceUpgradeOSInfo
Specifies the baseline os and target os for inplace upgrade.
intuneEnrollmentMetadata IntuneEnrollmentMetadata
The metadata of Intune enrollment.
intuneMetadata DraftPackageIntuneAppMetadata
Metadata used to generate draft package folder and scripts.
packageId String
Specifies the package id from which the draft package copied.
packageTags Map<String,String>
Tags of the package to be created.
processName String
The process name for script auto-fill. Will be used to identify the application process.
sourceType String | DraftPackageSourceType
The source type.
tabState TabState
Tab state.
targetOSList List<TargetOSInfo>
Specifies the target OSs of specific OS Update types.
testTypes List<Either<String,TestType>>
OOB, functional or flow driven. Mapped to the data in 'tests' property.
tests List<Test>
The detailed test information.
useAutofill Boolean
Indicates whether user choose to enable script auto-fill.
useSample Boolean
Specifies whether a sample package should be used instead of the one uploaded by the user.
version String
Application version
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
testBaseAccountName
This property is required.
Changes to this property will trigger replacement.
string
The resource name of the Test Base Account.
appFileName string
The name of the app file.
applicationName string
Application name
comments string
Comments added by user.
draftPackageName Changes to this property will trigger replacement. string
The resource name of the Test Base Draft Package.
editPackage boolean
Specifies whether this draft package is used to edit a package.
executableLaunchCommand string
The executable launch command for script auto-fill. Will be used to run the application.
firstPartyApps FirstPartyAppDefinition[]
The list of first party applications to test along with user application.
flightingRing string
The flighting ring for feature update.
galleryApps GalleryAppDefinition[]
The list of gallery apps to test along with user application.
highlightedFiles HighlightedFile[]
The highlight files in the package.
inplaceUpgradeOSPair InplaceUpgradeOSInfo
Specifies the baseline os and target os for inplace upgrade.
intuneEnrollmentMetadata IntuneEnrollmentMetadata
The metadata of Intune enrollment.
intuneMetadata DraftPackageIntuneAppMetadata
Metadata used to generate draft package folder and scripts.
packageId string
Specifies the package id from which the draft package copied.
packageTags {[key: string]: string}
Tags of the package to be created.
processName string
The process name for script auto-fill. Will be used to identify the application process.
sourceType string | DraftPackageSourceType
The source type.
tabState TabState
Tab state.
targetOSList TargetOSInfo[]
Specifies the target OSs of specific OS Update types.
testTypes (string | TestType)[]
OOB, functional or flow driven. Mapped to the data in 'tests' property.
tests Test[]
The detailed test information.
useAutofill boolean
Indicates whether user choose to enable script auto-fill.
useSample boolean
Specifies whether a sample package should be used instead of the one uploaded by the user.
version string
Application version
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
test_base_account_name
This property is required.
Changes to this property will trigger replacement.
str
The resource name of the Test Base Account.
app_file_name str
The name of the app file.
application_name str
Application name
comments str
Comments added by user.
draft_package_name Changes to this property will trigger replacement. str
The resource name of the Test Base Draft Package.
edit_package bool
Specifies whether this draft package is used to edit a package.
executable_launch_command str
The executable launch command for script auto-fill. Will be used to run the application.
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.
gallery_apps Sequence[GalleryAppDefinitionArgs]
The list of gallery apps to test along with user application.
highlighted_files Sequence[HighlightedFileArgs]
The highlight files in the package.
inplace_upgrade_os_pair InplaceUpgradeOSInfoArgs
Specifies the baseline os and target os for inplace upgrade.
intune_enrollment_metadata IntuneEnrollmentMetadataArgs
The metadata of Intune enrollment.
intune_metadata DraftPackageIntuneAppMetadataArgs
Metadata used to generate draft package folder and scripts.
package_id str
Specifies the package id from which the draft package copied.
package_tags Mapping[str, str]
Tags of the package to be created.
process_name str
The process name for script auto-fill. Will be used to identify the application process.
source_type str | DraftPackageSourceType
The source type.
tab_state TabStateArgs
Tab state.
target_os_list Sequence[TargetOSInfoArgs]
Specifies the target OSs of specific OS Update types.
test_types Sequence[Union[str, TestType]]
OOB, functional or flow driven. Mapped to the data in 'tests' property.
tests Sequence[TestArgs]
The detailed test information.
use_autofill bool
Indicates whether user choose to enable script auto-fill.
use_sample bool
Specifies whether a sample package should be used instead of the one uploaded by the user.
version str
Application version
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
testBaseAccountName
This property is required.
Changes to this property will trigger replacement.
String
The resource name of the Test Base Account.
appFileName String
The name of the app file.
applicationName String
Application name
comments String
Comments added by user.
draftPackageName Changes to this property will trigger replacement. String
The resource name of the Test Base Draft Package.
editPackage Boolean
Specifies whether this draft package is used to edit a package.
executableLaunchCommand String
The executable launch command for script auto-fill. Will be used to run the application.
firstPartyApps List<Property Map>
The list of first party applications to test along with user application.
flightingRing String
The flighting ring for feature update.
galleryApps List<Property Map>
The list of gallery apps to test along with user application.
highlightedFiles List<Property Map>
The highlight files in the package.
inplaceUpgradeOSPair Property Map
Specifies the baseline os and target os for inplace upgrade.
intuneEnrollmentMetadata Property Map
The metadata of Intune enrollment.
intuneMetadata Property Map
Metadata used to generate draft package folder and scripts.
packageId String
Specifies the package id from which the draft package copied.
packageTags Map<String>
Tags of the package to be created.
processName String
The process name for script auto-fill. Will be used to identify the application process.
sourceType String | "Native" | "IntuneWin" | "TestBasePackage" | "GalleryApp" | "IntuneEnrollment"
The source type.
tabState Property Map
Tab state.
targetOSList List<Property Map>
Specifies the target OSs of specific OS Update types.
testTypes List<String | "OutOfBoxTest" | "FunctionalTest">
OOB, functional or flow driven. Mapped to the data in 'tests' property.
tests List<Property Map>
The detailed test information.
useAutofill Boolean
Indicates whether user choose to enable script auto-fill.
useSample Boolean
Specifies whether a sample package should be used instead of the one uploaded by the user.
version String
Application version

Outputs

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

DraftPackagePath string
The relative path of the folder hosting package files.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedTime string
The UTC timestamp when the package was last modified.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData Pulumi.AzureNative.TestBase.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
WorkingPath string
The relative path for a temporarily folder for package creation work.
DraftPackagePath string
The relative path of the folder hosting package files.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedTime string
The UTC timestamp when the package was last modified.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
WorkingPath string
The relative path for a temporarily folder for package creation work.
draftPackagePath String
The relative path of the folder hosting package files.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedTime String
The UTC timestamp when the package was last modified.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
workingPath String
The relative path for a temporarily folder for package creation work.
draftPackagePath string
The relative path of the folder hosting package files.
id string
The provider-assigned unique ID for this managed resource.
lastModifiedTime string
The UTC timestamp when the package was last modified.
name string
The name of the resource
provisioningState string
The provisioning state of the resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
workingPath string
The relative path for a temporarily folder for package creation work.
draft_package_path str
The relative path of the folder hosting package files.
id str
The provider-assigned unique ID for this managed resource.
last_modified_time str
The UTC timestamp when the package was last modified.
name str
The name of the resource
provisioning_state str
The provisioning state of the resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
working_path str
The relative path for a temporarily folder for package creation work.
draftPackagePath String
The relative path of the folder hosting package files.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedTime String
The UTC timestamp when the package was last modified.
name String
The name of the resource
provisioningState String
The provisioning state of the resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
workingPath String
The relative path for a temporarily folder for package creation work.

Supporting Types

Action
, ActionArgs

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

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 This property is required. string | Pulumi.AzureNative.TestBase.Action
The action of the command.
Content This property is required. string
The content of the command. The content depends on source type.
ContentType This property is required. string | Pulumi.AzureNative.TestBase.ContentType
The type of command content.
Name This property is required. 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 This property is required. string | Action
The action of the command.
Content This property is required. string
The content of the command. The content depends on source type.
ContentType This property is required. string | ContentType
The type of command content.
Name This property is required. 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 This property is required. String | Action
The action of the command.
content This property is required. String
The content of the command. The content depends on source type.
contentType This property is required. String | ContentType
The type of command content.
name This property is required. 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 This property is required. string | Action
The action of the command.
content This property is required. string
The content of the command. The content depends on source type.
contentType This property is required. string | ContentType
The type of command content.
name This property is required. 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 This property is required. str | Action
The action of the command.
content This property is required. str
The content of the command. The content depends on source type.
content_type This property is required. str | ContentType
The type of command content.
name This property is required. 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 This property is required. String | "Install" | "Launch" | "Close" | "Uninstall" | "Custom"
The action of the command.
content This property is required. String
The content of the command. The content depends on source type.
contentType This property is required. String | "Inline" | "File" | "Path"
The type of command content.
name This property is required. 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 This property is required. string
The action of the command.
Content This property is required. string
The content of the command. The content depends on source type.
ContentType This property is required. string
The type of command content.
Name This property is required. 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 This property is required. string
The action of the command.
Content This property is required. string
The content of the command. The content depends on source type.
ContentType This property is required. string
The type of command content.
Name This property is required. 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 This property is required. String
The action of the command.
content This property is required. String
The content of the command. The content depends on source type.
contentType This property is required. String
The type of command content.
name This property is required. 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 This property is required. string
The action of the command.
content This property is required. string
The content of the command. The content depends on source type.
contentType This property is required. string
The type of command content.
name This property is required. 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 This property is required. str
The action of the command.
content This property is required. str
The content of the command. The content depends on source type.
content_type This property is required. str
The type of command content.
name This property is required. 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 This property is required. String
The action of the command.
content This property is required. String
The content of the command. The content depends on source type.
contentType This property is required. String
The type of command content.
name This property is required. 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

DraftPackageIntuneAppMetadata
, DraftPackageIntuneAppMetadataArgs

IntuneApp Pulumi.AzureNative.TestBase.Inputs.DraftPackageIntuneAppMetadataItem
The Metadata of the Intune App through intunewin file uploading.
IntuneAppDependencies List<Pulumi.AzureNative.TestBase.Inputs.DraftPackageIntuneAppMetadataItem>
The Metadata of dependencies of the Intune App through intunewin file uploading.
IntuneApp DraftPackageIntuneAppMetadataItem
The Metadata of the Intune App through intunewin file uploading.
IntuneAppDependencies []DraftPackageIntuneAppMetadataItem
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp DraftPackageIntuneAppMetadataItem
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies List<DraftPackageIntuneAppMetadataItem>
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp DraftPackageIntuneAppMetadataItem
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies DraftPackageIntuneAppMetadataItem[]
The Metadata of dependencies of the Intune App through intunewin file uploading.
intune_app DraftPackageIntuneAppMetadataItem
The Metadata of the Intune App through intunewin file uploading.
intune_app_dependencies Sequence[DraftPackageIntuneAppMetadataItem]
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp Property Map
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies List<Property Map>
The Metadata of dependencies of the Intune App through intunewin file uploading.

DraftPackageIntuneAppMetadataItem
, DraftPackageIntuneAppMetadataItemArgs

AppId string
Intune app id.
AppName string
Intune app name.
CreateDate string
Creation date of the app.
DependencyIds List<string>
Ids of dependency apps.
DependentAppCount int
Count of dependency apps.
Description string
Description of the app.
ExpectedExitCodes List<string>
Expected exit codes returned from Intune App.
InstallCommand string
Install command.
LastProcessed double
last processed time tickets.
MinimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
Owner string
Owner of the app.
Publisher string
Publisher of the app.
SetupFile string
Setup file path.
Status string | Pulumi.AzureNative.TestBase.IntuneExtractStatus
Extract status.
UninstallCommand string
Uninstall command.
Version string
Intune app version.
AppId string
Intune app id.
AppName string
Intune app name.
CreateDate string
Creation date of the app.
DependencyIds []string
Ids of dependency apps.
DependentAppCount int
Count of dependency apps.
Description string
Description of the app.
ExpectedExitCodes []string
Expected exit codes returned from Intune App.
InstallCommand string
Install command.
LastProcessed float64
last processed time tickets.
MinimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
Owner string
Owner of the app.
Publisher string
Publisher of the app.
SetupFile string
Setup file path.
Status string | IntuneExtractStatus
Extract status.
UninstallCommand string
Uninstall command.
Version string
Intune app version.
appId String
Intune app id.
appName String
Intune app name.
createDate String
Creation date of the app.
dependencyIds List<String>
Ids of dependency apps.
dependentAppCount Integer
Count of dependency apps.
description String
Description of the app.
expectedExitCodes List<String>
Expected exit codes returned from Intune App.
installCommand String
Install command.
lastProcessed Double
last processed time tickets.
minimumSupportedOS String
Minimum supported OS. The OS version must be greater than this version to run this app.
owner String
Owner of the app.
publisher String
Publisher of the app.
setupFile String
Setup file path.
status String | IntuneExtractStatus
Extract status.
uninstallCommand String
Uninstall command.
version String
Intune app version.
appId string
Intune app id.
appName string
Intune app name.
createDate string
Creation date of the app.
dependencyIds string[]
Ids of dependency apps.
dependentAppCount number
Count of dependency apps.
description string
Description of the app.
expectedExitCodes string[]
Expected exit codes returned from Intune App.
installCommand string
Install command.
lastProcessed number
last processed time tickets.
minimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
owner string
Owner of the app.
publisher string
Publisher of the app.
setupFile string
Setup file path.
status string | IntuneExtractStatus
Extract status.
uninstallCommand string
Uninstall command.
version string
Intune app version.
app_id str
Intune app id.
app_name str
Intune app name.
create_date str
Creation date of the app.
dependency_ids Sequence[str]
Ids of dependency apps.
dependent_app_count int
Count of dependency apps.
description str
Description of the app.
expected_exit_codes Sequence[str]
Expected exit codes returned from Intune App.
install_command str
Install command.
last_processed float
last processed time tickets.
minimum_supported_os str
Minimum supported OS. The OS version must be greater than this version to run this app.
owner str
Owner of the app.
publisher str
Publisher of the app.
setup_file str
Setup file path.
status str | IntuneExtractStatus
Extract status.
uninstall_command str
Uninstall command.
version str
Intune app version.
appId String
Intune app id.
appName String
Intune app name.
createDate String
Creation date of the app.
dependencyIds List<String>
Ids of dependency apps.
dependentAppCount Number
Count of dependency apps.
description String
Description of the app.
expectedExitCodes List<String>
Expected exit codes returned from Intune App.
installCommand String
Install command.
lastProcessed Number
last processed time tickets.
minimumSupportedOS String
Minimum supported OS. The OS version must be greater than this version to run this app.
owner String
Owner of the app.
publisher String
Publisher of the app.
setupFile String
Setup file path.
status String | "Ready" | "Uploading" | "UploadFailed" | "ExtractFailed" | "NoDependencyApp"
Extract status.
uninstallCommand String
Uninstall command.
version String
Intune app version.

DraftPackageIntuneAppMetadataItemResponse
, DraftPackageIntuneAppMetadataItemResponseArgs

AppId string
Intune app id.
AppName string
Intune app name.
CreateDate string
Creation date of the app.
DependencyIds List<string>
Ids of dependency apps.
DependentAppCount int
Count of dependency apps.
Description string
Description of the app.
ExpectedExitCodes List<string>
Expected exit codes returned from Intune App.
InstallCommand string
Install command.
LastProcessed double
last processed time tickets.
MinimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
Owner string
Owner of the app.
Publisher string
Publisher of the app.
SetupFile string
Setup file path.
Status string
Extract status.
UninstallCommand string
Uninstall command.
Version string
Intune app version.
AppId string
Intune app id.
AppName string
Intune app name.
CreateDate string
Creation date of the app.
DependencyIds []string
Ids of dependency apps.
DependentAppCount int
Count of dependency apps.
Description string
Description of the app.
ExpectedExitCodes []string
Expected exit codes returned from Intune App.
InstallCommand string
Install command.
LastProcessed float64
last processed time tickets.
MinimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
Owner string
Owner of the app.
Publisher string
Publisher of the app.
SetupFile string
Setup file path.
Status string
Extract status.
UninstallCommand string
Uninstall command.
Version string
Intune app version.
appId String
Intune app id.
appName String
Intune app name.
createDate String
Creation date of the app.
dependencyIds List<String>
Ids of dependency apps.
dependentAppCount Integer
Count of dependency apps.
description String
Description of the app.
expectedExitCodes List<String>
Expected exit codes returned from Intune App.
installCommand String
Install command.
lastProcessed Double
last processed time tickets.
minimumSupportedOS String
Minimum supported OS. The OS version must be greater than this version to run this app.
owner String
Owner of the app.
publisher String
Publisher of the app.
setupFile String
Setup file path.
status String
Extract status.
uninstallCommand String
Uninstall command.
version String
Intune app version.
appId string
Intune app id.
appName string
Intune app name.
createDate string
Creation date of the app.
dependencyIds string[]
Ids of dependency apps.
dependentAppCount number
Count of dependency apps.
description string
Description of the app.
expectedExitCodes string[]
Expected exit codes returned from Intune App.
installCommand string
Install command.
lastProcessed number
last processed time tickets.
minimumSupportedOS string
Minimum supported OS. The OS version must be greater than this version to run this app.
owner string
Owner of the app.
publisher string
Publisher of the app.
setupFile string
Setup file path.
status string
Extract status.
uninstallCommand string
Uninstall command.
version string
Intune app version.
app_id str
Intune app id.
app_name str
Intune app name.
create_date str
Creation date of the app.
dependency_ids Sequence[str]
Ids of dependency apps.
dependent_app_count int
Count of dependency apps.
description str
Description of the app.
expected_exit_codes Sequence[str]
Expected exit codes returned from Intune App.
install_command str
Install command.
last_processed float
last processed time tickets.
minimum_supported_os str
Minimum supported OS. The OS version must be greater than this version to run this app.
owner str
Owner of the app.
publisher str
Publisher of the app.
setup_file str
Setup file path.
status str
Extract status.
uninstall_command str
Uninstall command.
version str
Intune app version.
appId String
Intune app id.
appName String
Intune app name.
createDate String
Creation date of the app.
dependencyIds List<String>
Ids of dependency apps.
dependentAppCount Number
Count of dependency apps.
description String
Description of the app.
expectedExitCodes List<String>
Expected exit codes returned from Intune App.
installCommand String
Install command.
lastProcessed Number
last processed time tickets.
minimumSupportedOS String
Minimum supported OS. The OS version must be greater than this version to run this app.
owner String
Owner of the app.
publisher String
Publisher of the app.
setupFile String
Setup file path.
status String
Extract status.
uninstallCommand String
Uninstall command.
version String
Intune app version.

DraftPackageIntuneAppMetadataResponse
, DraftPackageIntuneAppMetadataResponseArgs

IntuneApp Pulumi.AzureNative.TestBase.Inputs.DraftPackageIntuneAppMetadataItemResponse
The Metadata of the Intune App through intunewin file uploading.
IntuneAppDependencies List<Pulumi.AzureNative.TestBase.Inputs.DraftPackageIntuneAppMetadataItemResponse>
The Metadata of dependencies of the Intune App through intunewin file uploading.
IntuneApp DraftPackageIntuneAppMetadataItemResponse
The Metadata of the Intune App through intunewin file uploading.
IntuneAppDependencies []DraftPackageIntuneAppMetadataItemResponse
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp DraftPackageIntuneAppMetadataItemResponse
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies List<DraftPackageIntuneAppMetadataItemResponse>
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp DraftPackageIntuneAppMetadataItemResponse
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies DraftPackageIntuneAppMetadataItemResponse[]
The Metadata of dependencies of the Intune App through intunewin file uploading.
intune_app DraftPackageIntuneAppMetadataItemResponse
The Metadata of the Intune App through intunewin file uploading.
intune_app_dependencies Sequence[DraftPackageIntuneAppMetadataItemResponse]
The Metadata of dependencies of the Intune App through intunewin file uploading.
intuneApp Property Map
The Metadata of the Intune App through intunewin file uploading.
intuneAppDependencies List<Property Map>
The Metadata of dependencies of the Intune App through intunewin file uploading.

DraftPackageSourceType
, DraftPackageSourceTypeArgs

Native
Native
IntuneWin
IntuneWin
TestBasePackage
TestBasePackage
GalleryApp
GalleryApp
IntuneEnrollment
IntuneEnrollment
DraftPackageSourceTypeNative
Native
DraftPackageSourceTypeIntuneWin
IntuneWin
DraftPackageSourceTypeTestBasePackage
TestBasePackage
DraftPackageSourceTypeGalleryApp
GalleryApp
DraftPackageSourceTypeIntuneEnrollment
IntuneEnrollment
Native
Native
IntuneWin
IntuneWin
TestBasePackage
TestBasePackage
GalleryApp
GalleryApp
IntuneEnrollment
IntuneEnrollment
Native
Native
IntuneWin
IntuneWin
TestBasePackage
TestBasePackage
GalleryApp
GalleryApp
IntuneEnrollment
IntuneEnrollment
NATIVE
Native
INTUNE_WIN
IntuneWin
TEST_BASE_PACKAGE
TestBasePackage
GALLERY_APP
GalleryApp
INTUNE_ENROLLMENT
IntuneEnrollment
"Native"
Native
"IntuneWin"
IntuneWin
"TestBasePackage"
TestBasePackage
"GalleryApp"
GalleryApp
"IntuneEnrollment"
IntuneEnrollment

EnrolledIntuneApp
, EnrolledIntuneAppArgs

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

EnrolledIntuneAppResponse
, EnrolledIntuneAppResponseArgs

AppId This property is required. string
Intune app id.
AppName This property is required. string
Intune app name.
ExpectedInstallationPath This property is required. string
Intune app expected installation path.
AppId This property is required. string
Intune app id.
AppName This property is required. string
Intune app name.
ExpectedInstallationPath This property is required. string
Intune app expected installation path.
appId This property is required. String
Intune app id.
appName This property is required. String
Intune app name.
expectedInstallationPath This property is required. String
Intune app expected installation path.
appId This property is required. string
Intune app id.
appName This property is required. string
Intune app name.
expectedInstallationPath This property is required. string
Intune app expected installation path.
app_id This property is required. str
Intune app id.
app_name This property is required. str
Intune app name.
expected_installation_path This property is required. str
Intune app expected installation path.
appId This property is required. String
Intune app id.
appName This property is required. String
Intune app name.
expectedInstallationPath This property is required. 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.

GalleryAppDefinition
, GalleryAppDefinitionArgs

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

GalleryAppDefinitionResponse
, GalleryAppDefinitionResponseArgs

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

HighlightedFile
, HighlightedFileArgs

Path This property is required. string
The path of the highlighted file.
Sections List<string>
The name of sections to highlight.
Visited bool
A flag to save whether this file is viewed by user.
Path This property is required. string
The path of the highlighted file.
Sections []string
The name of sections to highlight.
Visited bool
A flag to save whether this file is viewed by user.
path This property is required. String
The path of the highlighted file.
sections List<String>
The name of sections to highlight.
visited Boolean
A flag to save whether this file is viewed by user.
path This property is required. string
The path of the highlighted file.
sections string[]
The name of sections to highlight.
visited boolean
A flag to save whether this file is viewed by user.
path This property is required. str
The path of the highlighted file.
sections Sequence[str]
The name of sections to highlight.
visited bool
A flag to save whether this file is viewed by user.
path This property is required. String
The path of the highlighted file.
sections List<String>
The name of sections to highlight.
visited Boolean
A flag to save whether this file is viewed by user.

HighlightedFileResponse
, HighlightedFileResponseArgs

Path This property is required. string
The path of the highlighted file.
Sections List<string>
The name of sections to highlight.
Visited bool
A flag to save whether this file is viewed by user.
Path This property is required. string
The path of the highlighted file.
Sections []string
The name of sections to highlight.
Visited bool
A flag to save whether this file is viewed by user.
path This property is required. String
The path of the highlighted file.
sections List<String>
The name of sections to highlight.
visited Boolean
A flag to save whether this file is viewed by user.
path This property is required. string
The path of the highlighted file.
sections string[]
The name of sections to highlight.
visited boolean
A flag to save whether this file is viewed by user.
path This property is required. str
The path of the highlighted file.
sections Sequence[str]
The name of sections to highlight.
visited bool
A flag to save whether this file is viewed by user.
path This property is required. String
The path of the highlighted file.
sections List<String>
The name of sections to highlight.
visited Boolean
A flag to save whether this file is viewed by user.

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.

IntuneExtractStatus
, IntuneExtractStatusArgs

Ready
Ready
Uploading
Uploading
UploadFailed
UploadFailed
ExtractFailed
ExtractFailed
NoDependencyApp
NoDependencyApp
IntuneExtractStatusReady
Ready
IntuneExtractStatusUploading
Uploading
IntuneExtractStatusUploadFailed
UploadFailed
IntuneExtractStatusExtractFailed
ExtractFailed
IntuneExtractStatusNoDependencyApp
NoDependencyApp
Ready
Ready
Uploading
Uploading
UploadFailed
UploadFailed
ExtractFailed
ExtractFailed
NoDependencyApp
NoDependencyApp
Ready
Ready
Uploading
Uploading
UploadFailed
UploadFailed
ExtractFailed
ExtractFailed
NoDependencyApp
NoDependencyApp
READY
Ready
UPLOADING
Uploading
UPLOAD_FAILED
UploadFailed
EXTRACT_FAILED
ExtractFailed
NO_DEPENDENCY_APP
NoDependencyApp
"Ready"
Ready
"Uploading"
Uploading
"UploadFailed"
UploadFailed
"ExtractFailed"
ExtractFailed
"NoDependencyApp"
NoDependencyApp

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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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.

PackageStudioTabs
, PackageStudioTabsArgs

Unspecified
Unspecified
BasicsTab
BasicsTab
ConfigureTestTab
ConfigureTestTab
EditPackageTab
EditPackageTab
TestMatrixTab
TestMatrixTab
TagsTab
TagsTab
ReviewAndCreateTab
ReviewAndCreateTab
PackageStudioTabsUnspecified
Unspecified
PackageStudioTabsBasicsTab
BasicsTab
PackageStudioTabsConfigureTestTab
ConfigureTestTab
PackageStudioTabsEditPackageTab
EditPackageTab
PackageStudioTabsTestMatrixTab
TestMatrixTab
PackageStudioTabsTagsTab
TagsTab
PackageStudioTabsReviewAndCreateTab
ReviewAndCreateTab
Unspecified
Unspecified
BasicsTab
BasicsTab
ConfigureTestTab
ConfigureTestTab
EditPackageTab
EditPackageTab
TestMatrixTab
TestMatrixTab
TagsTab
TagsTab
ReviewAndCreateTab
ReviewAndCreateTab
Unspecified
Unspecified
BasicsTab
BasicsTab
ConfigureTestTab
ConfigureTestTab
EditPackageTab
EditPackageTab
TestMatrixTab
TestMatrixTab
TagsTab
TagsTab
ReviewAndCreateTab
ReviewAndCreateTab
UNSPECIFIED
Unspecified
BASICS_TAB
BasicsTab
CONFIGURE_TEST_TAB
ConfigureTestTab
EDIT_PACKAGE_TAB
EditPackageTab
TEST_MATRIX_TAB
TestMatrixTab
TAGS_TAB
TagsTab
REVIEW_AND_CREATE_TAB
ReviewAndCreateTab
"Unspecified"
Unspecified
"BasicsTab"
BasicsTab
"ConfigureTestTab"
ConfigureTestTab
"EditPackageTab"
EditPackageTab
"TestMatrixTab"
TestMatrixTab
"TagsTab"
TagsTab
"ReviewAndCreateTab"
ReviewAndCreateTab

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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
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 type of identity that last modified the resource.
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

TabState
, TabStateArgs

CurrentTab string | Pulumi.AzureNative.TestBase.PackageStudioTabs
Current tab.
VisitedTabs List<Union<string, Pulumi.AzureNative.TestBase.PackageStudioTabs>>
visited tabs.
CurrentTab string | PackageStudioTabs
Current tab.
VisitedTabs []string
visited tabs.
currentTab String | PackageStudioTabs
Current tab.
visitedTabs List<Either<String,PackageStudioTabs>>
visited tabs.
currentTab string | PackageStudioTabs
Current tab.
visitedTabs (string | PackageStudioTabs)[]
visited tabs.
current_tab str | PackageStudioTabs
Current tab.
visited_tabs Sequence[Union[str, PackageStudioTabs]]
visited tabs.
currentTab String | "Unspecified" | "BasicsTab" | "ConfigureTestTab" | "EditPackageTab" | "TestMatrixTab" | "TagsTab" | "ReviewAndCreateTab"
Current tab.
visitedTabs List<String | "Unspecified" | "BasicsTab" | "ConfigureTestTab" | "EditPackageTab" | "TestMatrixTab" | "TagsTab" | "ReviewAndCreateTab">
visited tabs.

TabStateResponse
, TabStateResponseArgs

CurrentTab string
Current tab.
VisitedTabs List<string>
visited tabs.
CurrentTab string
Current tab.
VisitedTabs []string
visited tabs.
currentTab String
Current tab.
visitedTabs List<String>
visited tabs.
currentTab string
Current tab.
visitedTabs string[]
visited tabs.
current_tab str
Current tab.
visited_tabs Sequence[str]
visited tabs.
currentTab String
Current tab.
visitedTabs List<String>
visited tabs.

TargetOSInfo
, TargetOSInfoArgs

OsUpdateType This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
TargetOSs This property is required. List<string>
Specifies the target OSs to be tested.
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.
OsUpdateType This property is required. string
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
TargetOSs This property is required. []string
Specifies the target OSs to be tested.
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.
osUpdateType This property is required. String
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
targetOSs This property is required. List<String>
Specifies the target OSs to be tested.
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.
osUpdateType This property is required. string
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
targetOSs This property is required. string[]
Specifies the target OSs to be tested.
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.
os_update_type This property is required. str
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
target_oss This property is required. Sequence[str]
Specifies the target OSs to be tested.
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.
osUpdateType This property is required. String
Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
targetOSs This property is required. List<String>
Specifies the target OSs to be tested.
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.

Test
, TestArgs

Commands This property is required. List<Pulumi.AzureNative.TestBase.Inputs.Command>
The commands used in the test.
TestType This property is required. 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 This property is required. []Command
The commands used in the test.
TestType This property is required. 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 This property is required. List<Command>
The commands used in the test.
testType This property is required. 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 This property is required. Command[]
The commands used in the test.
testType This property is required. 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 This property is required. Sequence[Command]
The commands used in the test.
test_type This property is required. 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 This property is required. List<Property Map>
The commands used in the test.
testType This property is required. String | "OutOfBoxTest" | "FunctionalTest"
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 This property is required. List<Pulumi.AzureNative.TestBase.Inputs.CommandResponse>
The commands used in the test.
TestType This property is required. string
The type of the test.
ValidationResultId This property is required. string
Resource identifier of the validation test result.
ValidationRunStatus This property is required. 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 This property is required. []CommandResponse
The commands used in the test.
TestType This property is required. string
The type of the test.
ValidationResultId This property is required. string
Resource identifier of the validation test result.
ValidationRunStatus This property is required. 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 This property is required. List<CommandResponse>
The commands used in the test.
testType This property is required. String
The type of the test.
validationResultId This property is required. String
Resource identifier of the validation test result.
validationRunStatus This property is required. 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 This property is required. CommandResponse[]
The commands used in the test.
testType This property is required. string
The type of the test.
validationResultId This property is required. string
Resource identifier of the validation test result.
validationRunStatus This property is required. 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 This property is required. Sequence[CommandResponse]
The commands used in the test.
test_type This property is required. str
The type of the test.
validation_result_id This property is required. str
Resource identifier of the validation test result.
validation_run_status This property is required. 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 This property is required. List<Property Map>
The commands used in the test.
testType This property is required. String
The type of the test.
validationResultId This property is required. String
Resource identifier of the validation test result.
validationRunStatus This property is required. 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
TestTypeOutOfBoxTest
OutOfBoxTest
TestTypeFunctionalTest
FunctionalTest
OutOfBoxTest
OutOfBoxTest
FunctionalTest
FunctionalTest
OutOfBoxTest
OutOfBoxTest
FunctionalTest
FunctionalTest
OUT_OF_BOX_TEST
OutOfBoxTest
FUNCTIONAL_TEST
FunctionalTest
"OutOfBoxTest"
OutOfBoxTest
"FunctionalTest"
FunctionalTest

Import

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

$ pulumi import azure-native:testbase:DraftPackage 61d99543-14ff-47ae-bf03-8a8b8445502e /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TestBase/testBaseAccounts/{testBaseAccountName}/draftPackages/{draftPackageName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi