Draft Package Args
    data class DraftPackageArgs(val appFileName: Output<String>? = null, val applicationName: Output<String>? = null, val comments: Output<String>? = null, val draftPackageName: Output<String>? = null, val editPackage: Output<Boolean>? = null, val executableLaunchCommand: Output<String>? = null, val firstPartyApps: Output<List<FirstPartyAppDefinitionArgs>>? = null, val flightingRing: Output<String>? = null, val galleryApps: Output<List<GalleryAppDefinitionArgs>>? = null, val highlightedFiles: Output<List<HighlightedFileArgs>>? = null, val inplaceUpgradeOSPair: Output<InplaceUpgradeOSInfoArgs>? = null, val intuneEnrollmentMetadata: Output<IntuneEnrollmentMetadataArgs>? = null, val intuneMetadata: Output<DraftPackageIntuneAppMetadataArgs>? = null, val packageId: Output<String>? = null, val packageTags: Output<Map<String, String>>? = null, val processName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val sourceType: Output<Either<String, DraftPackageSourceType>>? = null, val tabState: Output<TabStateArgs>? = null, val targetOSList: Output<List<TargetOSInfoArgs>>? = null, val testBaseAccountName: Output<String>? = null, val testTypes: Output<List<Either<String, TestType>>>? = null, val tests: Output<List<TestArgs>>? = null, val useAutofill: Output<Boolean>? = null, val useSample: Output<Boolean>? = null, val version: Output<String>? = null) : ConvertibleToJava<DraftPackageArgs> 
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 = "Native",
        TestBaseAccountName = "contoso-testBaseAccount1",
        UseSample = false,
        Version = "1.0",
    });
});Content copied to clipboard
package main
import (
	"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("Native"),
			TestBaseAccountName: pulumi.String("contoso-testBaseAccount1"),
			UseSample:           pulumi.Bool(false),
			Version:             pulumi.String("1.0"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
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());
    }
}Content copied to clipboard
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}Content copied to clipboard
Constructors
Link copied to clipboard
                fun DraftPackageArgs(appFileName: Output<String>? = null, applicationName: Output<String>? = null, comments: Output<String>? = null, draftPackageName: Output<String>? = null, editPackage: Output<Boolean>? = null, executableLaunchCommand: Output<String>? = null, firstPartyApps: Output<List<FirstPartyAppDefinitionArgs>>? = null, flightingRing: Output<String>? = null, galleryApps: Output<List<GalleryAppDefinitionArgs>>? = null, highlightedFiles: Output<List<HighlightedFileArgs>>? = null, inplaceUpgradeOSPair: Output<InplaceUpgradeOSInfoArgs>? = null, intuneEnrollmentMetadata: Output<IntuneEnrollmentMetadataArgs>? = null, intuneMetadata: Output<DraftPackageIntuneAppMetadataArgs>? = null, packageId: Output<String>? = null, packageTags: Output<Map<String, String>>? = null, processName: Output<String>? = null, resourceGroupName: Output<String>? = null, sourceType: Output<Either<String, DraftPackageSourceType>>? = null, tabState: Output<TabStateArgs>? = null, targetOSList: Output<List<TargetOSInfoArgs>>? = null, testBaseAccountName: Output<String>? = null, testTypes: Output<List<Either<String, TestType>>>? = null, tests: Output<List<TestArgs>>? = null, useAutofill: Output<Boolean>? = null, useSample: Output<Boolean>? = null, version: Output<String>? = null)
Functions
Properties
Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard