azure-native.testbase.Package
Explore with Pulumi AI
The Test Base Package resource. Azure REST API version: 2022-04-01-preview. Prior API version in Azure Native 1.x: 2022-04-01-preview.
Other available API versions: 2023-11-01-preview.
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",
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,
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,
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,
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,
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/v2"
"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"),
FlightingRing: pulumi.String("Insider Beta Channel"),
Location: pulumi.String("westus"),
PackageName: pulumi.String("contoso-package2"),
ResourceGroupName: pulumi.String("contoso-rg1"),
Tags: nil,
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),
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),
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),
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),
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.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")
.flightingRing("Insider Beta Channel")
.location("westus")
.packageName("contoso-package2")
.resourceGroupName("contoso-rg1")
.tags()
.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")
.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")
.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")
.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")
.maxRunTime(1800)
.name("Uninstall")
.restartAfter(false)
.runAsInteractive(true)
.runElevated(true)
.build())
.isActive(true)
.testType("OutOfBoxTest")
.build())
.version("1.0.0")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
package = azure_native.testbase.Package("package",
application_name="contoso-package2",
blob_path="storageAccountPath/package.zip",
flighting_ring="Insider Beta Channel",
location="westus",
package_name="contoso-package2",
resource_group_name="contoso-rg1",
tags={},
target_os_list=[azure_native.testbase.TargetOSInfoArgs(
os_update_type="Security updates",
target_oss=[
"Windows 10 2004",
"Windows 10 1903",
],
)],
test_base_account_name="contoso-testBaseAccount1",
tests=[azure_native.testbase.TestArgs(
commands=[
azure_native.testbase.CommandArgs(
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,
max_run_time=1800,
name="Install",
restart_after=True,
run_as_interactive=True,
run_elevated=True,
),
azure_native.testbase.CommandArgs(
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,
max_run_time=1800,
name="Launch",
restart_after=False,
run_as_interactive=True,
run_elevated=True,
),
azure_native.testbase.CommandArgs(
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,
max_run_time=1800,
name="Close",
restart_after=False,
run_as_interactive=True,
run_elevated=True,
),
azure_native.testbase.CommandArgs(
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,
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")
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",
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,
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,
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,
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,
maxRunTime: 1800,
name: "Uninstall",
restartAfter: false,
runAsInteractive: true,
runElevated: true,
},
],
isActive: true,
testType: azure_native.testbase.TestType.OutOfBoxTest,
}],
version: "1.0.0",
});
resources:
package:
type: azure-native:testbase:Package
properties:
applicationName: contoso-package2
blobPath: storageAccountPath/package.zip
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
maxRunTime: 1800
name: Install
restartAfter: true
runAsInteractive: true
runElevated: true
- action: Launch
alwaysRun: false
applyUpdateBefore: true
content: app/scripts/launch/job.ps1
contentType: Path
maxRunTime: 1800
name: Launch
restartAfter: false
runAsInteractive: true
runElevated: true
- action: Close
alwaysRun: false
applyUpdateBefore: false
content: app/scripts/close/job.ps1
contentType: Path
maxRunTime: 1800
name: Close
restartAfter: false
runAsInteractive: true
runElevated: true
- action: Uninstall
alwaysRun: true
applyUpdateBefore: false
content: app/scripts/uninstall/job.ps1
contentType: Path
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,
application_name: Optional[str] = None,
blob_path: Optional[str] = None,
flighting_ring: Optional[str] = None,
resource_group_name: Optional[str] = None,
target_os_list: Optional[Sequence[TargetOSInfoArgs]] = None,
test_base_account_name: Optional[str] = None,
tests: Optional[Sequence[TestArgs]] = None,
version: Optional[str] = None,
location: Optional[str] = None,
package_name: Optional[str] = None,
tags: Optional[Mapping[str, 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()
{
ApplicationName = "string",
BlobPath = "string",
FlightingRing = "string",
ResourceGroupName = "string",
TargetOSList = new[]
{
new AzureNative.TestBase.Inputs.TargetOSInfoArgs
{
OsUpdateType = "string",
BaselineOSs = new[]
{
"string",
},
InsiderChannelIds = new[]
{
"string",
},
TargetOSImageIds = new[]
{
"string",
},
TargetOSs = new[]
{
"string",
},
},
},
TestBaseAccountName = "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,
},
},
Version = "string",
Location = "string",
PackageName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := testbase.NewPackage(ctx, "azure-nativePackageResource", &testbase.PackageArgs{
ApplicationName: pulumi.String("string"),
BlobPath: pulumi.String("string"),
FlightingRing: pulumi.String("string"),
ResourceGroupName: 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"),
},
},
},
TestBaseAccountName: 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),
},
},
Version: pulumi.String("string"),
Location: pulumi.String("string"),
PackageName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var azure_nativePackageResource = new Package("azure-nativePackageResource", PackageArgs.builder()
.applicationName("string")
.blobPath("string")
.flightingRing("string")
.resourceGroupName("string")
.targetOSList(TargetOSInfoArgs.builder()
.osUpdateType("string")
.baselineOSs("string")
.insiderChannelIds("string")
.targetOSImageIds("string")
.targetOSs("string")
.build())
.testBaseAccountName("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())
.version("string")
.location("string")
.packageName("string")
.tags(Map.of("string", "string"))
.build());
azure_native_package_resource = azure_native.testbase.Package("azure-nativePackageResource",
application_name="string",
blob_path="string",
flighting_ring="string",
resource_group_name="string",
target_os_list=[azure_native.testbase.TargetOSInfoArgs(
os_update_type="string",
baseline_oss=["string"],
insider_channel_ids=["string"],
target_os_image_ids=["string"],
target_oss=["string"],
)],
test_base_account_name="string",
tests=[azure_native.testbase.TestArgs(
commands=[azure_native.testbase.CommandArgs(
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,
)],
version="string",
location="string",
package_name="string",
tags={
"string": "string",
})
const azure_nativePackageResource = new azure_native.testbase.Package("azure-nativePackageResource", {
applicationName: "string",
blobPath: "string",
flightingRing: "string",
resourceGroupName: "string",
targetOSList: [{
osUpdateType: "string",
baselineOSs: ["string"],
insiderChannelIds: ["string"],
targetOSImageIds: ["string"],
targetOSs: ["string"],
}],
testBaseAccountName: "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,
}],
version: "string",
location: "string",
packageName: "string",
tags: {
string: "string",
},
});
type: azure-native:testbase:Package
properties:
applicationName: string
blobPath: string
flightingRing: string
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
The Package resource accepts the following input properties:
- Application
Name string - Application name
- Blob
Path string - The file path of the package.
- Flighting
Ring string - The flighting ring for feature update.
- Resource
Group stringName - The name of the resource group that contains the resource.
- Target
OSList List<Pulumi.Azure Native. Test Base. Inputs. Target OSInfo> - Specifies the target OSs of specific OS Update types.
- Test
Base stringAccount Name - The resource name of the Test Base Account.
- Tests
List<Pulumi.
Azure Native. Test Base. Inputs. Test> - The detailed test information.
- Version string
- Application version
- Location string
- The geo-location where the resource lives
- Package
Name string - The resource name of the Test Base Package.
- Dictionary<string, string>
- The tags of the resource.
- Application
Name string - Application name
- Blob
Path string - The file path of the package.
- Flighting
Ring string - The flighting ring for feature update.
- Resource
Group stringName - The name of the resource group that contains the resource.
- Target
OSList []TargetOSInfo Args - Specifies the target OSs of specific OS Update types.
- Test
Base stringAccount Name - The resource name of the Test Base Account.
- Tests
[]Test
Args - The detailed test information.
- Version string
- Application version
- Location string
- The geo-location where the resource lives
- Package
Name string - The resource name of the Test Base Package.
- map[string]string
- The tags of the resource.
- application
Name String - Application name
- blob
Path String - The file path of the package.
- flighting
Ring String - The flighting ring for feature update.
- resource
Group StringName - The name of the resource group that contains the resource.
- target
OSList List<TargetOSInfo> - Specifies the target OSs of specific OS Update types.
- test
Base StringAccount Name - The resource name of the Test Base Account.
- tests List<Test>
- The detailed test information.
- version String
- Application version
- location String
- The geo-location where the resource lives
- package
Name String - The resource name of the Test Base Package.
- Map<String,String>
- The tags of the resource.
- application
Name string - Application name
- blob
Path string - The file path of the package.
- flighting
Ring string - The flighting ring for feature update.
- resource
Group stringName - The name of the resource group that contains the resource.
- target
OSList TargetOSInfo[] - Specifies the target OSs of specific OS Update types.
- test
Base stringAccount Name - The resource name of the Test Base Account.
- tests Test[]
- The detailed test information.
- version string
- Application version
- location string
- The geo-location where the resource lives
- package
Name string - The resource name of the Test Base Package.
- {[key: string]: string}
- The tags of the resource.
- application_
name str - Application name
- blob_
path str - The file path of the package.
- flighting_
ring str - The flighting ring for feature update.
- resource_
group_ strname - The name of the resource group that contains the resource.
- target_
os_ Sequence[Targetlist OSInfo Args] - Specifies the target OSs of specific OS Update types.
- test_
base_ straccount_ name - The resource name of the Test Base Account.
- tests
Sequence[Test
Args] - The detailed test information.
- version str
- Application version
- location str
- The geo-location where the resource lives
- package_
name str - The resource name of the Test Base Package.
- Mapping[str, str]
- The tags of the resource.
- application
Name String - Application name
- blob
Path String - The file path of the package.
- flighting
Ring String - The flighting ring for feature update.
- resource
Group StringName - The name of the resource group that contains the resource.
- target
OSList List<Property Map> - Specifies the target OSs of specific OS Update types.
- test
Base StringAccount Name - The resource name of the Test Base Account.
- tests List<Property Map>
- The detailed test information.
- version String
- Application version
- location String
- The geo-location where the resource lives
- package
Name String - The resource name of the Test Base Package.
- Map<String>
- The tags of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Package resource produces the following output properties:
- Etag string
- Resource Etag.
- 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
- Resource name.
- 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 - The system metadata relating to this resource
- Test
Types List<string> - OOB, functional or both. Mapped to the data in 'tests' property.
- Type string
- Resource type.
- 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.
- Etag string
- Resource Etag.
- 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
- Resource name.
- Package
Status string - The status of the package.
- Provisioning
State string - The provisioning state of the resource.
- System
Data SystemData Response - The system metadata relating to this resource
- Test
Types []string - OOB, functional or both. Mapped to the data in 'tests' property.
- Type string
- Resource type.
- Validation
Results []PackageValidation Result Response - The validation results. There's validation on package when it's created or updated.
- etag String
- Resource Etag.
- 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
- Resource name.
- package
Status String - The status of the package.
- provisioning
State String - The provisioning state of the resource.
- system
Data SystemData Response - The system metadata relating to this resource
- test
Types List<String> - OOB, functional or both. Mapped to the data in 'tests' property.
- type String
- Resource type.
- validation
Results List<PackageValidation Result Response> - The validation results. There's validation on package when it's created or updated.
- etag string
- Resource Etag.
- 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
- Resource name.
- package
Status string - The status of the package.
- provisioning
State string - The provisioning state of the resource.
- system
Data SystemData Response - The system metadata relating to this resource
- test
Types string[] - OOB, functional or both. Mapped to the data in 'tests' property.
- type string
- Resource type.
- validation
Results PackageValidation Result Response[] - The validation results. There's validation on package when it's created or updated.
- etag str
- Resource Etag.
- 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
- Resource name.
- package_
status str - The status of the package.
- provisioning_
state str - The provisioning state of the resource.
- system_
data SystemData Response - The system metadata relating to this resource
- test_
types Sequence[str] - OOB, functional or both. Mapped to the data in 'tests' property.
- type str
- Resource type.
- validation_
results Sequence[PackageValidation Result Response] - The validation results. There's validation on package when it's created or updated.
- etag String
- Resource Etag.
- 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
- Resource name.
- package
Status String - The status of the package.
- provisioning
State String - The provisioning state of the resource.
- system
Data Property Map - The system metadata relating to this resource
- test
Types List<String> - OOB, functional or both. Mapped to the data in 'tests' property.
- type String
- Resource type.
- 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
- Action
Install - Install
- Action
Launch - Launch
- Action
Close - Close
- Action
Uninstall - Uninstall
- Action
Custom - Custom
- Install
- Install
- Launch
- Launch
- Close
- Close
- Uninstall
- Uninstall
- Custom
- Custom
- Install
- Install
- Launch
- Launch
- Close
- Close
- Uninstall
- Uninstall
- Custom
- Custom
- INSTALL
- Install
- LAUNCH
- Launch
- CLOSE
- Close
- UNINSTALL
- Uninstall
- CUSTOM
- Custom
- "Install"
- Install
- "Launch"
- Launch
- "Close"
- Close
- "Uninstall"
- Uninstall
- "Custom"
- Custom
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"
- 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
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.
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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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 type of identity that last modified the resource.
- 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'.
- Target
OSs List<string> - Specifies the target OSs to be tested.
- 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.
- Os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- Target
OSs []string - Specifies the target OSs to be tested.
- 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.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- target
OSs List<String> - Specifies the target OSs to be tested.
- 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.
- os
Update stringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- target
OSs string[] - Specifies the target OSs to be tested.
- 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.
- os_
update_ strtype - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- target_
oss Sequence[str] - Specifies the target OSs to be tested.
- 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.
- os
Update StringType - Specifies the OS update type to test against, e.g., 'Security updates' or 'Feature updates'.
- target
OSs List<String> - Specifies the target OSs to be tested.
- 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.
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" - 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
- Test
Type Out Of Box Test - OutOfBoxTest
- Test
Type Functional Test - FunctionalTest
- Out
Of Box Test - OutOfBoxTest
- Functional
Test - FunctionalTest
- Out
Of Box Test - OutOfBoxTest
- Functional
Test - FunctionalTest
- OUT_OF_BOX_TEST
- OutOfBoxTest
- FUNCTIONAL_TEST
- FunctionalTest
- "Out
Of Box Test" - OutOfBoxTest
- "Functional
Test" - FunctionalTest
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