azure-native.testbase.Package
Explore with Pulumi AI
The Test Base Package resource.
Uses Azure REST API version 2023-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-04-01-preview.
Other available API versions: 2022-04-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native testbase [ApiVersion]
. See the version guide for details.
Example Usage
PackageCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var package = new AzureNative.TestBase.Package("package", new()
{
ApplicationName = "contoso-package2",
BlobPath = "storageAccountPath/package.zip",
FirstPartyApps = new[]
{
new AzureNative.TestBase.Inputs.FirstPartyAppDefinitionArgs
{
Architecture = AzureNative.TestBase.Architecture.X64,
Channel = "Current Channel",
InteropExecutionMode = AzureNative.TestBase.InteropExecutionMode.FirstPartyAppWithTests,
Name = "Office",
Ring = "Insider",
},
},
FlightingRing = "Insider Beta Channel",
Location = "westus",
PackageName = "contoso-package2",
ResourceGroupName = "contoso-rg1",
Tags = null,
TargetOSList = new[]
{
new AzureNative.TestBase.Inputs.TargetOSInfoArgs
{
OsUpdateType = "Security updates",
TargetOSs = new[]
{
"Windows 10 2004",
"Windows 10 1903",
},
},
},
TestBaseAccountName = "contoso-testBaseAccount1",
Tests = new[]
{
new AzureNative.TestBase.Inputs.TestArgs
{
Commands = new[]
{
new AzureNative.TestBase.Inputs.CommandArgs
{
Action = AzureNative.TestBase.Action.Install,
AlwaysRun = true,
ApplyUpdateBefore = false,
Content = "app/scripts/install/job.ps1",
ContentType = AzureNative.TestBase.ContentType.Path,
Install1PAppBefore = true,
MaxRunTime = 1800,
Name = "Install",
RestartAfter = true,
RunAsInteractive = true,
RunElevated = true,
},
new AzureNative.TestBase.Inputs.CommandArgs
{
Action = AzureNative.TestBase.Action.Launch,
AlwaysRun = false,
ApplyUpdateBefore = true,
Content = "app/scripts/launch/job.ps1",
ContentType = AzureNative.TestBase.ContentType.Path,
Install1PAppBefore = false,
MaxRunTime = 1800,
Name = "Launch",
RestartAfter = false,
RunAsInteractive = true,
RunElevated = true,
},
new AzureNative.TestBase.Inputs.CommandArgs
{
Action = AzureNative.TestBase.Action.Close,
AlwaysRun = false,
ApplyUpdateBefore = false,
Content = "app/scripts/close/job.ps1",
ContentType = AzureNative.TestBase.ContentType.Path,
Install1PAppBefore = false,
MaxRunTime = 1800,
Name = "Close",
RestartAfter = false,
RunAsInteractive = true,
RunElevated = true,
},
new AzureNative.TestBase.Inputs.CommandArgs
{
Action = AzureNative.TestBase.Action.Uninstall,
AlwaysRun = true,
ApplyUpdateBefore = false,
Content = "app/scripts/uninstall/job.ps1",
ContentType = AzureNative.TestBase.ContentType.Path,
Install1PAppBefore = false,
MaxRunTime = 1800,
Name = "Uninstall",
RestartAfter = false,
RunAsInteractive = true,
RunElevated = true,
},
},
IsActive = true,
TestType = AzureNative.TestBase.TestType.OutOfBoxTest,
},
},
Version = "1.0.0",
});
});
package main
import (
testbase "github.com/pulumi/pulumi-azure-native-sdk/testbase/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := testbase.NewPackage(ctx, "package", &testbase.PackageArgs{
ApplicationName: pulumi.String("contoso-package2"),
BlobPath: pulumi.String("storageAccountPath/package.zip"),
FirstPartyApps: testbase.FirstPartyAppDefinitionArray{
&testbase.FirstPartyAppDefinitionArgs{
Architecture: pulumi.String(testbase.ArchitectureX64),
Channel: pulumi.String("Current Channel"),
InteropExecutionMode: pulumi.String(testbase.InteropExecutionModeFirstPartyAppWithTests),
Name: pulumi.String("Office"),
Ring: pulumi.String("Insider"),
},
},
FlightingRing: pulumi.String("Insider Beta Channel"),
Location: pulumi.String("westus"),
PackageName: pulumi.String("contoso-package2"),
ResourceGroupName: pulumi.String("contoso-rg1"),
Tags: pulumi.StringMap{},
TargetOSList: testbase.TargetOSInfoArray{
&testbase.TargetOSInfoArgs{
OsUpdateType: pulumi.String("Security updates"),
TargetOSs: pulumi.StringArray{
pulumi.String("Windows 10 2004"),
pulumi.String("Windows 10 1903"),
},
},
},
TestBaseAccountName: pulumi.String("contoso-testBaseAccount1"),
Tests: testbase.TestArray{
&testbase.TestArgs{
Commands: testbase.CommandArray{
&testbase.CommandArgs{
Action: pulumi.String(testbase.ActionInstall),
AlwaysRun: pulumi.Bool(true),
ApplyUpdateBefore: pulumi.Bool(false),
Content: pulumi.String("app/scripts/install/job.ps1"),
ContentType: pulumi.String(testbase.ContentTypePath),
Install1PAppBefore: pulumi.Bool(true),
MaxRunTime: pulumi.Int(1800),
Name: pulumi.String("Install"),
RestartAfter: pulumi.Bool(true),
RunAsInteractive: pulumi.Bool(true),
RunElevated: pulumi.Bool(true),
},
&testbase.CommandArgs{
Action: pulumi.String(testbase.ActionLaunch),
AlwaysRun: pulumi.Bool(false),
ApplyUpdateBefore: pulumi.Bool(true),
Content: pulumi.String("app/scripts/launch/job.ps1"),
ContentType: pulumi.String(testbase.ContentTypePath),
Install1PAppBefore: pulumi.Bool(false),
MaxRunTime: pulumi.Int(1800),
Name: pulumi.String("Launch"),
RestartAfter: pulumi.Bool(false),
RunAsInteractive: pulumi.Bool(true),
RunElevated: pulumi.Bool(true),
},
&testbase.CommandArgs{
Action: pulumi.String(testbase.ActionClose),
AlwaysRun: pulumi.Bool(false),
ApplyUpdateBefore: pulumi.Bool(false),
Content: pulumi.String("app/scripts/close/job.ps1"),
ContentType: pulumi.String(testbase.ContentTypePath),
Install1PAppBefore: pulumi.Bool(false),
MaxRunTime: pulumi.Int(1800),
Name: pulumi.String("Close"),
RestartAfter: pulumi.Bool(false),
RunAsInteractive: pulumi.Bool(true),
RunElevated: pulumi.Bool(true),
},
&testbase.CommandArgs{
Action: pulumi.String(testbase.ActionUninstall),
AlwaysRun: pulumi.Bool(true),
ApplyUpdateBefore: pulumi.Bool(false),
Content: pulumi.String("app/scripts/uninstall/job.ps1"),
ContentType: pulumi.String(testbase.ContentTypePath),
Install1PAppBefore: pulumi.Bool(false),
MaxRunTime: pulumi.Int(1800),
Name: pulumi.String("Uninstall"),
RestartAfter: pulumi.Bool(false),
RunAsInteractive: pulumi.Bool(true),
RunElevated: pulumi.Bool(true),
},
},
IsActive: pulumi.Bool(true),
TestType: pulumi.String(testbase.TestTypeOutOfBoxTest),
},
},
Version: pulumi.String("1.0.0"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.testbase.Package;
import com.pulumi.azurenative.testbase.PackageArgs;
import com.pulumi.azurenative.testbase.inputs.FirstPartyAppDefinitionArgs;
import com.pulumi.azurenative.testbase.inputs.TargetOSInfoArgs;
import com.pulumi.azurenative.testbase.inputs.TestArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var package_ = new Package("package", PackageArgs.builder()
.applicationName("contoso-package2")
.blobPath("storageAccountPath/package.zip")
.firstPartyApps(FirstPartyAppDefinitionArgs.builder()
.architecture("x64")
.channel("Current Channel")
.interopExecutionMode("firstPartyAppWithTests")
.name("Office")
.ring("Insider")
.build())
.flightingRing("Insider Beta Channel")
.location("westus")
.packageName("contoso-package2")
.resourceGroupName("contoso-rg1")
.tags(Map.ofEntries(
))
.targetOSList(TargetOSInfoArgs.builder()
.osUpdateType("Security updates")
.targetOSs(
"Windows 10 2004",
"Windows 10 1903")
.build())
.testBaseAccountName("contoso-testBaseAccount1")
.tests(TestArgs.builder()
.commands(
CommandArgs.builder()
.action("Install")
.alwaysRun(true)
.applyUpdateBefore(false)
.content("app/scripts/install/job.ps1")
.contentType("Path")
.install1PAppBefore(true)
.maxRunTime(1800)
.name("Install")
.restartAfter(true)
.runAsInteractive(true)
.runElevated(true)
.build(),
CommandArgs.builder()
.action("Launch")
.alwaysRun(false)
.applyUpdateBefore(true)
.content("app/scripts/launch/job.ps1")
.contentType("Path")
.install1PAppBefore(false)
.maxRunTime(1800)
.name("Launch")
.restartAfter(false)
.runAsInteractive(true)
.runElevated(true)
.build(),
CommandArgs.builder()
.action("Close")
.alwaysRun(false)
.applyUpdateBefore(false)
.content("app/scripts/close/job.ps1")
.contentType("Path")
.install1PAppBefore(false)
.maxRunTime(1800)
.name("Close")
.restartAfter(false)
.runAsInteractive(true)
.runElevated(true)
.build(),
CommandArgs.builder()
.action("Uninstall")
.alwaysRun(true)
.applyUpdateBefore(false)
.content("app/scripts/uninstall/job.ps1")
.contentType("Path")
.install1PAppBefore(false)
.maxRunTime(1800)
.name("Uninstall")
.restartAfter(false)
.runAsInteractive(true)
.runElevated(true)
.build())
.isActive(true)
.testType("OutOfBoxTest")
.build())
.version("1.0.0")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const _package = new azure_native.testbase.Package("package", {
applicationName: "contoso-package2",
blobPath: "storageAccountPath/package.zip",
firstPartyApps: [{
architecture: azure_native.testbase.Architecture.X64,
channel: "Current Channel",
interopExecutionMode: azure_native.testbase.InteropExecutionMode.FirstPartyAppWithTests,
name: "Office",
ring: "Insider",
}],
flightingRing: "Insider Beta Channel",
location: "westus",
packageName: "contoso-package2",
resourceGroupName: "contoso-rg1",
tags: {},
targetOSList: [{
osUpdateType: "Security updates",
targetOSs: [
"Windows 10 2004",
"Windows 10 1903",
],
}],
testBaseAccountName: "contoso-testBaseAccount1",
tests: [{
commands: [
{
action: azure_native.testbase.Action.Install,
alwaysRun: true,
applyUpdateBefore: false,
content: "app/scripts/install/job.ps1",
contentType: azure_native.testbase.ContentType.Path,
install1PAppBefore: true,
maxRunTime: 1800,
name: "Install",
restartAfter: true,
runAsInteractive: true,
runElevated: true,
},
{
action: azure_native.testbase.Action.Launch,
alwaysRun: false,
applyUpdateBefore: true,
content: "app/scripts/launch/job.ps1",
contentType: azure_native.testbase.ContentType.Path,
install1PAppBefore: false,
maxRunTime: 1800,
name: "Launch",
restartAfter: false,
runAsInteractive: true,
runElevated: true,
},
{
action: azure_native.testbase.Action.Close,
alwaysRun: false,
applyUpdateBefore: false,
content: "app/scripts/close/job.ps1",
contentType: azure_native.testbase.ContentType.Path,
install1PAppBefore: false,
maxRunTime: 1800,
name: "Close",
restartAfter: false,
runAsInteractive: true,
runElevated: true,
},
{
action: azure_native.testbase.Action.Uninstall,
alwaysRun: true,
applyUpdateBefore: false,
content: "app/scripts/uninstall/job.ps1",
contentType: azure_native.testbase.ContentType.Path,
install1PAppBefore: false,
maxRunTime: 1800,
name: "Uninstall",
restartAfter: false,
runAsInteractive: true,
runElevated: true,
},
],
isActive: true,
testType: azure_native.testbase.TestType.OutOfBoxTest,
}],
version: "1.0.0",
});
import pulumi
import pulumi_azure_native as azure_native
package = azure_native.testbase.Package("package",
application_name="contoso-package2",
blob_path="storageAccountPath/package.zip",
first_party_apps=[{
"architecture": azure_native.testbase.Architecture.X64,
"channel": "Current Channel",
"interop_execution_mode": azure_native.testbase.InteropExecutionMode.FIRST_PARTY_APP_WITH_TESTS,
"name": "Office",
"ring": "Insider",
}],
flighting_ring="Insider Beta Channel",
location="westus",
package_name="contoso-package2",
resource_group_name="contoso-rg1",
tags={},
target_os_list=[{
"os_update_type": "Security updates",
"target_oss": [
"Windows 10 2004",
"Windows 10 1903",
],
}],
test_base_account_name="contoso-testBaseAccount1",
tests=[{
"commands": [
{
"action": azure_native.testbase.Action.INSTALL,
"always_run": True,
"apply_update_before": False,
"content": "app/scripts/install/job.ps1",
"content_type": azure_native.testbase.ContentType.PATH,
"install1_p_app_before": True,
"max_run_time": 1800,
"name": "Install",
"restart_after": True,
"run_as_interactive": True,
"run_elevated": True,
},
{
"action": azure_native.testbase.Action.LAUNCH,
"always_run": False,
"apply_update_before": True,
"content": "app/scripts/launch/job.ps1",
"content_type": azure_native.testbase.ContentType.PATH,
"install1_p_app_before": False,
"max_run_time": 1800,
"name": "Launch",
"restart_after": False,
"run_as_interactive": True,
"run_elevated": True,
},
{
"action": azure_native.testbase.Action.CLOSE,
"always_run": False,
"apply_update_before": False,
"content": "app/scripts/close/job.ps1",
"content_type": azure_native.testbase.ContentType.PATH,
"install1_p_app_before": False,
"max_run_time": 1800,
"name": "Close",
"restart_after": False,
"run_as_interactive": True,
"run_elevated": True,
},
{
"action": azure_native.testbase.Action.UNINSTALL,
"always_run": True,
"apply_update_before": False,
"content": "app/scripts/uninstall/job.ps1",
"content_type": azure_native.testbase.ContentType.PATH,
"install1_p_app_before": False,
"max_run_time": 1800,
"name": "Uninstall",
"restart_after": False,
"run_as_interactive": True,
"run_elevated": True,
},
],
"is_active": True,
"test_type": azure_native.testbase.TestType.OUT_OF_BOX_TEST,
}],
version="1.0.0")
resources:
package:
type: azure-native:testbase:Package
properties:
applicationName: contoso-package2
blobPath: storageAccountPath/package.zip
firstPartyApps:
- architecture: x64
channel: Current Channel
interopExecutionMode: firstPartyAppWithTests
name: Office
ring: Insider
flightingRing: Insider Beta Channel
location: westus
packageName: contoso-package2
resourceGroupName: contoso-rg1
tags: {}
targetOSList:
- osUpdateType: Security updates
targetOSs:
- Windows 10 2004
- Windows 10 1903
testBaseAccountName: contoso-testBaseAccount1
tests:
- commands:
- action: Install
alwaysRun: true
applyUpdateBefore: false
content: app/scripts/install/job.ps1
contentType: Path
install1PAppBefore: true
maxRunTime: 1800
name: Install
restartAfter: true
runAsInteractive: true
runElevated: true
- action: Launch
alwaysRun: false
applyUpdateBefore: true
content: app/scripts/launch/job.ps1
contentType: Path
install1PAppBefore: false
maxRunTime: 1800
name: Launch
restartAfter: false
runAsInteractive: true
runElevated: true
- action: Close
alwaysRun: false
applyUpdateBefore: false
content: app/scripts/close/job.ps1
contentType: Path
install1PAppBefore: false
maxRunTime: 1800
name: Close
restartAfter: false
runAsInteractive: true
runElevated: true
- action: Uninstall
alwaysRun: true
applyUpdateBefore: false
content: app/scripts/uninstall/job.ps1
contentType: Path
install1PAppBefore: false
maxRunTime: 1800
name: Uninstall
restartAfter: false
runAsInteractive: true
runElevated: true
isActive: true
testType: OutOfBoxTest
version: 1.0.0
Create Package Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Package(name: string, args: PackageArgs, opts?: CustomResourceOptions);
@overload
def Package(resource_name: str,
args: PackageArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Package(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
version: Optional[str] = None,
test_base_account_name: Optional[str] = None,
application_name: Optional[str] = None,
first_party_apps: Optional[Sequence[FirstPartyAppDefinitionArgs]] = None,
inplace_upgrade_os_pair: Optional[InplaceUpgradeOSInfoArgs] = None,
intune_enrollment_metadata: Optional[IntuneEnrollmentMetadataArgs] = None,
location: Optional[str] = None,
package_name: Optional[str] = None,
flighting_ring: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
target_os_list: Optional[Sequence[TargetOSInfoArgs]] = None,
draft_package_id: Optional[str] = None,
tests: Optional[Sequence[TestArgs]] = None,
blob_path: Optional[str] = None)
func NewPackage(ctx *Context, name string, args PackageArgs, opts ...ResourceOption) (*Package, error)
public Package(string name, PackageArgs args, CustomResourceOptions? opts = null)
public Package(String name, PackageArgs args)
public Package(String name, PackageArgs args, CustomResourceOptions options)
type: azure-native:testbase:Package
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args PackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args PackageArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args PackageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PackageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PackageArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativePackageResource = new AzureNative.TestBase.Package("azure-nativePackageResource", new()
{
ResourceGroupName = "string",
Version = "string",
TestBaseAccountName = "string",
ApplicationName = "string",
FirstPartyApps = new[]
{
new AzureNative.TestBase.Inputs.FirstPartyAppDefinitionArgs
{
Architecture = "string",
Channel = "string",
InteropExecutionMode = "string",
Name = "string",
Ring = "string",
},
},
InplaceUpgradeOSPair = new AzureNative.TestBase.Inputs.InplaceUpgradeOSInfoArgs
{
BaselineOS = new AzureNative.TestBase.Inputs.OsPropertiesArgs
{
CustomImageId = "string",
OsName = "string",
ReleaseProperties = new AzureNative.TestBase.Inputs.ReleasePropertiesArgs
{
BuildNumber = "string",
BuildRevision = "string",
ReleaseName = "string",
ReleaseVersionDate = "string",
},
},
TargetOS = "string",
},
IntuneEnrollmentMetadata = new AzureNative.TestBase.Inputs.IntuneEnrollmentMetadataArgs
{
AppList = new[]
{
new AzureNative.TestBase.Inputs.EnrolledIntuneAppArgs
{
AppId = "string",
AppName = "string",
ExpectedInstallationPath = "string",
},
},
CredentialId = "string",
ExpectedDeploymentDurationInMinute = 0,
},
Location = "string",
PackageName = "string",
FlightingRing = "string",
Tags =
{
{ "string", "string" },
},
TargetOSList = new[]
{
new AzureNative.TestBase.Inputs.TargetOSInfoArgs
{
OsUpdateType = "string",
BaselineOSs = new[]
{
"string",
},
InsiderChannelIds = new[]
{
"string",
},
TargetOSImageIds = new[]
{
"string",
},
TargetOSs = new[]
{
"string",
},
},
},
DraftPackageId = "string",
Tests = new[]
{
new AzureNative.TestBase.Inputs.TestArgs
{
Commands = new[]
{
new AzureNative.TestBase.Inputs.CommandArgs
{
ContentType = "string",
Name = "string",
Action = "string",
Content = "string",
Install1PAppBefore = false,
EnrollIntuneBefore = false,
ApplyUpdateBefore = false,
MaxRunTime = 0,
AlwaysRun = false,
PostUpgrade = false,
PreUpgrade = false,
RestartAfter = false,
RunAsInteractive = false,
RunElevated = false,
},
},
TestType = "string",
IsActive = false,
},
},
BlobPath = "string",
});
example, err := testbase.NewPackage(ctx, "azure-nativePackageResource", &testbase.PackageArgs{
ResourceGroupName: pulumi.String("string"),
Version: pulumi.String("string"),
TestBaseAccountName: pulumi.String("string"),
ApplicationName: pulumi.String("string"),
FirstPartyApps: testbase.FirstPartyAppDefinitionArray{
&testbase.FirstPartyAppDefinitionArgs{
Architecture: pulumi.String("string"),
Channel: pulumi.String("string"),
InteropExecutionMode: pulumi.String("string"),
Name: pulumi.String("string"),
Ring: pulumi.String("string"),
},
},
InplaceUpgradeOSPair: &testbase.InplaceUpgradeOSInfoArgs{
BaselineOS: &testbase.OsPropertiesArgs{
CustomImageId: pulumi.String("string"),
OsName: pulumi.String("string"),
ReleaseProperties: &testbase.ReleasePropertiesArgs{
BuildNumber: pulumi.String("string"),
BuildRevision: pulumi.String("string"),
ReleaseName: pulumi.String("string"),
ReleaseVersionDate: pulumi.String("string"),
},
},
TargetOS: pulumi.String("string"),
},
IntuneEnrollmentMetadata: &testbase.IntuneEnrollmentMetadataArgs{
AppList: testbase.EnrolledIntuneAppArray{
&testbase.EnrolledIntuneAppArgs{
AppId: pulumi.String("string"),
AppName: pulumi.String("string"),
ExpectedInstallationPath: pulumi.String("string"),
},
},
CredentialId: pulumi.String("string"),
ExpectedDeploymentDurationInMinute: pulumi.Int(0),
},
Location: pulumi.String("string"),
PackageName: pulumi.String("string"),
FlightingRing: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TargetOSList: testbase.TargetOSInfoArray{
&testbase.TargetOSInfoArgs{
OsUpdateType: pulumi.String("string"),
BaselineOSs: pulumi.StringArray{
pulumi.String("string"),
},
InsiderChannelIds: pulumi.StringArray{
pulumi.String("string"),
},
TargetOSImageIds: pulumi.StringArray{
pulumi.String("string"),
},
TargetOSs: pulumi.StringArray{
pulumi.String("string"),
},
},
},
DraftPackageId: pulumi.String("string"),
Tests: testbase.TestArray{
&testbase.TestArgs{
Commands: testbase.CommandArray{
&testbase.CommandArgs{
ContentType: pulumi.String("string"),
Name: pulumi.String("string"),
Action: pulumi.String("string"),
Content: pulumi.String("string"),
Install1PAppBefore: pulumi.Bool(false),
EnrollIntuneBefore: pulumi.Bool(false),
ApplyUpdateBefore: pulumi.Bool(false),
MaxRunTime: pulumi.Int(0),
AlwaysRun: pulumi.Bool(false),
PostUpgrade: pulumi.Bool(false),
PreUpgrade: pulumi.Bool(false),
RestartAfter: pulumi.Bool(false),
RunAsInteractive: pulumi.Bool(false),
RunElevated: pulumi.Bool(false),
},
},
TestType: pulumi.String("string"),
IsActive: pulumi.Bool(false),
},
},
BlobPath: pulumi.String("string"),
})
var azure_nativePackageResource = new com.pulumi.azurenative.testbase.Package("azure-nativePackageResource", com.pulumi.azurenative.testbase.PackageArgs.builder()
.resourceGroupName("string")
.version("string")
.testBaseAccountName("string")
.applicationName("string")
.firstPartyApps(FirstPartyAppDefinitionArgs.builder()
.architecture("string")
.channel("string")
.interopExecutionMode("string")
.name("string")
.ring("string")
.build())
.inplaceUpgradeOSPair(InplaceUpgradeOSInfoArgs.builder()
.baselineOS(OsPropertiesArgs.builder()
.customImageId("string")
.osName("string")
.releaseProperties(ReleasePropertiesArgs.builder()
.buildNumber("string")
.buildRevision("string")
.releaseName("string")
.releaseVersionDate("string")
.build())
.build())
.targetOS("string")
.build())
.intuneEnrollmentMetadata(IntuneEnrollmentMetadataArgs.builder()
.appList(EnrolledIntuneAppArgs.builder()
.appId("string")
.appName("string")
.expectedInstallationPath("string")
.build())
.credentialId("string")
.expectedDeploymentDurationInMinute(0)
.build())
.location("string")
.packageName("string")
.flightingRing("string")
.tags(Map.of("string", "string"))
.targetOSList(TargetOSInfoArgs.builder()
.osUpdateType("string")
.baselineOSs("string")
.insiderChannelIds("string")
.targetOSImageIds("string")
.targetOSs("string")
.build())
.draftPackageId("string")
.tests(TestArgs.builder()
.commands(CommandArgs.builder()
.contentType("string")
.name("string")
.action("string")
.content("string")
.install1PAppBefore(false)
.enrollIntuneBefore(false)
.applyUpdateBefore(false)
.maxRunTime(0)
.alwaysRun(false)
.postUpgrade(false)
.preUpgrade(false)
.restartAfter(false)
.runAsInteractive(false)
.runElevated(false)
.build())
.testType("string")
.isActive(false)
.build())
.blobPath("string")
.build());
azure_native_package_resource = azure_native.testbase.Package("azure-nativePackageResource",
resource_group_name="string",
version="string",
test_base_account_name="string",
application_name="string",
first_party_apps=[{
"architecture": "string",
"channel": "string",
"interop_execution_mode": "string",
"name": "string",
"ring": "string",
}],
inplace_upgrade_os_pair={
"baseline_os": {
"custom_image_id": "string",
"os_name": "string",
"release_properties": {
"build_number": "string",
"build_revision": "string",
"release_name": "string",
"release_version_date": "string",
},
},
"target_os": "string",
},
intune_enrollment_metadata={
"app_list": [{
"app_id": "string",
"app_name": "string",
"expected_installation_path": "string",
}],
"credential_id": "string",
"expected_deployment_duration_in_minute": 0,
},
location="string",
package_name="string",
flighting_ring="string",
tags={
"string": "string",
},
target_os_list=[{
"os_update_type": "string",
"baseline_oss": ["string"],
"insider_channel_ids": ["string"],
"target_os_image_ids": ["string"],
"target_oss": ["string"],
}],
draft_package_id="string",
tests=[{
"commands": [{
"content_type": "string",
"name": "string",
"action": "string",
"content": "string",
"install1_p_app_before": False,
"enroll_intune_before": False,
"apply_update_before": False,
"max_run_time": 0,
"always_run": False,
"post_upgrade": False,
"pre_upgrade": False,
"restart_after": False,
"run_as_interactive": False,
"run_elevated": False,
}],
"test_type": "string",
"is_active": False,
}],
blob_path="string")
const azure_nativePackageResource = new azure_native.testbase.Package("azure-nativePackageResource", {
resourceGroupName: "string",
version: "string",
testBaseAccountName: "string",
applicationName: "string",
firstPartyApps: [{
architecture: "string",
channel: "string",
interopExecutionMode: "string",
name: "string",
ring: "string",
}],
inplaceUpgradeOSPair: {
baselineOS: {
customImageId: "string",
osName: "string",
releaseProperties: {
buildNumber: "string",
buildRevision: "string",
releaseName: "string",
releaseVersionDate: "string",
},
},
targetOS: "string",
},
intuneEnrollmentMetadata: {
appList: [{
appId: "string",
appName: "string",
expectedInstallationPath: "string",
}],
credentialId: "string",
expectedDeploymentDurationInMinute: 0,
},
location: "string",
packageName: "string",
flightingRing: "string",
tags: {
string: "string",
},
targetOSList: [{
osUpdateType: "string",
baselineOSs: ["string"],
insiderChannelIds: ["string"],
targetOSImageIds: ["string"],
targetOSs: ["string"],
}],
draftPackageId: "string",
tests: [{
commands: [{
contentType: "string",
name: "string",
action: "string",
content: "string",
install1PAppBefore: false,
enrollIntuneBefore: false,
applyUpdateBefore: false,
maxRunTime: 0,
alwaysRun: false,
postUpgrade: false,
preUpgrade: false,
restartAfter: false,
runAsInteractive: false,
runElevated: false,
}],
testType: "string",
isActive: false,
}],
blobPath: "string",
});
type: azure-native:testbase:Package
properties:
applicationName: string
blobPath: string
draftPackageId: string
firstPartyApps:
- architecture: string
channel: string
interopExecutionMode: string
name: string
ring: string
flightingRing: string
inplaceUpgradeOSPair:
baselineOS:
customImageId: string
osName: string
releaseProperties:
buildNumber: string
buildRevision: string
releaseName: string
releaseVersionDate: string
targetOS: string
intuneEnrollmentMetadata:
appList:
- appId: string
appName: string
expectedInstallationPath: string
credentialId: string
expectedDeploymentDurationInMinute: 0
location: string
packageName: string
resourceGroupName: string
tags:
string: string
targetOSList:
- baselineOSs:
- string
insiderChannelIds:
- string
osUpdateType: string
targetOSImageIds:
- string
targetOSs:
- string
testBaseAccountName: string
tests:
- commands:
- action: string
alwaysRun: false
applyUpdateBefore: false
content: string
contentType: string
enrollIntuneBefore: false
install1PAppBefore: false
maxRunTime: 0
name: string
postUpgrade: false
preUpgrade: false
restartAfter: false
runAsInteractive: false
runElevated: false
isActive: false
testType: string
version: string
Package Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Package resource accepts the following input properties:
- Application
Name string - Application name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Test
Base stringAccount Name - The resource name of the Test Base Account.
- Version string
- Application version
- Blob
Path string - The file path of the package.
- Draft
Package stringId - The id of draft package. Used to create or update this package from a draft package.
- First
Party List<Pulumi.Apps Azure Native. Test Base. Inputs. First Party App Definition> - The list of first party applications to test along with user application.
- Flighting
Ring string - The flighting ring for feature update.
- Inplace
Upgrade Pulumi.OSPair Azure Native. Test Base. Inputs. Inplace Upgrade OSInfo - Specifies the baseline os and target os for inplace upgrade.
- Intune
Enrollment Pulumi.Metadata Azure Native. Test Base. Inputs. Intune Enrollment Metadata - The metadata of Intune enrollment.
- Location string
- The geo-location where the resource lives
- Package
Name string - The resource name of the Test Base Package.
- Dictionary<string, string>
- Resource tags.
- Target
OSList List<Pulumi.Azure Native. Test Base. Inputs. Target OSInfo> - Specifies the target OSs of specific OS Update types.
- Tests
List<Pulumi.
Azure Native. Test Base. Inputs. Test> - The detailed test information.
- Application
Name string - Application name
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Test
Base stringAccount Name - The resource name of the Test Base Account.
- Version string
- Application version
- Blob
Path string - The file path of the package.
- Draft
Package stringId - The id of draft package. Used to create or update this package from a draft package.
- First
Party []FirstApps Party App Definition Args - The list of first party applications to test along with user application.
- Flighting
Ring string - The flighting ring for feature update.
- Inplace
Upgrade InplaceOSPair Upgrade OSInfo Args - Specifies the baseline os and target os for inplace upgrade.
- Intune
Enrollment IntuneMetadata Enrollment Metadata Args - The metadata of Intune enrollment.
- Location string
- The geo-location where the resource lives
- Package
Name string - The resource name of the Test Base Package.
- map[string]string
- Resource tags.
- Target
OSList []TargetOSInfo Args - Specifies the target OSs of specific OS Update types.
- Tests
[]Test
Args - The detailed test information.
- application
Name String - Application name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- test
Base StringAccount Name - The resource name of the Test Base Account.
- version String
- Application version
- blob
Path String - The file path of the package.
- draft
Package StringId - The id of draft package. Used to create or update this package from a draft package.
- first
Party List<FirstApps Party App Definition> - The list of first party applications to test along with user application.
- flighting
Ring String - The flighting ring for feature update.
- inplace
Upgrade InplaceOSPair Upgrade OSInfo - Specifies the baseline os and target os for inplace upgrade.
- intune
Enrollment IntuneMetadata Enrollment Metadata - The metadata of Intune enrollment.
- location String
- The geo-location where the resource lives
- package
Name String - The resource name of the Test Base Package.
- Map<String,String>
- Resource tags.
- target
OSList List<TargetOSInfo> - Specifies the target OSs of specific OS Update types.
- tests List<Test>
- The detailed test information.
- application
Name string - Application name
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- test
Base stringAccount Name - The resource name of the Test Base Account.
- version string
- Application version
- blob
Path string - The file path of the package.
- draft
Package stringId - The id of draft package. Used to create or update this package from a draft package.
- first
Party FirstApps Party App Definition[] - The list of first party applications to test along with user application.
- flighting
Ring string - The flighting ring for feature update.
- inplace
Upgrade InplaceOSPair Upgrade OSInfo - Specifies the baseline os and target os for inplace upgrade.
- intune
Enrollment IntuneMetadata Enrollment Metadata - The metadata of Intune enrollment.
- location string
- The geo-location where the resource lives
- package
Name string - The resource name of the Test Base Package.
- {[key: string]: string}
- Resource tags.
- target
OSList TargetOSInfo[] - Specifies the target OSs of specific OS Update types.
- tests Test[]
- The detailed test information.
- application_
name str - Application name
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- test_
base_ straccount_ name - The resource name of the Test Base Account.
- version str
- Application version
- blob_
path str - The file path of the package.
- draft_
package_ strid - The id of draft package. Used to create or update this package from a draft package.
- first_
party_ Sequence[Firstapps Party App Definition Args] - The list of first party applications to test along with user application.
- flighting_
ring str - The flighting ring for feature update.
- inplace_
upgrade_ Inplaceos_ pair Upgrade OSInfo Args - Specifies the baseline os and target os for inplace upgrade.
- intune_
enrollment_ Intunemetadata Enrollment Metadata Args - The metadata of Intune enrollment.
- location str
- The geo-location where the resource lives
- package_
name str - The resource name of the Test Base Package.
- Mapping[str, str]
- Resource tags.
- target_
os_ Sequence[Targetlist OSInfo Args] - Specifies the target OSs of specific OS Update types.
- tests
Sequence[Test
Args] - The detailed test information.
- application
Name String - Application name
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- test
Base StringAccount Name - The resource name of the Test Base Account.
- version String
- Application version
- blob
Path String - The file path of the package.
- draft
Package StringId - The id of draft package. Used to create or update this package from a draft package.
- first
Party List<Property Map>Apps - The list of first party applications to test along with user application.
- flighting
Ring String - The flighting ring for feature update.
- inplace
Upgrade Property MapOSPair - Specifies the baseline os and target os for inplace upgrade.
- intune
Enrollment Property MapMetadata - The metadata of Intune enrollment.
- location String
- The geo-location where the resource lives
- package
Name String - The resource name of the Test Base Package.
- Map<String>
- Resource tags.
- target
OSList List<Property Map> - Specifies the target OSs of specific OS Update types.
- tests List<Property Map>
- The detailed test information.
Outputs
All input properties are implicitly available as output properties. Additionally, the Package resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Gallery
Apps List<Pulumi.Azure Native. Test Base. Outputs. Gallery App Definition Response> - The list of gallery apps to test along with user application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Enabled bool - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- Last
Modified stringTime - The UTC timestamp when the package was last modified.
- Name string
- The name of the resource
- Package
Status string - The status of the package.
- Provisioning
State string - The provisioning state of the resource.
- System
Data Pulumi.Azure Native. Test Base. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Test
Types List<string> - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Validation
Results List<Pulumi.Azure Native. Test Base. Outputs. Package Validation Result Response> - The validation results. There's validation on package when it's created or updated.
- Azure
Api stringVersion - The Azure API version of the resource.
- Gallery
Apps []GalleryApp Definition Response - The list of gallery apps to test along with user application.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Enabled bool - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- Last
Modified stringTime - The UTC timestamp when the package was last modified.
- Name string
- The name of the resource
- Package
Status string - The status of the package.
- Provisioning
State string - The provisioning state of the resource.
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Test
Types []string - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Validation
Results []PackageValidation Result Response - The validation results. There's validation on package when it's created or updated.
- azure
Api StringVersion - The Azure API version of the resource.
- gallery
Apps List<GalleryApp Definition Response> - The list of gallery apps to test along with user application.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Enabled Boolean - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- last
Modified StringTime - The UTC timestamp when the package was last modified.
- name String
- The name of the resource
- package
Status String - The status of the package.
- provisioning
State String - The provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- test
Types List<String> - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Results List<PackageValidation Result Response> - The validation results. There's validation on package when it's created or updated.
- azure
Api stringVersion - The Azure API version of the resource.
- gallery
Apps GalleryApp Definition Response[] - The list of gallery apps to test along with user application.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Enabled boolean - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- last
Modified stringTime - The UTC timestamp when the package was last modified.
- name string
- The name of the resource
- package
Status string - The status of the package.
- provisioning
State string - The provisioning state of the resource.
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- test
Types string[] - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Results PackageValidation Result Response[] - The validation results. There's validation on package when it's created or updated.
- azure_
api_ strversion - The Azure API version of the resource.
- gallery_
apps Sequence[GalleryApp Definition Response] - The list of gallery apps to test along with user application.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
enabled bool - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- last_
modified_ strtime - The UTC timestamp when the package was last modified.
- name str
- The name of the resource
- package_
status str - The status of the package.
- provisioning_
state str - The provisioning state of the resource.
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- test_
types Sequence[str] - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation_
results Sequence[PackageValidation Result Response] - The validation results. There's validation on package when it's created or updated.
- azure
Api StringVersion - The Azure API version of the resource.
- gallery
Apps List<Property Map> - The list of gallery apps to test along with user application.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Enabled Boolean - Flag showing that whether the package is enabled. It doesn't schedule test for package which is not enabled.
- last
Modified StringTime - The UTC timestamp when the package was last modified.
- name String
- The name of the resource
- package
Status String - The status of the package.
- provisioning
State String - The provisioning state of the resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- test
Types List<String> - OOB, functional or flow driven. Mapped to the data in 'tests' property.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- validation
Results List<Property Map> - The validation results. There's validation on package when it's created or updated.
Supporting Types
Action, ActionArgs
- Install
- Install
- Launch
- Launch
- Close
- Close
- Uninstall
- Uninstall
- Custom
- Custom
- Flow
Driven Custom - FlowDrivenCustom
- Action
Install - Install
- Action
Launch - Launch
- Action
Close - Close
- Action
Uninstall - Uninstall
- Action
Custom - Custom
- Action
Flow Driven Custom - FlowDrivenCustom
- Install
- Install
- Launch
- Launch
- Close
- Close
- Uninstall
- Uninstall
- Custom
- Custom
- Flow
Driven Custom - FlowDrivenCustom
- Install
- Install
- Launch
- Launch
- Close
- Close
- Uninstall
- Uninstall
- Custom
- Custom
- Flow
Driven Custom - FlowDrivenCustom
- INSTALL
- Install
- LAUNCH
- Launch
- CLOSE
- Close
- UNINSTALL
- Uninstall
- CUSTOM
- Custom
- FLOW_DRIVEN_CUSTOM
- FlowDrivenCustom
- "Install"
- Install
- "Launch"
- Launch
- "Close"
- Close
- "Uninstall"
- Uninstall
- "Custom"
- Custom
- "Flow
Driven Custom" - FlowDrivenCustom
Architecture, ArchitectureArgs
- X86
- x86
- X64
- x64
- Arm64
- arm64
- Architecture
X86 - x86
- Architecture
X64 - x64
- Architecture
Arm64 - arm64
- X86
- x86
- X64
- x64
- Arm64
- arm64
- X86
- x86
- X64
- x64
- Arm64
- arm64
- X86
- x86
- X64
- x64
- ARM64
- arm64
- "x86"
- x86
- "x64"
- x64
- "arm64"
- arm64
Command, CommandArgs
- Action
string | Pulumi.
Azure Native. Test Base. Action - The action of the command.
- Content string
- The content of the command. The content depends on source type.
- Content
Type string | Pulumi.Azure Native. Test Base. Content Type - The type of command content.
- Name string
- The name of the command.
- Always
Run bool - Specifies whether to run the command even if a previous command is failed.
- Apply
Update boolBefore - Specifies whether to apply update before the command.
- Enroll
Intune boolBefore - Specifies whether to enroll Intune before the command.
- Install1PApp
Before bool - Specifies whether to install first party applications before running the command.
- Max
Run intTime - 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 boolInteractive - Specifies whether to run the command in interactive mode.
- Run
Elevated bool - Specifies whether to run the command as administrator.
- Action string | Action
- The action of the command.
- Content string
- The content of the command. The content depends on source type.
- Content
Type string | ContentType - The type of command content.
- Name string
- The name of the command.
- Always
Run bool - Specifies whether to run the command even if a previous command is failed.
- Apply
Update boolBefore - Specifies whether to apply update before the command.
- Enroll
Intune boolBefore - Specifies whether to enroll Intune before the command.
- Install1PApp
Before bool - Specifies whether to install first party applications before running the command.
- Max
Run intTime - 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 boolInteractive - Specifies whether to run the command in interactive mode.
- Run
Elevated bool - Specifies whether to run the command as administrator.
- action String | Action
- The action of the command.
- content String
- The content of the command. The content depends on source type.
- content
Type String | ContentType - The type of command content.
- name String
- The name of the command.
- always
Run Boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update BooleanBefore - Specifies whether to apply update before the command.
- enroll
Intune BooleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before Boolean - Specifies whether to install first party applications before running the command.
- max
Run IntegerTime - Specifies the max run time of the command.
- post
Upgrade Boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade Boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After Boolean - Specifies whether to restart the VM after the command executed.
- run
As BooleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated Boolean - Specifies whether to run the command as administrator.
- action string | Action
- The action of the command.
- content string
- The content of the command. The content depends on source type.
- content
Type string | ContentType - The type of command content.
- name string
- The name of the command.
- always
Run boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update booleanBefore - Specifies whether to apply update before the command.
- enroll
Intune booleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before boolean - Specifies whether to install first party applications before running the command.
- max
Run numberTime - Specifies the max run time of the command.
- post
Upgrade boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After boolean - Specifies whether to restart the VM after the command executed.
- run
As booleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated boolean - Specifies whether to run the command as administrator.
- action str | Action
- The action of the command.
- content str
- The content of the command. The content depends on source type.
- content_
type str | ContentType - The type of command content.
- name str
- The name of the command.
- always_
run bool - Specifies whether to run the command even if a previous command is failed.
- apply_
update_ boolbefore - Specifies whether to apply update before the command.
- enroll_
intune_ boolbefore - Specifies whether to enroll Intune before the command.
- install1_
p_ boolapp_ before - Specifies whether to install first party applications before running the command.
- max_
run_ inttime - 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_ boolinteractive - Specifies whether to run the command in interactive mode.
- run_
elevated bool - Specifies whether to run the command as administrator.
- action
String | "Install" | "Launch" | "Close" | "Uninstall" | "Custom" | "Flow
Driven Custom" - The action of the command.
- content String
- The content of the command. The content depends on source type.
- content
Type String | "Inline" | "File" | "Path" - The type of command content.
- name String
- The name of the command.
- always
Run Boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update BooleanBefore - Specifies whether to apply update before the command.
- enroll
Intune BooleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before Boolean - Specifies whether to install first party applications before running the command.
- max
Run NumberTime - Specifies the max run time of the command.
- post
Upgrade Boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade Boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After Boolean - Specifies whether to restart the VM after the command executed.
- run
As BooleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated Boolean - Specifies whether to run the command as administrator.
CommandResponse, CommandResponseArgs
- Action string
- The action of the command.
- Content string
- The content of the command. The content depends on source type.
- Content
Type string - The type of command content.
- Name string
- The name of the command.
- Always
Run bool - Specifies whether to run the command even if a previous command is failed.
- Apply
Update boolBefore - Specifies whether to apply update before the command.
- Enroll
Intune boolBefore - Specifies whether to enroll Intune before the command.
- Install1PApp
Before bool - Specifies whether to install first party applications before running the command.
- Max
Run intTime - 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 boolInteractive - Specifies whether to run the command in interactive mode.
- Run
Elevated bool - Specifies whether to run the command as administrator.
- Action string
- The action of the command.
- Content string
- The content of the command. The content depends on source type.
- Content
Type string - The type of command content.
- Name string
- The name of the command.
- Always
Run bool - Specifies whether to run the command even if a previous command is failed.
- Apply
Update boolBefore - Specifies whether to apply update before the command.
- Enroll
Intune boolBefore - Specifies whether to enroll Intune before the command.
- Install1PApp
Before bool - Specifies whether to install first party applications before running the command.
- Max
Run intTime - 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 boolInteractive - Specifies whether to run the command in interactive mode.
- Run
Elevated bool - Specifies whether to run the command as administrator.
- action String
- The action of the command.
- content String
- The content of the command. The content depends on source type.
- content
Type String - The type of command content.
- name String
- The name of the command.
- always
Run Boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update BooleanBefore - Specifies whether to apply update before the command.
- enroll
Intune BooleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before Boolean - Specifies whether to install first party applications before running the command.
- max
Run IntegerTime - Specifies the max run time of the command.
- post
Upgrade Boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade Boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After Boolean - Specifies whether to restart the VM after the command executed.
- run
As BooleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated Boolean - Specifies whether to run the command as administrator.
- action string
- The action of the command.
- content string
- The content of the command. The content depends on source type.
- content
Type string - The type of command content.
- name string
- The name of the command.
- always
Run boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update booleanBefore - Specifies whether to apply update before the command.
- enroll
Intune booleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before boolean - Specifies whether to install first party applications before running the command.
- max
Run numberTime - Specifies the max run time of the command.
- post
Upgrade boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After boolean - Specifies whether to restart the VM after the command executed.
- run
As booleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated boolean - Specifies whether to run the command as administrator.
- action str
- The action of the command.
- content str
- The content of the command. The content depends on source type.
- content_
type str - The type of command content.
- name str
- The name of the command.
- always_
run bool - Specifies whether to run the command even if a previous command is failed.
- apply_
update_ boolbefore - Specifies whether to apply update before the command.
- enroll_
intune_ boolbefore - Specifies whether to enroll Intune before the command.
- install1_
p_ boolapp_ before - Specifies whether to install first party applications before running the command.
- max_
run_ inttime - 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_ boolinteractive - Specifies whether to run the command in interactive mode.
- run_
elevated bool - Specifies whether to run the command as administrator.
- action String
- The action of the command.
- content String
- The content of the command. The content depends on source type.
- content
Type String - The type of command content.
- name String
- The name of the command.
- always
Run Boolean - Specifies whether to run the command even if a previous command is failed.
- apply
Update BooleanBefore - Specifies whether to apply update before the command.
- enroll
Intune BooleanBefore - Specifies whether to enroll Intune before the command.
- install1PApp
Before Boolean - Specifies whether to install first party applications before running the command.
- max
Run NumberTime - Specifies the max run time of the command.
- post
Upgrade Boolean - Specifies whether the command is assigned to be executed after in-place upgrade.
- pre
Upgrade Boolean - Specifies whether the command is assigned to be executed before in-place upgrade.
- restart
After Boolean - Specifies whether to restart the VM after the command executed.
- run
As BooleanInteractive - Specifies whether to run the command in interactive mode.
- run
Elevated Boolean - Specifies whether to run the command as administrator.
ContentType, ContentTypeArgs
- Inline
- Inline
- File
- File
- Path
- Path
- Content
Type Inline - Inline
- Content
Type File - File
- Content
Type Path - Path
- Inline
- Inline
- File
- File
- Path
- Path
- Inline
- Inline
- File
- File
- Path
- Path
- INLINE
- Inline
- FILE
- File
- PATH
- Path
- "Inline"
- Inline
- "File"
- File
- "Path"
- Path
EnrolledIntuneApp, EnrolledIntuneAppArgs
- App
Id string - Intune app id.
- App
Name string - Intune app name.
- Expected
Installation stringPath - Intune app expected installation path.
- App
Id string - Intune app id.
- App
Name string - Intune app name.
- Expected
Installation stringPath - Intune app expected installation path.
- app
Id String - Intune app id.
- app
Name String - Intune app name.
- expected
Installation StringPath - Intune app expected installation path.
- app
Id string - Intune app id.
- app
Name string - Intune app name.
- expected
Installation stringPath - Intune app expected installation path.
- app_
id str - Intune app id.
- app_
name str - Intune app name.
- expected_
installation_ strpath - Intune app expected installation path.
- app
Id String - Intune app id.
- app
Name String - Intune app name.
- expected
Installation StringPath - Intune app expected installation path.
EnrolledIntuneAppResponse, EnrolledIntuneAppResponseArgs
- App
Id string - Intune app id.
- App
Name string - Intune app name.
- Expected
Installation stringPath - Intune app expected installation path.
- App
Id string - Intune app id.
- App
Name string - Intune app name.
- Expected
Installation stringPath - Intune app expected installation path.
- app
Id String - Intune app id.
- app
Name String - Intune app name.
- expected
Installation StringPath - Intune app expected installation path.
- app
Id string - Intune app id.
- app
Name string - Intune app name.
- expected
Installation stringPath - Intune app expected installation path.
- app_
id str - Intune app id.
- app_
name str - Intune app name.
- expected_
installation_ strpath - Intune app expected installation path.
- app
Id String - Intune app id.
- app
Name String - Intune app name.
- expected
Installation StringPath - Intune app expected installation path.
FirstPartyAppDefinition, FirstPartyAppDefinitionArgs
- Architecture
string | Pulumi.
Azure Native. Test Base. 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.
- Interop
Execution string | Pulumi.Mode Azure Native. Test Base. Interop Execution Mode - 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.
- Interop
Execution string | InteropMode Execution Mode - 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.
- interop
Execution String | InteropMode Execution Mode - 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.
- interop
Execution string | InteropMode Execution Mode - 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_ str | Interopmode Execution Mode - 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.
- interop
Execution String | "firstMode Party App With Tests" | "first Party App" - 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.
- Interop
Execution stringMode - 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.
- Interop
Execution stringMode - 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.
- interop
Execution StringMode - 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.
- interop
Execution stringMode - 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_ strmode - 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.
- interop
Execution StringMode - Specifies how the first party applications should be inter-operated with user's application.
- name String
- The media name of a first party application of a Test Base Account.
- ring String
- The ring info of a first party application of a Test Base Account.
GalleryAppDefinitionResponse, GalleryAppDefinitionResponseArgs
- Sku
Id string - The SKU id of the gallery application.
- Is
Consented bool - Whether the disclaimer of the gallery application is accepted.
- Sku
Id string - The SKU id of the gallery application.
- Is
Consented bool - Whether the disclaimer of the gallery application is accepted.
- sku
Id String - The SKU id of the gallery application.
- is
Consented Boolean - Whether the disclaimer of the gallery application is accepted.
- sku
Id string - The SKU id of the gallery application.
- is
Consented boolean - Whether the disclaimer of the gallery application is accepted.
- sku_
id str - The SKU id of the gallery application.
- is_
consented bool - Whether the disclaimer of the gallery application is accepted.
- sku
Id String - The SKU id of the gallery application.
- is
Consented Boolean - Whether the disclaimer of the gallery application is accepted.
InplaceUpgradeOSInfo, InplaceUpgradeOSInfoArgs
- Baseline
OS Pulumi.Azure Native. Test Base. Inputs. Os Properties - Specifies the baseline os for in-place upgrade tests.
- Target
OS string - Specifies the target os for in-place upgrade tests.
- Baseline
OS OsProperties - Specifies the baseline os for in-place upgrade tests.
- Target
OS string - Specifies the target os for in-place upgrade tests.
- baseline
OS OsProperties - Specifies the baseline os for in-place upgrade tests.
- target
OS String - Specifies the target os for in-place upgrade tests.
- baseline
OS OsProperties - Specifies the baseline os for in-place upgrade tests.
- target
OS 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.
- baseline
OS Property Map - Specifies the baseline os for in-place upgrade tests.
- target
OS String - Specifies the target os for in-place upgrade tests.
InplaceUpgradeOSInfoResponse, InplaceUpgradeOSInfoResponseArgs
- Baseline
OS Pulumi.Azure Native. Test Base. Inputs. Os Properties Response - Specifies the baseline os for in-place upgrade tests.
- Target
OS string - Specifies the target os for in-place upgrade tests.
- Baseline
OS OsProperties Response - Specifies the baseline os for in-place upgrade tests.
- Target
OS string - Specifies the target os for in-place upgrade tests.
- baseline
OS OsProperties Response - Specifies the baseline os for in-place upgrade tests.
- target
OS String - Specifies the target os for in-place upgrade tests.
- baseline
OS OsProperties Response - Specifies the baseline os for in-place upgrade tests.
- target
OS string - Specifies the target os for in-place upgrade tests.
- baseline_
os OsProperties Response - Specifies the baseline os for in-place upgrade tests.
- target_
os str - Specifies the target os for in-place upgrade tests.
- baseline
OS Property Map - Specifies the baseline os for in-place upgrade tests.
- target
OS String - Specifies the target os for in-place upgrade tests.
InteropExecutionMode, InteropExecutionModeArgs
- 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.
- Interop
Execution Mode 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.
- Interop
Execution Mode First Party App - 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.
- 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.
- 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.
- "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.
IntuneEnrollmentMetadata, IntuneEnrollmentMetadataArgs
- App
List List<Pulumi.Azure Native. Test Base. Inputs. Enrolled Intune App> - The enrolled Intune apps.
- Credential
Id string - The id of the Intune enrollment credential.
- Expected
Deployment intDuration In Minute - The expected duration of Intune applications and policies deployment.
- App
List []EnrolledIntune App - The enrolled Intune apps.
- Credential
Id string - The id of the Intune enrollment credential.
- Expected
Deployment intDuration In Minute - The expected duration of Intune applications and policies deployment.
- app
List List<EnrolledIntune App> - The enrolled Intune apps.
- credential
Id String - The id of the Intune enrollment credential.
- expected
Deployment IntegerDuration In Minute - The expected duration of Intune applications and policies deployment.
- app
List EnrolledIntune App[] - The enrolled Intune apps.
- credential
Id string - The id of the Intune enrollment credential.
- expected
Deployment numberDuration In Minute - The expected duration of Intune applications and policies deployment.
- app_
list Sequence[EnrolledIntune App] - The enrolled Intune apps.
- credential_
id str - The id of the Intune enrollment credential.
- expected_
deployment_ intduration_ in_ minute - The expected duration of Intune applications and policies deployment.
- app
List List<Property Map> - The enrolled Intune apps.
- credential
Id String - The id of the Intune enrollment credential.
- expected
Deployment NumberDuration In Minute - The expected duration of Intune applications and policies deployment.
IntuneEnrollmentMetadataResponse, IntuneEnrollmentMetadataResponseArgs
- App
List List<Pulumi.Azure Native. Test Base. Inputs. Enrolled Intune App Response> - The enrolled Intune apps.
- Credential
Id string - The id of the Intune enrollment credential.
- Expected
Deployment intDuration In Minute - The expected duration of Intune applications and policies deployment.
- App
List []EnrolledIntune App Response - The enrolled Intune apps.
- Credential
Id string - The id of the Intune enrollment credential.
- Expected
Deployment intDuration In Minute - The expected duration of Intune applications and policies deployment.
- app
List List<EnrolledIntune App Response> - The enrolled Intune apps.
- credential
Id String - The id of the Intune enrollment credential.
- expected
Deployment IntegerDuration In Minute - The expected duration of Intune applications and policies deployment.
- app
List EnrolledIntune App Response[] - The enrolled Intune apps.
- credential
Id string - The id of the Intune enrollment credential.
- expected
Deployment numberDuration In Minute - The expected duration of Intune applications and policies deployment.
- app_
list Sequence[EnrolledIntune App Response] - The enrolled Intune apps.
- credential_
id str - The id of the Intune enrollment credential.
- expected_
deployment_ intduration_ in_ minute - The expected duration of Intune applications and policies deployment.
- app
List List<Property Map> - The enrolled Intune apps.
- credential
Id String - The id of the Intune enrollment credential.
- expected
Deployment NumberDuration In Minute - The expected duration of Intune applications and policies deployment.
OsProperties, OsPropertiesArgs
- Custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- Os
Name string - The name of the OS.
- Release
Properties Pulumi.Azure Native. Test Base. Inputs. Release Properties - The properties of the OS release.
- Custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- Os
Name string - The name of the OS.
- Release
Properties ReleaseProperties - The properties of the OS release.
- custom
Image StringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name String - The name of the OS.
- release
Properties ReleaseProperties - The properties of the OS release.
- custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name string - The name of the OS.
- release
Properties ReleaseProperties - The properties of the OS release.
- custom_
image_ strid - 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.
- custom
Image StringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name String - The name of the OS.
- release
Properties Property Map - The properties of the OS release.
OsPropertiesResponse, OsPropertiesResponseArgs
- Custom
Image stringDisplay Name - The name of the custom image resource.
- Custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- Os
Name string - The name of the OS.
- Release
Properties Pulumi.Azure Native. Test Base. Inputs. Release Properties Response - The properties of the OS release.
- Custom
Image stringDisplay Name - The name of the custom image resource.
- Custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- Os
Name string - The name of the OS.
- Release
Properties ReleaseProperties Response - The properties of the OS release.
- custom
Image StringDisplay Name - The name of the custom image resource.
- custom
Image StringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name String - The name of the OS.
- release
Properties ReleaseProperties Response - The properties of the OS release.
- custom
Image stringDisplay Name - The name of the custom image resource.
- custom
Image stringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name string - The name of the OS.
- release
Properties ReleaseProperties Response - The properties of the OS release.
- custom_
image_ strdisplay_ name - The name of the custom image resource.
- custom_
image_ strid - Specify the referenced Test Base Custom Image Id if available.
- os_
name str - The name of the OS.
- release_
properties ReleaseProperties Response - The properties of the OS release.
- custom
Image StringDisplay Name - The name of the custom image resource.
- custom
Image StringId - Specify the referenced Test Base Custom Image Id if available.
- os
Name String - The name of the OS.
- release
Properties Property Map - The properties of the OS release.
PackageValidationResultResponse, PackageValidationResultResponseArgs
- Errors List<string>
- Error information.
- Is
Valid bool - Indicates whether the package passed the validation.
- Validation
Name string - Validation name.
- Errors []string
- Error information.
- Is
Valid bool - Indicates whether the package passed the validation.
- Validation
Name string - Validation name.
- errors List<String>
- Error information.
- is
Valid Boolean - Indicates whether the package passed the validation.
- validation
Name String - Validation name.
- errors string[]
- Error information.
- is
Valid boolean - Indicates whether the package passed the validation.
- validation
Name string - Validation name.
- errors Sequence[str]
- Error information.
- is_
valid bool - Indicates whether the package passed the validation.
- validation_
name str - Validation name.
- errors List<String>
- Error information.
- is
Valid Boolean - Indicates whether the package passed the validation.
- validation
Name String - Validation name.
ReleaseProperties, ReleasePropertiesArgs
- Build
Number string - The build number of the OS release.
- Build
Revision string - The build revision of the OS release.
- Release
Name string - The name of the OS release.
- Release
Version stringDate - The release version date of the OS release.
- Build
Number string - The build number of the OS release.
- Build
Revision string - The build revision of the OS release.
- Release
Name string - The name of the OS release.
- Release
Version stringDate - The release version date of the OS release.
- build
Number String - The build number of the OS release.
- build
Revision String - The build revision of the OS release.
- release
Name String - The name of the OS release.
- release
Version StringDate - The release version date of the OS release.
- build
Number string - The build number of the OS release.
- build
Revision string - The build revision of the OS release.
- release
Name string - The name of the OS release.
- release
Version stringDate - 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_ strdate - The release version date of the OS release.
- build
Number String - The build number of the OS release.
- build
Revision String - The build revision of the OS release.
- release
Name String - The name of the OS release.
- release
Version StringDate - The release version date of the OS release.
ReleasePropertiesResponse, ReleasePropertiesResponseArgs
- Build
Number string - The build number of the OS release.
- Build
Revision string - The build revision of the OS release.
- Release
Name string - The name of the OS release.
- Release
Version stringDate - The release version date of the OS release.
- Build
Number string - The build number of the OS release.
- Build
Revision string - The build revision of the OS release.
- Release
Name string - The name of the OS release.
- Release
Version stringDate - The release version date of the OS release.
- build
Number String - The build number of the OS release.
- build
Revision String - The build revision of the OS release.
- release
Name String - The name of the OS release.
- release
Version StringDate - The release version date of the OS release.
- build
Number string - The build number of the OS release.
- build
Revision string - The build revision of the OS release.
- release
Name string - The name of the OS release.
- release
Version stringDate - 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_ strdate - The release version date of the OS release.
- build
Number String - The build number of the OS release.
- build
Revision String - The build revision of the OS release.
- release
Name String - The name of the OS release.
- release
Version StringDate - The release version date of the OS release.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
TargetOSInfo, TargetOSInfoArgs
- Os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- Baseline
OSs List<string> - Specifies the baseline OSs to be tested.
- Insider
Channel List<string>Ids - Insider Channel Ids. Only used for feature update.
- Target
OSImage List<string>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- Target
OSs List<string> - Specifies the target OSs to be tested.
- Os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- Baseline
OSs []string - Specifies the baseline OSs to be tested.
- Insider
Channel []stringIds - Insider Channel Ids. Only used for feature update.
- Target
OSImage []stringIds - Specifies the ids of the target OSs from Custom Images to be tested.
- Target
OSs []string - Specifies the target OSs to be tested.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs List<String> - Specifies the baseline OSs to be tested.
- insider
Channel List<String>Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage List<String>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs List<String> - Specifies the target OSs to be tested.
- os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs string[] - Specifies the baseline OSs to be tested.
- insider
Channel string[]Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage string[]Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs string[] - Specifies the target OSs to be tested.
- os_
update_ strtype - 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_ Sequence[str]ids - Insider Channel Ids. Only used for feature update.
- target_
os_ Sequence[str]image_ ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target_
oss Sequence[str] - Specifies the target OSs to be tested.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs List<String> - Specifies the baseline OSs to be tested.
- insider
Channel List<String>Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage List<String>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs List<String> - Specifies the target OSs to be tested.
TargetOSInfoResponse, TargetOSInfoResponseArgs
- Os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- Baseline
OSs List<string> - Specifies the baseline OSs to be tested.
- Insider
Channel List<string>Ids - Insider Channel Ids. Only used for feature update.
- Target
OSImage List<string>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- Target
OSs List<string> - Specifies the target OSs to be tested.
- Os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- Baseline
OSs []string - Specifies the baseline OSs to be tested.
- Insider
Channel []stringIds - Insider Channel Ids. Only used for feature update.
- Target
OSImage []stringIds - Specifies the ids of the target OSs from Custom Images to be tested.
- Target
OSs []string - Specifies the target OSs to be tested.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs List<String> - Specifies the baseline OSs to be tested.
- insider
Channel List<String>Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage List<String>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs List<String> - Specifies the target OSs to be tested.
- os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs string[] - Specifies the baseline OSs to be tested.
- insider
Channel string[]Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage string[]Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs string[] - Specifies the target OSs to be tested.
- os_
update_ strtype - 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_ Sequence[str]ids - Insider Channel Ids. Only used for feature update.
- target_
os_ Sequence[str]image_ ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target_
oss Sequence[str] - Specifies the target OSs to be tested.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- baseline
OSs List<String> - Specifies the baseline OSs to be tested.
- insider
Channel List<String>Ids - Insider Channel Ids. Only used for feature update.
- target
OSImage List<String>Ids - Specifies the ids of the target OSs from Custom Images to be tested.
- target
OSs List<String> - Specifies the target OSs to be tested.
Test, TestArgs
- Commands
List<Pulumi.
Azure Native. Test Base. Inputs. Command> - The commands used in the test.
- Test
Type string | Pulumi.Azure Native. Test Base. Test Type - The type of the test.
- Is
Active bool - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands List<Command>
- The commands used in the test.
- test
Type String | TestType - The type of the test.
- is
Active Boolean - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands Sequence[Command]
- The commands used in the test.
- test_
type str | TestType - The type of the test.
- is_
active bool - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands List<Property Map>
- The commands used in the test.
- test
Type String | "OutOf Box Test" | "Functional Test" | "Flow Driven Test" - The type of the test.
- is
Active Boolean - Indicates if this test is active.It doesn't schedule test for not active Test.
TestResponse, TestResponseArgs
- Commands
List<Pulumi.
Azure Native. Test Base. Inputs. Command Response> - The commands used in the test.
- Test
Type string - The type of the test.
- Validation
Result stringId - Resource identifier of the validation test result.
- Validation
Run stringStatus - 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
[]Command
Response - The commands used in the test.
- Test
Type string - The type of the test.
- Validation
Result stringId - Resource identifier of the validation test result.
- Validation
Run stringStatus - The status of the validation run of the package.
- Is
Active bool - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands
List<Command
Response> - The commands used in the test.
- test
Type String - The type of the test.
- validation
Result StringId - Resource identifier of the validation test result.
- validation
Run StringStatus - The status of the validation run of the package.
- is
Active Boolean - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands
Command
Response[] - The commands used in the test.
- test
Type string - The type of the test.
- validation
Result stringId - Resource identifier of the validation test result.
- validation
Run stringStatus - The status of the validation run of the package.
- is
Active boolean - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands
Sequence[Command
Response] - The commands used in the test.
- test_
type str - The type of the test.
- validation_
result_ strid - Resource identifier of the validation test result.
- validation_
run_ strstatus - The status of the validation run of the package.
- is_
active bool - Indicates if this test is active.It doesn't schedule test for not active Test.
- commands List<Property Map>
- The commands used in the test.
- test
Type String - The type of the test.
- validation
Result StringId - Resource identifier of the validation test result.
- validation
Run StringStatus - The status of the validation run of the package.
- is
Active Boolean - Indicates if this test is active.It doesn't schedule test for not active Test.
TestType, TestTypeArgs
- Out
Of Box Test - OutOfBoxTest
- Functional
Test - FunctionalTest
- Flow
Driven Test - FlowDrivenTest
- Test
Type Out Of Box Test - OutOfBoxTest
- Test
Type Functional Test - FunctionalTest
- Test
Type Flow Driven Test - FlowDrivenTest
- Out
Of Box Test - OutOfBoxTest
- Functional
Test - FunctionalTest
- Flow
Driven Test - FlowDrivenTest
- Out
Of Box Test - OutOfBoxTest
- Functional
Test - FunctionalTest
- Flow
Driven Test - FlowDrivenTest
- OUT_OF_BOX_TEST
- OutOfBoxTest
- FUNCTIONAL_TEST
- FunctionalTest
- FLOW_DRIVEN_TEST
- FlowDrivenTest
- "Out
Of Box Test" - OutOfBoxTest
- "Functional
Test" - FunctionalTest
- "Flow
Driven Test" - FlowDrivenTest
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:testbase:Package contoso-package2 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.TestBase/testBaseAccounts/{testBaseAccountName}/packages/{packageName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0