azure-native.migrate.WorkloadInstance
Explore with Pulumi AI
Workload instance model. Azure REST API version: 2022-05-01-preview.
Example Usage
WorkloadInstance_Create_MaximumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workloadInstance = new AzureNative.Migrate.WorkloadInstance("workloadInstance", new()
{
ModernizeProjectName = "mx8",
Properties = new AzureNative.Migrate.Inputs.WorkloadInstanceModelPropertiesArgs
{
CustomProperties =
{
{ "instanceType", "IISWorkload" },
{ "webAppArmId", "xseseqsrzdiga" },
{ "webAppSiteName", "mirgzmy" },
},
DisplayName = "juoorbubchvk",
MasterSiteName = "ubks",
MigrateAgentId = "aqgzsxqbk",
Name = "wonkuhgsafzviuwqerzdmme",
SourceName = "weuxcqzwpeyzsjhdgqflhxlwjhbz",
SourcePlatform = "eh",
},
ResourceGroupName = "rgmigrateEngine",
Tags =
{
{ "key2836", "biqip" },
},
WorkloadInstanceName = "m",
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewWorkloadInstance(ctx, "workloadInstance", &migrate.WorkloadInstanceArgs{
ModernizeProjectName: pulumi.String("mx8"),
Properties: &migrate.WorkloadInstanceModelPropertiesArgs{
CustomProperties: interface{}{
InstanceType: pulumi.String("IISWorkload"),
WebAppArmId: pulumi.String("xseseqsrzdiga"),
WebAppSiteName: pulumi.String("mirgzmy"),
},
DisplayName: pulumi.String("juoorbubchvk"),
MasterSiteName: pulumi.String("ubks"),
MigrateAgentId: pulumi.String("aqgzsxqbk"),
Name: pulumi.String("wonkuhgsafzviuwqerzdmme"),
SourceName: pulumi.String("weuxcqzwpeyzsjhdgqflhxlwjhbz"),
SourcePlatform: pulumi.String("eh"),
},
ResourceGroupName: pulumi.String("rgmigrateEngine"),
Tags: pulumi.StringMap{
"key2836": pulumi.String("biqip"),
},
WorkloadInstanceName: pulumi.String("m"),
})
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.migrate.WorkloadInstance;
import com.pulumi.azurenative.migrate.WorkloadInstanceArgs;
import com.pulumi.azurenative.migrate.inputs.WorkloadInstanceModelPropertiesArgs;
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 workloadInstance = new WorkloadInstance("workloadInstance", WorkloadInstanceArgs.builder()
.modernizeProjectName("mx8")
.properties(WorkloadInstanceModelPropertiesArgs.builder()
.customProperties(IISWorkloadInstanceModelCustomPropertiesArgs.builder()
.instanceType("IISWorkload")
.webAppArmId("xseseqsrzdiga")
.webAppSiteName("mirgzmy")
.build())
.displayName("juoorbubchvk")
.masterSiteName("ubks")
.migrateAgentId("aqgzsxqbk")
.name("wonkuhgsafzviuwqerzdmme")
.sourceName("weuxcqzwpeyzsjhdgqflhxlwjhbz")
.sourcePlatform("eh")
.build())
.resourceGroupName("rgmigrateEngine")
.tags(Map.of("key2836", "biqip"))
.workloadInstanceName("m")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workload_instance = azure_native.migrate.WorkloadInstance("workloadInstance",
modernize_project_name="mx8",
properties=azure_native.migrate.WorkloadInstanceModelPropertiesArgs(
custom_properties={
"instanceType": "IISWorkload",
"webAppArmId": "xseseqsrzdiga",
"webAppSiteName": "mirgzmy",
},
display_name="juoorbubchvk",
master_site_name="ubks",
migrate_agent_id="aqgzsxqbk",
name="wonkuhgsafzviuwqerzdmme",
source_name="weuxcqzwpeyzsjhdgqflhxlwjhbz",
source_platform="eh",
),
resource_group_name="rgmigrateEngine",
tags={
"key2836": "biqip",
},
workload_instance_name="m")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workloadInstance = new azure_native.migrate.WorkloadInstance("workloadInstance", {
modernizeProjectName: "mx8",
properties: {
customProperties: {
instanceType: "IISWorkload",
webAppArmId: "xseseqsrzdiga",
webAppSiteName: "mirgzmy",
},
displayName: "juoorbubchvk",
masterSiteName: "ubks",
migrateAgentId: "aqgzsxqbk",
name: "wonkuhgsafzviuwqerzdmme",
sourceName: "weuxcqzwpeyzsjhdgqflhxlwjhbz",
sourcePlatform: "eh",
},
resourceGroupName: "rgmigrateEngine",
tags: {
key2836: "biqip",
},
workloadInstanceName: "m",
});
resources:
workloadInstance:
type: azure-native:migrate:WorkloadInstance
properties:
modernizeProjectName: mx8
properties:
customProperties:
instanceType: IISWorkload
webAppArmId: xseseqsrzdiga
webAppSiteName: mirgzmy
displayName: juoorbubchvk
masterSiteName: ubks
migrateAgentId: aqgzsxqbk
name: wonkuhgsafzviuwqerzdmme
sourceName: weuxcqzwpeyzsjhdgqflhxlwjhbz
sourcePlatform: eh
resourceGroupName: rgmigrateEngine
tags:
key2836: biqip
workloadInstanceName: m
WorkloadInstance_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workloadInstance = new AzureNative.Migrate.WorkloadInstance("workloadInstance", new()
{
ModernizeProjectName = "tv39",
ResourceGroupName = "rgmigrateEngine",
WorkloadInstanceName = "io",
});
});
package main
import (
migrate "github.com/pulumi/pulumi-azure-native-sdk/migrate/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := migrate.NewWorkloadInstance(ctx, "workloadInstance", &migrate.WorkloadInstanceArgs{
ModernizeProjectName: pulumi.String("tv39"),
ResourceGroupName: pulumi.String("rgmigrateEngine"),
WorkloadInstanceName: pulumi.String("io"),
})
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.migrate.WorkloadInstance;
import com.pulumi.azurenative.migrate.WorkloadInstanceArgs;
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 workloadInstance = new WorkloadInstance("workloadInstance", WorkloadInstanceArgs.builder()
.modernizeProjectName("tv39")
.resourceGroupName("rgmigrateEngine")
.workloadInstanceName("io")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workload_instance = azure_native.migrate.WorkloadInstance("workloadInstance",
modernize_project_name="tv39",
resource_group_name="rgmigrateEngine",
workload_instance_name="io")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workloadInstance = new azure_native.migrate.WorkloadInstance("workloadInstance", {
modernizeProjectName: "tv39",
resourceGroupName: "rgmigrateEngine",
workloadInstanceName: "io",
});
resources:
workloadInstance:
type: azure-native:migrate:WorkloadInstance
properties:
modernizeProjectName: tv39
resourceGroupName: rgmigrateEngine
workloadInstanceName: io
Create WorkloadInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkloadInstance(name: string, args: WorkloadInstanceArgs, opts?: CustomResourceOptions);
@overload
def WorkloadInstance(resource_name: str,
args: WorkloadInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkloadInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
modernize_project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
properties: Optional[WorkloadInstanceModelPropertiesArgs] = None,
subscription_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
workload_instance_name: Optional[str] = None)
func NewWorkloadInstance(ctx *Context, name string, args WorkloadInstanceArgs, opts ...ResourceOption) (*WorkloadInstance, error)
public WorkloadInstance(string name, WorkloadInstanceArgs args, CustomResourceOptions? opts = null)
public WorkloadInstance(String name, WorkloadInstanceArgs args)
public WorkloadInstance(String name, WorkloadInstanceArgs args, CustomResourceOptions options)
type: azure-native:migrate:WorkloadInstance
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 WorkloadInstanceArgs
- 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 WorkloadInstanceArgs
- 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 WorkloadInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkloadInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkloadInstanceArgs
- 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 workloadInstanceResource = new AzureNative.Migrate.WorkloadInstance("workloadInstanceResource", new()
{
ModernizeProjectName = "string",
ResourceGroupName = "string",
Properties = new AzureNative.Migrate.Inputs.WorkloadInstanceModelPropertiesArgs
{
CustomProperties = new AzureNative.Migrate.Inputs.ApacheTomcatWorkloadInstanceModelCustomPropertiesArgs
{
InstanceType = "ApacheTomcatWorkloadInstanceModelCustomProperties",
ApacheTomcatWebApplication = new AzureNative.Migrate.Inputs.ApacheTomcatWebApplicationArgs
{
ApplicationId = "string",
ApplicationName = "string",
ApplicationScratchPath = "string",
Bindings = new[]
{
new AzureNative.Migrate.Inputs.BindingArgs
{
Cert = new AzureNative.Migrate.Inputs.CertArgs
{
CertData = "string",
CertNeeded = false,
CertProvided = false,
SecretStore = "string",
},
HostName = "string",
IpAddress = "string",
Port = "string",
PortMapping = new AzureNative.Migrate.Inputs.PortMappingArgs
{
ExternalPort = 0,
InternalPort = 0,
},
Protocol = "string",
},
},
Configurations = new[]
{
new AzureNative.Migrate.Inputs.WebApplicationConfigurationArgs
{
FilePath = "string",
Identifier = "string",
IsDeploymentTimeEditable = false,
LocalFilePath = "string",
Name = "string",
SecretStoreDetails = new AzureNative.Migrate.Inputs.SecretStoreDetailsArgs
{
SecretStore = "string",
SecretStoreProperties = new AzureNative.Migrate.Inputs.SecretStorePropertiesArgs
{
SecretStoreId = "string",
},
},
Section = "string",
TargetFilePath = "string",
Type = "string",
Value = "string",
},
},
Directories = new[]
{
new AzureNative.Migrate.Inputs.WebApplicationDirectoryArgs
{
IsEditable = false,
SourcePaths = new[]
{
"string",
},
SourceSize = "string",
StorageProfile = new AzureNative.Migrate.Inputs.TargetStorageProfileArgs
{
AzureFileShareProfile = new AzureNative.Migrate.Inputs.AzureFileShareHydrationProfileArgs
{
AzureFileShareDirPath = "string",
AzureFileShareName = "string",
AzureFileShareResourceGroup = "string",
AzureFileShareStorageAccount = "string",
AzureFileShareSubscriptionId = "string",
},
HydrationStorageProviderType = "string",
PersistentVolumeId = "string",
StorageAccessType = "string",
StorageProjectionType = "string",
TargetName = "string",
TargetSize = "string",
},
},
},
DiscoveredFrameworks = new[]
{
new AzureNative.Migrate.Inputs.WebApplicationFrameworkArgs
{
Name = "string",
Version = "string",
},
},
DisplayName = "string",
Limits = new AzureNative.Migrate.Inputs.ResourceRequirementsArgs
{
Cpu = "string",
Memory = "string",
},
Path = new AzureNative.Migrate.Inputs.DirectoryPathArgs
{
Physical = "string",
Virtual = "string",
},
PrimaryFramework = new AzureNative.Migrate.Inputs.WebApplicationFrameworkArgs
{
Name = "string",
Version = "string",
},
Requests = new AzureNative.Migrate.Inputs.ResourceRequirementsArgs
{
Cpu = "string",
Memory = "string",
},
WebServerId = "string",
WebServerName = "string",
},
WebAppArmId = "string",
WebAppSiteName = "string",
},
DisplayName = "string",
MasterSiteName = "string",
MigrateAgentId = "string",
Name = "string",
SourceName = "string",
SourcePlatform = "string",
},
SubscriptionId = "string",
Tags =
{
{ "string", "string" },
},
WorkloadInstanceName = "string",
});
example, err := migrate.NewWorkloadInstance(ctx, "workloadInstanceResource", &migrate.WorkloadInstanceArgs{
ModernizeProjectName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Properties: &migrate.WorkloadInstanceModelPropertiesArgs{
CustomProperties: migrate.ApacheTomcatWorkloadInstanceModelCustomProperties{
InstanceType: "ApacheTomcatWorkloadInstanceModelCustomProperties",
ApacheTomcatWebApplication: migrate.ApacheTomcatWebApplication{
ApplicationId: "string",
ApplicationName: "string",
ApplicationScratchPath: "string",
Bindings: []migrate.Binding{
{
Cert: {
CertData: "string",
CertNeeded: false,
CertProvided: false,
SecretStore: "string",
},
HostName: "string",
IpAddress: "string",
Port: "string",
PortMapping: {
ExternalPort: 0,
InternalPort: 0,
},
Protocol: "string",
},
},
Configurations: []migrate.WebApplicationConfiguration{
{
FilePath: "string",
Identifier: "string",
IsDeploymentTimeEditable: false,
LocalFilePath: "string",
Name: "string",
SecretStoreDetails: {
SecretStore: "string",
SecretStoreProperties: {
SecretStoreId: "string",
},
},
Section: "string",
TargetFilePath: "string",
Type: "string",
Value: "string",
},
},
Directories: []migrate.WebApplicationDirectory{
{
IsEditable: false,
SourcePaths: []string{
"string",
},
SourceSize: "string",
StorageProfile: {
AzureFileShareProfile: {
AzureFileShareDirPath: "string",
AzureFileShareName: "string",
AzureFileShareResourceGroup: "string",
AzureFileShareStorageAccount: "string",
AzureFileShareSubscriptionId: "string",
},
HydrationStorageProviderType: "string",
PersistentVolumeId: "string",
StorageAccessType: "string",
StorageProjectionType: "string",
TargetName: "string",
TargetSize: "string",
},
},
},
DiscoveredFrameworks: []migrate.WebApplicationFramework{
{
Name: "string",
Version: "string",
},
},
DisplayName: "string",
Limits: migrate.ResourceRequirements{
Cpu: "string",
Memory: "string",
},
Path: migrate.DirectoryPath{
Physical: "string",
Virtual: "string",
},
PrimaryFramework: migrate.WebApplicationFramework{
Name: "string",
Version: "string",
},
Requests: migrate.ResourceRequirements{
Cpu: "string",
Memory: "string",
},
WebServerId: "string",
WebServerName: "string",
},
WebAppArmId: "string",
WebAppSiteName: "string",
},
DisplayName: pulumi.String("string"),
MasterSiteName: pulumi.String("string"),
MigrateAgentId: pulumi.String("string"),
Name: pulumi.String("string"),
SourceName: pulumi.String("string"),
SourcePlatform: pulumi.String("string"),
},
SubscriptionId: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
WorkloadInstanceName: pulumi.String("string"),
})
var workloadInstanceResource = new WorkloadInstance("workloadInstanceResource", WorkloadInstanceArgs.builder()
.modernizeProjectName("string")
.resourceGroupName("string")
.properties(WorkloadInstanceModelPropertiesArgs.builder()
.customProperties(ApacheTomcatWorkloadInstanceModelCustomPropertiesArgs.builder()
.instanceType("ApacheTomcatWorkloadInstanceModelCustomProperties")
.apacheTomcatWebApplication(ApacheTomcatWebApplicationArgs.builder()
.applicationId("string")
.applicationName("string")
.applicationScratchPath("string")
.bindings(BindingArgs.builder()
.cert(CertArgs.builder()
.certData("string")
.certNeeded(false)
.certProvided(false)
.secretStore("string")
.build())
.hostName("string")
.ipAddress("string")
.port("string")
.portMapping(PortMappingArgs.builder()
.externalPort(0)
.internalPort(0)
.build())
.protocol("string")
.build())
.configurations(WebApplicationConfigurationArgs.builder()
.filePath("string")
.identifier("string")
.isDeploymentTimeEditable(false)
.localFilePath("string")
.name("string")
.secretStoreDetails(SecretStoreDetailsArgs.builder()
.secretStore("string")
.secretStoreProperties(SecretStorePropertiesArgs.builder()
.secretStoreId("string")
.build())
.build())
.section("string")
.targetFilePath("string")
.type("string")
.value("string")
.build())
.directories(WebApplicationDirectoryArgs.builder()
.isEditable(false)
.sourcePaths("string")
.sourceSize("string")
.storageProfile(TargetStorageProfileArgs.builder()
.azureFileShareProfile(AzureFileShareHydrationProfileArgs.builder()
.azureFileShareDirPath("string")
.azureFileShareName("string")
.azureFileShareResourceGroup("string")
.azureFileShareStorageAccount("string")
.azureFileShareSubscriptionId("string")
.build())
.hydrationStorageProviderType("string")
.persistentVolumeId("string")
.storageAccessType("string")
.storageProjectionType("string")
.targetName("string")
.targetSize("string")
.build())
.build())
.discoveredFrameworks(WebApplicationFrameworkArgs.builder()
.name("string")
.version("string")
.build())
.displayName("string")
.limits(ResourceRequirementsArgs.builder()
.cpu("string")
.memory("string")
.build())
.path(DirectoryPathArgs.builder()
.physical("string")
.virtual("string")
.build())
.primaryFramework(WebApplicationFrameworkArgs.builder()
.name("string")
.version("string")
.build())
.requests(ResourceRequirementsArgs.builder()
.cpu("string")
.memory("string")
.build())
.webServerId("string")
.webServerName("string")
.build())
.webAppArmId("string")
.webAppSiteName("string")
.build())
.displayName("string")
.masterSiteName("string")
.migrateAgentId("string")
.name("string")
.sourceName("string")
.sourcePlatform("string")
.build())
.subscriptionId("string")
.tags(Map.of("string", "string"))
.workloadInstanceName("string")
.build());
workload_instance_resource = azure_native.migrate.WorkloadInstance("workloadInstanceResource",
modernize_project_name="string",
resource_group_name="string",
properties=azure_native.migrate.WorkloadInstanceModelPropertiesArgs(
custom_properties=azure_native.migrate.ApacheTomcatWorkloadInstanceModelCustomPropertiesArgs(
instance_type="ApacheTomcatWorkloadInstanceModelCustomProperties",
apache_tomcat_web_application=azure_native.migrate.ApacheTomcatWebApplicationArgs(
application_id="string",
application_name="string",
application_scratch_path="string",
bindings=[azure_native.migrate.BindingArgs(
cert=azure_native.migrate.CertArgs(
cert_data="string",
cert_needed=False,
cert_provided=False,
secret_store="string",
),
host_name="string",
ip_address="string",
port="string",
port_mapping=azure_native.migrate.PortMappingArgs(
external_port=0,
internal_port=0,
),
protocol="string",
)],
configurations=[azure_native.migrate.WebApplicationConfigurationArgs(
file_path="string",
identifier="string",
is_deployment_time_editable=False,
local_file_path="string",
name="string",
secret_store_details=azure_native.migrate.SecretStoreDetailsArgs(
secret_store="string",
secret_store_properties=azure_native.migrate.SecretStorePropertiesArgs(
secret_store_id="string",
),
),
section="string",
target_file_path="string",
type="string",
value="string",
)],
directories=[azure_native.migrate.WebApplicationDirectoryArgs(
is_editable=False,
source_paths=["string"],
source_size="string",
storage_profile=azure_native.migrate.TargetStorageProfileArgs(
azure_file_share_profile=azure_native.migrate.AzureFileShareHydrationProfileArgs(
azure_file_share_dir_path="string",
azure_file_share_name="string",
azure_file_share_resource_group="string",
azure_file_share_storage_account="string",
azure_file_share_subscription_id="string",
),
hydration_storage_provider_type="string",
persistent_volume_id="string",
storage_access_type="string",
storage_projection_type="string",
target_name="string",
target_size="string",
),
)],
discovered_frameworks=[azure_native.migrate.WebApplicationFrameworkArgs(
name="string",
version="string",
)],
display_name="string",
limits=azure_native.migrate.ResourceRequirementsArgs(
cpu="string",
memory="string",
),
path=azure_native.migrate.DirectoryPathArgs(
physical="string",
virtual="string",
),
primary_framework=azure_native.migrate.WebApplicationFrameworkArgs(
name="string",
version="string",
),
requests=azure_native.migrate.ResourceRequirementsArgs(
cpu="string",
memory="string",
),
web_server_id="string",
web_server_name="string",
),
web_app_arm_id="string",
web_app_site_name="string",
),
display_name="string",
master_site_name="string",
migrate_agent_id="string",
name="string",
source_name="string",
source_platform="string",
),
subscription_id="string",
tags={
"string": "string",
},
workload_instance_name="string")
const workloadInstanceResource = new azure_native.migrate.WorkloadInstance("workloadInstanceResource", {
modernizeProjectName: "string",
resourceGroupName: "string",
properties: {
customProperties: {
instanceType: "ApacheTomcatWorkloadInstanceModelCustomProperties",
apacheTomcatWebApplication: {
applicationId: "string",
applicationName: "string",
applicationScratchPath: "string",
bindings: [{
cert: {
certData: "string",
certNeeded: false,
certProvided: false,
secretStore: "string",
},
hostName: "string",
ipAddress: "string",
port: "string",
portMapping: {
externalPort: 0,
internalPort: 0,
},
protocol: "string",
}],
configurations: [{
filePath: "string",
identifier: "string",
isDeploymentTimeEditable: false,
localFilePath: "string",
name: "string",
secretStoreDetails: {
secretStore: "string",
secretStoreProperties: {
secretStoreId: "string",
},
},
section: "string",
targetFilePath: "string",
type: "string",
value: "string",
}],
directories: [{
isEditable: false,
sourcePaths: ["string"],
sourceSize: "string",
storageProfile: {
azureFileShareProfile: {
azureFileShareDirPath: "string",
azureFileShareName: "string",
azureFileShareResourceGroup: "string",
azureFileShareStorageAccount: "string",
azureFileShareSubscriptionId: "string",
},
hydrationStorageProviderType: "string",
persistentVolumeId: "string",
storageAccessType: "string",
storageProjectionType: "string",
targetName: "string",
targetSize: "string",
},
}],
discoveredFrameworks: [{
name: "string",
version: "string",
}],
displayName: "string",
limits: {
cpu: "string",
memory: "string",
},
path: {
physical: "string",
virtual: "string",
},
primaryFramework: {
name: "string",
version: "string",
},
requests: {
cpu: "string",
memory: "string",
},
webServerId: "string",
webServerName: "string",
},
webAppArmId: "string",
webAppSiteName: "string",
},
displayName: "string",
masterSiteName: "string",
migrateAgentId: "string",
name: "string",
sourceName: "string",
sourcePlatform: "string",
},
subscriptionId: "string",
tags: {
string: "string",
},
workloadInstanceName: "string",
});
type: azure-native:migrate:WorkloadInstance
properties:
modernizeProjectName: string
properties:
customProperties:
apacheTomcatWebApplication:
applicationId: string
applicationName: string
applicationScratchPath: string
bindings:
- cert:
certData: string
certNeeded: false
certProvided: false
secretStore: string
hostName: string
ipAddress: string
port: string
portMapping:
externalPort: 0
internalPort: 0
protocol: string
configurations:
- filePath: string
identifier: string
isDeploymentTimeEditable: false
localFilePath: string
name: string
secretStoreDetails:
secretStore: string
secretStoreProperties:
secretStoreId: string
section: string
targetFilePath: string
type: string
value: string
directories:
- isEditable: false
sourcePaths:
- string
sourceSize: string
storageProfile:
azureFileShareProfile:
azureFileShareDirPath: string
azureFileShareName: string
azureFileShareResourceGroup: string
azureFileShareStorageAccount: string
azureFileShareSubscriptionId: string
hydrationStorageProviderType: string
persistentVolumeId: string
storageAccessType: string
storageProjectionType: string
targetName: string
targetSize: string
discoveredFrameworks:
- name: string
version: string
displayName: string
limits:
cpu: string
memory: string
path:
physical: string
virtual: string
primaryFramework:
name: string
version: string
requests:
cpu: string
memory: string
webServerId: string
webServerName: string
instanceType: ApacheTomcatWorkloadInstanceModelCustomProperties
webAppArmId: string
webAppSiteName: string
displayName: string
masterSiteName: string
migrateAgentId: string
name: string
sourceName: string
sourcePlatform: string
resourceGroupName: string
subscriptionId: string
tags:
string: string
workloadInstanceName: string
WorkloadInstance 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 WorkloadInstance resource accepts the following input properties:
- Modernize
Project stringName - ModernizeProject name.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Workload Instance Model Properties - Workload instance model properties.
- Subscription
Id string - Azure Subscription Id in which project was created.
- Dictionary<string, string>
- Gets or sets the resource tags.
- Workload
Instance stringName - Workload instance name.
- Modernize
Project stringName - ModernizeProject name.
- Resource
Group stringName - Name of the Azure Resource Group that project is part of.
- Properties
Workload
Instance Model Properties Args - Workload instance model properties.
- Subscription
Id string - Azure Subscription Id in which project was created.
- map[string]string
- Gets or sets the resource tags.
- Workload
Instance stringName - Workload instance name.
- modernize
Project StringName - ModernizeProject name.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- properties
Workload
Instance Model Properties - Workload instance model properties.
- subscription
Id String - Azure Subscription Id in which project was created.
- Map<String,String>
- Gets or sets the resource tags.
- workload
Instance StringName - Workload instance name.
- modernize
Project stringName - ModernizeProject name.
- resource
Group stringName - Name of the Azure Resource Group that project is part of.
- properties
Workload
Instance Model Properties - Workload instance model properties.
- subscription
Id string - Azure Subscription Id in which project was created.
- {[key: string]: string}
- Gets or sets the resource tags.
- workload
Instance stringName - Workload instance name.
- modernize_
project_ strname - ModernizeProject name.
- resource_
group_ strname - Name of the Azure Resource Group that project is part of.
- properties
Workload
Instance Model Properties Args - Workload instance model properties.
- subscription_
id str - Azure Subscription Id in which project was created.
- Mapping[str, str]
- Gets or sets the resource tags.
- workload_
instance_ strname - Workload instance name.
- modernize
Project StringName - ModernizeProject name.
- resource
Group StringName - Name of the Azure Resource Group that project is part of.
- properties Property Map
- Workload instance model properties.
- subscription
Id String - Azure Subscription Id in which project was created.
- Map<String>
- Gets or sets the resource tags.
- workload
Instance StringName - Workload instance name.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkloadInstance resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- System
Data Pulumi.Azure Native. Migrate. Outputs. Workload Instance Model Response System Data - Type string
- Gets or sets the type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- System
Data WorkloadInstance Model Response System Data - Type string
- Gets or sets the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- system
Data WorkloadInstance Model Response System Data - type String
- Gets or sets the type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Gets or sets the name of the resource.
- system
Data WorkloadInstance Model Response System Data - type string
- Gets or sets the type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Gets or sets the name of the resource.
- system_
data WorkloadInstance Model Response System Data - type str
- Gets or sets the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- system
Data Property Map - type String
- Gets or sets the type of the resource.
Supporting Types
ApacheTomcatWebApplication, ApacheTomcatWebApplicationArgs
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Bindings
List<Pulumi.
Azure Native. Migrate. Inputs. Binding> - Gets or sets the bindings for the application.
- Configurations
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Configuration> - Gets or sets application configuration.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Directory> - Gets or sets application directories.
- Discovered
Frameworks List<Pulumi.Azure Native. Migrate. Inputs. Web Application Framework> - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Limits
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements - Resource Requirements.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path - Second level entity for virtual directories.
- Primary
Framework Pulumi.Azure Native. Migrate. Inputs. Web Application Framework - Framework specific data for a web application.
- Requests
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements - Resource Requirements.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Bindings []Binding
- Gets or sets the bindings for the application.
- Configurations
[]Web
Application Configuration - Gets or sets application configuration.
- Directories
[]Web
Application Directory - Gets or sets application directories.
- Discovered
Frameworks []WebApplication Framework - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Limits
Resource
Requirements - Resource Requirements.
- Path
Directory
Path - Second level entity for virtual directories.
- Primary
Framework WebApplication Framework - Framework specific data for a web application.
- Requests
Resource
Requirements - Resource Requirements.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- bindings List<Binding>
- Gets or sets the bindings for the application.
- configurations
List<Web
Application Configuration> - Gets or sets application configuration.
- directories
List<Web
Application Directory> - Gets or sets application directories.
- discovered
Frameworks List<WebApplication Framework> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary
Framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
- application
Id string - Gets or sets the web application id.
- application
Name string - Gets or sets the web application name.
- application
Scratch stringPath - Gets or sets application scratch path.
- bindings Binding[]
- Gets or sets the bindings for the application.
- configurations
Web
Application Configuration[] - Gets or sets application configuration.
- directories
Web
Application Directory[] - Gets or sets application directories.
- discovered
Frameworks WebApplication Framework[] - Gets or sets the discovered frameworks of application.
- display
Name string - Gets or sets the display name.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary
Framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- web
Server stringId - Gets or sets the web server id.
- web
Server stringName - Gets or sets the web server name.
- application_
id str - Gets or sets the web application id.
- application_
name str - Gets or sets the web application name.
- application_
scratch_ strpath - Gets or sets application scratch path.
- bindings Sequence[Binding]
- Gets or sets the bindings for the application.
- configurations
Sequence[Web
Application Configuration] - Gets or sets application configuration.
- directories
Sequence[Web
Application Directory] - Gets or sets application directories.
- discovered_
frameworks Sequence[WebApplication Framework] - Gets or sets the discovered frameworks of application.
- display_
name str - Gets or sets the display name.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary_
framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- web_
server_ strid - Gets or sets the web server id.
- web_
server_ strname - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- bindings List<Property Map>
- Gets or sets the bindings for the application.
- configurations List<Property Map>
- Gets or sets application configuration.
- directories List<Property Map>
- Gets or sets application directories.
- discovered
Frameworks List<Property Map> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- limits Property Map
- Resource Requirements.
- path Property Map
- Second level entity for virtual directories.
- primary
Framework Property Map - Framework specific data for a web application.
- requests Property Map
- Resource Requirements.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
ApacheTomcatWebApplicationResponse, ApacheTomcatWebApplicationResponseArgs
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Bindings
List<Pulumi.
Azure Native. Migrate. Inputs. Binding Response> - Gets or sets the bindings for the application.
- Configurations
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Configuration Response> - Gets or sets application configuration.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Directory Response> - Gets or sets application directories.
- Discovered
Frameworks List<Pulumi.Azure Native. Migrate. Inputs. Web Application Framework Response> - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Limits
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements Response - Resource Requirements.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response - Second level entity for virtual directories.
- Primary
Framework Pulumi.Azure Native. Migrate. Inputs. Web Application Framework Response - Framework specific data for a web application.
- Requests
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements Response - Resource Requirements.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Bindings
[]Binding
Response - Gets or sets the bindings for the application.
- Configurations
[]Web
Application Configuration Response - Gets or sets application configuration.
- Directories
[]Web
Application Directory Response - Gets or sets application directories.
- Discovered
Frameworks []WebApplication Framework Response - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Limits
Resource
Requirements Response - Resource Requirements.
- Path
Directory
Path Response - Second level entity for virtual directories.
- Primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- Requests
Resource
Requirements Response - Resource Requirements.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- bindings
List<Binding
Response> - Gets or sets the bindings for the application.
- configurations
List<Web
Application Configuration Response> - Gets or sets application configuration.
- directories
List<Web
Application Directory Response> - Gets or sets application directories.
- discovered
Frameworks List<WebApplication Framework Response> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
- application
Id string - Gets or sets the web application id.
- application
Name string - Gets or sets the web application name.
- application
Scratch stringPath - Gets or sets application scratch path.
- bindings
Binding
Response[] - Gets or sets the bindings for the application.
- configurations
Web
Application Configuration Response[] - Gets or sets application configuration.
- directories
Web
Application Directory Response[] - Gets or sets application directories.
- discovered
Frameworks WebApplication Framework Response[] - Gets or sets the discovered frameworks of application.
- display
Name string - Gets or sets the display name.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- web
Server stringId - Gets or sets the web server id.
- web
Server stringName - Gets or sets the web server name.
- application_
id str - Gets or sets the web application id.
- application_
name str - Gets or sets the web application name.
- application_
scratch_ strpath - Gets or sets application scratch path.
- bindings
Sequence[Binding
Response] - Gets or sets the bindings for the application.
- configurations
Sequence[Web
Application Configuration Response] - Gets or sets application configuration.
- directories
Sequence[Web
Application Directory Response] - Gets or sets application directories.
- discovered_
frameworks Sequence[WebApplication Framework Response] - Gets or sets the discovered frameworks of application.
- display_
name str - Gets or sets the display name.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary_
framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- web_
server_ strid - Gets or sets the web server id.
- web_
server_ strname - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- bindings List<Property Map>
- Gets or sets the bindings for the application.
- configurations List<Property Map>
- Gets or sets application configuration.
- directories List<Property Map>
- Gets or sets application directories.
- discovered
Frameworks List<Property Map> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- limits Property Map
- Resource Requirements.
- path Property Map
- Second level entity for virtual directories.
- primary
Framework Property Map - Framework specific data for a web application.
- requests Property Map
- Resource Requirements.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
ApacheTomcatWorkloadInstanceModelCustomProperties, ApacheTomcatWorkloadInstanceModelCustomPropertiesArgs
- Apache
Tomcat Pulumi.Web Application Azure Native. Migrate. Inputs. Apache Tomcat Web Application - ApacheTomcat web application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- Apache
Tomcat ApacheWeb Application Tomcat Web Application - ApacheTomcat web application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- apache
Tomcat ApacheWeb Application Tomcat Web Application - ApacheTomcat web application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
- apache
Tomcat ApacheWeb Application Tomcat Web Application - ApacheTomcat web application.
- web
App stringArm Id - Gets or sets the Web application ARM id.
- web
App stringSite Name - Gets or sets the Web application site name.
- apache_
tomcat_ Apacheweb_ application Tomcat Web Application - ApacheTomcat web application.
- web_
app_ strarm_ id - Gets or sets the Web application ARM id.
- web_
app_ strsite_ name - Gets or sets the Web application site name.
- apache
Tomcat Property MapWeb Application - ApacheTomcat web application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
ApacheTomcatWorkloadInstanceModelCustomPropertiesResponse, ApacheTomcatWorkloadInstanceModelCustomPropertiesResponseArgs
- Apache
Tomcat Pulumi.Web Application Azure Native. Migrate. Inputs. Apache Tomcat Web Application Response - ApacheTomcat web application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- Apache
Tomcat ApacheWeb Application Tomcat Web Application Response - ApacheTomcat web application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- apache
Tomcat ApacheWeb Application Tomcat Web Application Response - ApacheTomcat web application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
- apache
Tomcat ApacheWeb Application Tomcat Web Application Response - ApacheTomcat web application.
- web
App stringArm Id - Gets or sets the Web application ARM id.
- web
App stringSite Name - Gets or sets the Web application site name.
- apache_
tomcat_ Apacheweb_ application Tomcat Web Application Response - ApacheTomcat web application.
- web_
app_ strarm_ id - Gets or sets the Web application ARM id.
- web_
app_ strsite_ name - Gets or sets the Web application site name.
- apache
Tomcat Property MapWeb Application - ApacheTomcat web application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
AzureFileShareHydrationProfile, AzureFileShareHydrationProfileArgs
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- String
- Gets or sets the cloud directory path of the directory on azure file share.
- String
- Gets or sets the name of the azure file share.
- String
- Gets or sets the name of the azure file share resource group.
- String
- Gets or sets the name of the azure file share storage account.
- String
- Gets or sets the subscription id of the azure file share.
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- str
- Gets or sets the cloud directory path of the directory on azure file share.
- str
- Gets or sets the name of the azure file share.
- str
- Gets or sets the name of the azure file share resource group.
- str
- Gets or sets the name of the azure file share storage account.
- str
- Gets or sets the subscription id of the azure file share.
- String
- Gets or sets the cloud directory path of the directory on azure file share.
- String
- Gets or sets the name of the azure file share.
- String
- Gets or sets the name of the azure file share resource group.
- String
- Gets or sets the name of the azure file share storage account.
- String
- Gets or sets the subscription id of the azure file share.
AzureFileShareHydrationProfileResponse, AzureFileShareHydrationProfileResponseArgs
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- String
- Gets or sets the cloud directory path of the directory on azure file share.
- String
- Gets or sets the name of the azure file share.
- String
- Gets or sets the name of the azure file share resource group.
- String
- Gets or sets the name of the azure file share storage account.
- String
- Gets or sets the subscription id of the azure file share.
- string
- Gets or sets the cloud directory path of the directory on azure file share.
- string
- Gets or sets the name of the azure file share.
- string
- Gets or sets the name of the azure file share resource group.
- string
- Gets or sets the name of the azure file share storage account.
- string
- Gets or sets the subscription id of the azure file share.
- str
- Gets or sets the cloud directory path of the directory on azure file share.
- str
- Gets or sets the name of the azure file share.
- str
- Gets or sets the name of the azure file share resource group.
- str
- Gets or sets the name of the azure file share storage account.
- str
- Gets or sets the subscription id of the azure file share.
- String
- Gets or sets the cloud directory path of the directory on azure file share.
- String
- Gets or sets the name of the azure file share.
- String
- Gets or sets the name of the azure file share resource group.
- String
- Gets or sets the name of the azure file share storage account.
- String
- Gets or sets the subscription id of the azure file share.
Binding, BindingArgs
- Cert
Pulumi.
Azure Native. Migrate. Inputs. Cert - WebApplication certificate.
- Host
Name string - Gets or sets the binding host name.
- Ip
Address string - Gets or sets the IP Address.
- Port string
- Gets or sets the application port.
- Port
Mapping Pulumi.Azure Native. Migrate. Inputs. Port Mapping - WebApplication port mapping.
- Protocol string
- Gets or sets the protocol.
- Cert Cert
- WebApplication certificate.
- Host
Name string - Gets or sets the binding host name.
- Ip
Address string - Gets or sets the IP Address.
- Port string
- Gets or sets the application port.
- Port
Mapping PortMapping - WebApplication port mapping.
- Protocol string
- Gets or sets the protocol.
- cert Cert
- WebApplication certificate.
- host
Name String - Gets or sets the binding host name.
- ip
Address String - Gets or sets the IP Address.
- port String
- Gets or sets the application port.
- port
Mapping PortMapping - WebApplication port mapping.
- protocol String
- Gets or sets the protocol.
- cert Cert
- WebApplication certificate.
- host
Name string - Gets or sets the binding host name.
- ip
Address string - Gets or sets the IP Address.
- port string
- Gets or sets the application port.
- port
Mapping PortMapping - WebApplication port mapping.
- protocol string
- Gets or sets the protocol.
- cert Cert
- WebApplication certificate.
- host_
name str - Gets or sets the binding host name.
- ip_
address str - Gets or sets the IP Address.
- port str
- Gets or sets the application port.
- port_
mapping PortMapping - WebApplication port mapping.
- protocol str
- Gets or sets the protocol.
- cert Property Map
- WebApplication certificate.
- host
Name String - Gets or sets the binding host name.
- ip
Address String - Gets or sets the IP Address.
- port String
- Gets or sets the application port.
- port
Mapping Property Map - WebApplication port mapping.
- protocol String
- Gets or sets the protocol.
BindingResponse, BindingResponseArgs
- Id string
- Gets the ID.
- Cert
Pulumi.
Azure Native. Migrate. Inputs. Cert Response - WebApplication certificate.
- Host
Name string - Gets or sets the binding host name.
- Ip
Address string - Gets or sets the IP Address.
- Port string
- Gets or sets the application port.
- Port
Mapping Pulumi.Azure Native. Migrate. Inputs. Port Mapping Response - WebApplication port mapping.
- Protocol string
- Gets or sets the protocol.
- Id string
- Gets the ID.
- Cert
Cert
Response - WebApplication certificate.
- Host
Name string - Gets or sets the binding host name.
- Ip
Address string - Gets or sets the IP Address.
- Port string
- Gets or sets the application port.
- Port
Mapping PortMapping Response - WebApplication port mapping.
- Protocol string
- Gets or sets the protocol.
- id String
- Gets the ID.
- cert
Cert
Response - WebApplication certificate.
- host
Name String - Gets or sets the binding host name.
- ip
Address String - Gets or sets the IP Address.
- port String
- Gets or sets the application port.
- port
Mapping PortMapping Response - WebApplication port mapping.
- protocol String
- Gets or sets the protocol.
- id string
- Gets the ID.
- cert
Cert
Response - WebApplication certificate.
- host
Name string - Gets or sets the binding host name.
- ip
Address string - Gets or sets the IP Address.
- port string
- Gets or sets the application port.
- port
Mapping PortMapping Response - WebApplication port mapping.
- protocol string
- Gets or sets the protocol.
- id str
- Gets the ID.
- cert
Cert
Response - WebApplication certificate.
- host_
name str - Gets or sets the binding host name.
- ip_
address str - Gets or sets the IP Address.
- port str
- Gets or sets the application port.
- port_
mapping PortMapping Response - WebApplication port mapping.
- protocol str
- Gets or sets the protocol.
- id String
- Gets the ID.
- cert Property Map
- WebApplication certificate.
- host
Name String - Gets or sets the binding host name.
- ip
Address String - Gets or sets the IP Address.
- port String
- Gets or sets the application port.
- port
Mapping Property Map - WebApplication port mapping.
- protocol String
- Gets or sets the protocol.
Cert, CertArgs
- Cert
Data string - Gets or sets the Certificate data.
- Cert
Needed bool - Gets or sets a value indicating whether certificate is needed or not.
- Cert
Provided bool - Gets or sets a value indicating whether certificate is provided or not.
- Secret
Store string | Pulumi.Azure Native. Migrate. Secret Store Type - Gets or sets the type of secret store for the certificate.
- Cert
Data string - Gets or sets the Certificate data.
- Cert
Needed bool - Gets or sets a value indicating whether certificate is needed or not.
- Cert
Provided bool - Gets or sets a value indicating whether certificate is provided or not.
- Secret
Store string | SecretStore Type - Gets or sets the type of secret store for the certificate.
- cert
Data String - Gets or sets the Certificate data.
- cert
Needed Boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided Boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store String | SecretStore Type - Gets or sets the type of secret store for the certificate.
- cert
Data string - Gets or sets the Certificate data.
- cert
Needed boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store string | SecretStore Type - Gets or sets the type of secret store for the certificate.
- cert_
data str - Gets or sets the Certificate data.
- cert_
needed bool - Gets or sets a value indicating whether certificate is needed or not.
- cert_
provided bool - Gets or sets a value indicating whether certificate is provided or not.
- secret_
store str | SecretStore Type - Gets or sets the type of secret store for the certificate.
- cert
Data String - Gets or sets the Certificate data.
- cert
Needed Boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided Boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store String | "None" | "KubeSecret" | "Key Vault Secret" | "App Service App Settings" - Gets or sets the type of secret store for the certificate.
CertResponse, CertResponseArgs
- Cert
Data string - Gets or sets the Certificate data.
- Cert
Needed bool - Gets or sets a value indicating whether certificate is needed or not.
- Cert
Provided bool - Gets or sets a value indicating whether certificate is provided or not.
- Secret
Store string - Gets or sets the type of secret store for the certificate.
- Cert
Data string - Gets or sets the Certificate data.
- Cert
Needed bool - Gets or sets a value indicating whether certificate is needed or not.
- Cert
Provided bool - Gets or sets a value indicating whether certificate is provided or not.
- Secret
Store string - Gets or sets the type of secret store for the certificate.
- cert
Data String - Gets or sets the Certificate data.
- cert
Needed Boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided Boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store String - Gets or sets the type of secret store for the certificate.
- cert
Data string - Gets or sets the Certificate data.
- cert
Needed boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store string - Gets or sets the type of secret store for the certificate.
- cert_
data str - Gets or sets the Certificate data.
- cert_
needed bool - Gets or sets a value indicating whether certificate is needed or not.
- cert_
provided bool - Gets or sets a value indicating whether certificate is provided or not.
- secret_
store str - Gets or sets the type of secret store for the certificate.
- cert
Data String - Gets or sets the Certificate data.
- cert
Needed Boolean - Gets or sets a value indicating whether certificate is needed or not.
- cert
Provided Boolean - Gets or sets a value indicating whether certificate is provided or not.
- secret
Store String - Gets or sets the type of secret store for the certificate.
ConfigurationType, ConfigurationTypeArgs
- IISConnection
String - IISConnectionString
- IISAuthentication
- IISAuthentication
- Apache
Tomcat Context Resource - ApacheTomcatContextResource
- Configuration
Type IISConnection String - IISConnectionString
- Configuration
Type IISAuthentication - IISAuthentication
- Configuration
Type Apache Tomcat Context Resource - ApacheTomcatContextResource
- IISConnection
String - IISConnectionString
- IISAuthentication
- IISAuthentication
- Apache
Tomcat Context Resource - ApacheTomcatContextResource
- IISConnection
String - IISConnectionString
- IISAuthentication
- IISAuthentication
- Apache
Tomcat Context Resource - ApacheTomcatContextResource
- IIS_CONNECTION_STRING
- IISConnectionString
- IIS_AUTHENTICATION
- IISAuthentication
- APACHE_TOMCAT_CONTEXT_RESOURCE
- ApacheTomcatContextResource
- "IISConnection
String" - IISConnectionString
- "IISAuthentication"
- IISAuthentication
- "Apache
Tomcat Context Resource" - ApacheTomcatContextResource
DirectoryPath, DirectoryPathArgs
DirectoryPathResponse, DirectoryPathResponseArgs
HealthErrorModelResponse, HealthErrorModelResponseArgs
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Id string
- Gets the ID.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- Affected
Resource List<string>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- Affected
Resource stringType - Gets or sets the type of affected resource type.
- Child
Errors List<Pulumi.Azure Native. Migrate. Inputs. Inner Health Error Model Response> - Gets or sets a list of child health errors associated with this error.
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Id string
- Gets the ID.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- Affected
Resource []stringCorrelation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- Affected
Resource stringType - Gets or sets the type of affected resource type.
- Child
Errors []InnerHealth Error Model Response - Gets or sets a list of child health errors associated with this error.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- id String
- Gets the ID.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
- affected
Resource List<String>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource StringType - Gets or sets the type of affected resource type.
- child
Errors List<InnerHealth Error Model Response> - Gets or sets a list of child health errors associated with this error.
- category string
- Gets or sets the error category.
- causes string
- Gets or sets possible causes of the error.
- code string
- Gets or sets the error code.
- creation
Time string - Gets or sets the error creation time.
- health
Category string - Gets or sets the health category.
- id string
- Gets the ID.
- is
Customer booleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message string
- Gets or sets the error message.
- recommendation string
- Gets or sets recommended action to resolve the error.
- severity string
- Gets or sets the error severity.
- source string
- Gets or sets the error source.
- summary string
- Gets or sets the error summary.
- affected
Resource string[]Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource stringType - Gets or sets the type of affected resource type.
- child
Errors InnerHealth Error Model Response[] - Gets or sets a list of child health errors associated with this error.
- category str
- Gets or sets the error category.
- causes str
- Gets or sets possible causes of the error.
- code str
- Gets or sets the error code.
- creation_
time str - Gets or sets the error creation time.
- health_
category str - Gets or sets the health category.
- id str
- Gets the ID.
- is_
customer_ boolresolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message str
- Gets or sets the error message.
- recommendation str
- Gets or sets recommended action to resolve the error.
- severity str
- Gets or sets the error severity.
- source str
- Gets or sets the error source.
- summary str
- Gets or sets the error summary.
- affected_
resource_ Sequence[str]correlation_ ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected_
resource_ strtype - Gets or sets the type of affected resource type.
- child_
errors Sequence[InnerHealth Error Model Response] - Gets or sets a list of child health errors associated with this error.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- id String
- Gets the ID.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
- affected
Resource List<String>Correlation Ids - Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
- affected
Resource StringType - Gets or sets the type of affected resource type.
- child
Errors List<Property Map> - Gets or sets a list of child health errors associated with this error.
IISApplicationDetails, IISApplicationDetailsArgs
- Application
Pool stringName - Gets or sets the application pool name.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Directory Path> - Gets or sets the list of directories.
- Enable32Bit
Api boolOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- Managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path - Second level entity for virtual directories.
- Runtime
Version string - Gets or sets the runtime version.
- Application
Pool stringName - Gets or sets the application pool name.
- Directories
[]Directory
Path - Gets or sets the list of directories.
- Enable32Bit
Api boolOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- Managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- Path
Directory
Path - Second level entity for virtual directories.
- Runtime
Version string - Gets or sets the runtime version.
- application
Pool StringName - Gets or sets the application pool name.
- directories
List<Directory
Path> - Gets or sets the list of directories.
- enable32Bit
Api BooleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline StringMode - Gets or sets the managed pipeline mode.
- path
Directory
Path - Second level entity for virtual directories.
- runtime
Version String - Gets or sets the runtime version.
- application
Pool stringName - Gets or sets the application pool name.
- directories
Directory
Path[] - Gets or sets the list of directories.
- enable32Bit
Api booleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- path
Directory
Path - Second level entity for virtual directories.
- runtime
Version string - Gets or sets the runtime version.
- application_
pool_ strname - Gets or sets the application pool name.
- directories
Sequence[Directory
Path] - Gets or sets the list of directories.
- enable32_
bit_ boolapi_ on_ win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed_
pipeline_ strmode - Gets or sets the managed pipeline mode.
- path
Directory
Path - Second level entity for virtual directories.
- runtime_
version str - Gets or sets the runtime version.
- application
Pool StringName - Gets or sets the application pool name.
- directories List<Property Map>
- Gets or sets the list of directories.
- enable32Bit
Api BooleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline StringMode - Gets or sets the managed pipeline mode.
- path Property Map
- Second level entity for virtual directories.
- runtime
Version String - Gets or sets the runtime version.
IISApplicationDetailsResponse, IISApplicationDetailsResponseArgs
- Id string
- Gets the ID.
- Application
Pool stringName - Gets or sets the application pool name.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response> - Gets or sets the list of directories.
- Enable32Bit
Api boolOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- Managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response - Second level entity for virtual directories.
- Runtime
Version string - Gets or sets the runtime version.
- Id string
- Gets the ID.
- Application
Pool stringName - Gets or sets the application pool name.
- Directories
[]Directory
Path Response - Gets or sets the list of directories.
- Enable32Bit
Api boolOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- Managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- Path
Directory
Path Response - Second level entity for virtual directories.
- Runtime
Version string - Gets or sets the runtime version.
- id String
- Gets the ID.
- application
Pool StringName - Gets or sets the application pool name.
- directories
List<Directory
Path Response> - Gets or sets the list of directories.
- enable32Bit
Api BooleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline StringMode - Gets or sets the managed pipeline mode.
- path
Directory
Path Response - Second level entity for virtual directories.
- runtime
Version String - Gets or sets the runtime version.
- id string
- Gets the ID.
- application
Pool stringName - Gets or sets the application pool name.
- directories
Directory
Path Response[] - Gets or sets the list of directories.
- enable32Bit
Api booleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline stringMode - Gets or sets the managed pipeline mode.
- path
Directory
Path Response - Second level entity for virtual directories.
- runtime
Version string - Gets or sets the runtime version.
- id str
- Gets the ID.
- application_
pool_ strname - Gets or sets the application pool name.
- directories
Sequence[Directory
Path Response] - Gets or sets the list of directories.
- enable32_
bit_ boolapi_ on_ win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed_
pipeline_ strmode - Gets or sets the managed pipeline mode.
- path
Directory
Path Response - Second level entity for virtual directories.
- runtime_
version str - Gets or sets the runtime version.
- id String
- Gets the ID.
- application
Pool StringName - Gets or sets the application pool name.
- directories List<Property Map>
- Gets or sets the list of directories.
- enable32Bit
Api BooleanOn Win64 - Gets or sets a value indicating whether 32 bit applications are allowed to run on 64 bit.
- managed
Pipeline StringMode - Gets or sets the managed pipeline mode.
- path Property Map
- Second level entity for virtual directories.
- runtime
Version String - Gets or sets the runtime version.
IISVirtualApplicationDetails, IISVirtualApplicationDetailsArgs
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Directory Path> - Gets or sets the list of directories.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path - Second level entity for virtual directories.
- Directories
[]Directory
Path - Gets or sets the list of directories.
- Path
Directory
Path - Second level entity for virtual directories.
- directories
List<Directory
Path> - Gets or sets the list of directories.
- path
Directory
Path - Second level entity for virtual directories.
- directories
Directory
Path[] - Gets or sets the list of directories.
- path
Directory
Path - Second level entity for virtual directories.
- directories
Sequence[Directory
Path] - Gets or sets the list of directories.
- path
Directory
Path - Second level entity for virtual directories.
- directories List<Property Map>
- Gets or sets the list of directories.
- path Property Map
- Second level entity for virtual directories.
IISVirtualApplicationDetailsResponse, IISVirtualApplicationDetailsResponseArgs
- Id string
- Gets the ID.
- Is
Virtual boolDirectory - Gets a value indicating whether the application corresponds to a directory.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response> - Gets or sets the list of directories.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response - Second level entity for virtual directories.
- Id string
- Gets the ID.
- Is
Virtual boolDirectory - Gets a value indicating whether the application corresponds to a directory.
- Directories
[]Directory
Path Response - Gets or sets the list of directories.
- Path
Directory
Path Response - Second level entity for virtual directories.
- id String
- Gets the ID.
- is
Virtual BooleanDirectory - Gets a value indicating whether the application corresponds to a directory.
- directories
List<Directory
Path Response> - Gets or sets the list of directories.
- path
Directory
Path Response - Second level entity for virtual directories.
- id string
- Gets the ID.
- is
Virtual booleanDirectory - Gets a value indicating whether the application corresponds to a directory.
- directories
Directory
Path Response[] - Gets or sets the list of directories.
- path
Directory
Path Response - Second level entity for virtual directories.
- id str
- Gets the ID.
- is_
virtual_ booldirectory - Gets a value indicating whether the application corresponds to a directory.
- directories
Sequence[Directory
Path Response] - Gets or sets the list of directories.
- path
Directory
Path Response - Second level entity for virtual directories.
- id String
- Gets the ID.
- is
Virtual BooleanDirectory - Gets a value indicating whether the application corresponds to a directory.
- directories List<Property Map>
- Gets or sets the list of directories.
- path Property Map
- Second level entity for virtual directories.
IISWebApplication, IISWebApplicationArgs
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Applications
List<Pulumi.
Azure Native. Migrate. Inputs. IISApplication Details> - Gets or sets the list of applications for the IIS web site.
- Bindings
List<Pulumi.
Azure Native. Migrate. Inputs. Binding> - Gets or sets the bindings for the application.
- Configurations
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Configuration> - Gets or sets application configuration.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Directory> - Gets or sets application directories.
- Discovered
Frameworks List<Pulumi.Azure Native. Migrate. Inputs. Web Application Framework> - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Iis
Web Pulumi.Server Azure Native. Migrate. Inputs. IISWeb Server - IISWeb server.
- Limits
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements - Resource Requirements.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path - Second level entity for virtual directories.
- Primary
Framework Pulumi.Azure Native. Migrate. Inputs. Web Application Framework - Framework specific data for a web application.
- Requests
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements - Resource Requirements.
- Virtual
Applications List<Pulumi.Azure Native. Migrate. Inputs. IISVirtual Application Details> - Gets or sets the list of application units for the web site.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Applications
[]IISApplication
Details - Gets or sets the list of applications for the IIS web site.
- Bindings []Binding
- Gets or sets the bindings for the application.
- Configurations
[]Web
Application Configuration - Gets or sets application configuration.
- Directories
[]Web
Application Directory - Gets or sets application directories.
- Discovered
Frameworks []WebApplication Framework - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Iis
Web IISWebServer Server - IISWeb server.
- Limits
Resource
Requirements - Resource Requirements.
- Path
Directory
Path - Second level entity for virtual directories.
- Primary
Framework WebApplication Framework - Framework specific data for a web application.
- Requests
Resource
Requirements - Resource Requirements.
- Virtual
Applications []IISVirtualApplication Details - Gets or sets the list of application units for the web site.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- applications
List<IISApplication
Details> - Gets or sets the list of applications for the IIS web site.
- bindings List<Binding>
- Gets or sets the bindings for the application.
- configurations
List<Web
Application Configuration> - Gets or sets application configuration.
- directories
List<Web
Application Directory> - Gets or sets application directories.
- discovered
Frameworks List<WebApplication Framework> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- iis
Web IISWebServer Server - IISWeb server.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary
Framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- virtual
Applications List<IISVirtualApplication Details> - Gets or sets the list of application units for the web site.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
- application
Id string - Gets or sets the web application id.
- application
Name string - Gets or sets the web application name.
- application
Scratch stringPath - Gets or sets application scratch path.
- applications
IISApplication
Details[] - Gets or sets the list of applications for the IIS web site.
- bindings Binding[]
- Gets or sets the bindings for the application.
- configurations
Web
Application Configuration[] - Gets or sets application configuration.
- directories
Web
Application Directory[] - Gets or sets application directories.
- discovered
Frameworks WebApplication Framework[] - Gets or sets the discovered frameworks of application.
- display
Name string - Gets or sets the display name.
- iis
Web IISWebServer Server - IISWeb server.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary
Framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- virtual
Applications IISVirtualApplication Details[] - Gets or sets the list of application units for the web site.
- web
Server stringId - Gets or sets the web server id.
- web
Server stringName - Gets or sets the web server name.
- application_
id str - Gets or sets the web application id.
- application_
name str - Gets or sets the web application name.
- application_
scratch_ strpath - Gets or sets application scratch path.
- applications
Sequence[IISApplication
Details] - Gets or sets the list of applications for the IIS web site.
- bindings Sequence[Binding]
- Gets or sets the bindings for the application.
- configurations
Sequence[Web
Application Configuration] - Gets or sets application configuration.
- directories
Sequence[Web
Application Directory] - Gets or sets application directories.
- discovered_
frameworks Sequence[WebApplication Framework] - Gets or sets the discovered frameworks of application.
- display_
name str - Gets or sets the display name.
- iis_
web_ IISWebserver Server - IISWeb server.
- limits
Resource
Requirements - Resource Requirements.
- path
Directory
Path - Second level entity for virtual directories.
- primary_
framework WebApplication Framework - Framework specific data for a web application.
- requests
Resource
Requirements - Resource Requirements.
- virtual_
applications Sequence[IISVirtualApplication Details] - Gets or sets the list of application units for the web site.
- web_
server_ strid - Gets or sets the web server id.
- web_
server_ strname - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- applications List<Property Map>
- Gets or sets the list of applications for the IIS web site.
- bindings List<Property Map>
- Gets or sets the bindings for the application.
- configurations List<Property Map>
- Gets or sets application configuration.
- directories List<Property Map>
- Gets or sets application directories.
- discovered
Frameworks List<Property Map> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- iis
Web Property MapServer - IISWeb server.
- limits Property Map
- Resource Requirements.
- path Property Map
- Second level entity for virtual directories.
- primary
Framework Property Map - Framework specific data for a web application.
- requests Property Map
- Resource Requirements.
- virtual
Applications List<Property Map> - Gets or sets the list of application units for the web site.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
IISWebApplicationResponse, IISWebApplicationResponseArgs
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Applications
List<Pulumi.
Azure Native. Migrate. Inputs. IISApplication Details Response> - Gets or sets the list of applications for the IIS web site.
- Bindings
List<Pulumi.
Azure Native. Migrate. Inputs. Binding Response> - Gets or sets the bindings for the application.
- Configurations
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Configuration Response> - Gets or sets application configuration.
- Directories
List<Pulumi.
Azure Native. Migrate. Inputs. Web Application Directory Response> - Gets or sets application directories.
- Discovered
Frameworks List<Pulumi.Azure Native. Migrate. Inputs. Web Application Framework Response> - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Iis
Web Pulumi.Server Azure Native. Migrate. Inputs. IISWeb Server Response - IISWeb server.
- Limits
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements Response - Resource Requirements.
- Path
Pulumi.
Azure Native. Migrate. Inputs. Directory Path Response - Second level entity for virtual directories.
- Primary
Framework Pulumi.Azure Native. Migrate. Inputs. Web Application Framework Response - Framework specific data for a web application.
- Requests
Pulumi.
Azure Native. Migrate. Inputs. Resource Requirements Response - Resource Requirements.
- Virtual
Applications List<Pulumi.Azure Native. Migrate. Inputs. IISVirtual Application Details Response> - Gets or sets the list of application units for the web site.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- Application
Id string - Gets or sets the web application id.
- Application
Name string - Gets or sets the web application name.
- Application
Scratch stringPath - Gets or sets application scratch path.
- Applications
[]IISApplication
Details Response - Gets or sets the list of applications for the IIS web site.
- Bindings
[]Binding
Response - Gets or sets the bindings for the application.
- Configurations
[]Web
Application Configuration Response - Gets or sets application configuration.
- Directories
[]Web
Application Directory Response - Gets or sets application directories.
- Discovered
Frameworks []WebApplication Framework Response - Gets or sets the discovered frameworks of application.
- Display
Name string - Gets or sets the display name.
- Iis
Web IISWebServer Server Response - IISWeb server.
- Limits
Resource
Requirements Response - Resource Requirements.
- Path
Directory
Path Response - Second level entity for virtual directories.
- Primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- Requests
Resource
Requirements Response - Resource Requirements.
- Virtual
Applications []IISVirtualApplication Details Response - Gets or sets the list of application units for the web site.
- Web
Server stringId - Gets or sets the web server id.
- Web
Server stringName - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- applications
List<IISApplication
Details Response> - Gets or sets the list of applications for the IIS web site.
- bindings
List<Binding
Response> - Gets or sets the bindings for the application.
- configurations
List<Web
Application Configuration Response> - Gets or sets application configuration.
- directories
List<Web
Application Directory Response> - Gets or sets application directories.
- discovered
Frameworks List<WebApplication Framework Response> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- iis
Web IISWebServer Server Response - IISWeb server.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- virtual
Applications List<IISVirtualApplication Details Response> - Gets or sets the list of application units for the web site.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
- application
Id string - Gets or sets the web application id.
- application
Name string - Gets or sets the web application name.
- application
Scratch stringPath - Gets or sets application scratch path.
- applications
IISApplication
Details Response[] - Gets or sets the list of applications for the IIS web site.
- bindings
Binding
Response[] - Gets or sets the bindings for the application.
- configurations
Web
Application Configuration Response[] - Gets or sets application configuration.
- directories
Web
Application Directory Response[] - Gets or sets application directories.
- discovered
Frameworks WebApplication Framework Response[] - Gets or sets the discovered frameworks of application.
- display
Name string - Gets or sets the display name.
- iis
Web IISWebServer Server Response - IISWeb server.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary
Framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- virtual
Applications IISVirtualApplication Details Response[] - Gets or sets the list of application units for the web site.
- web
Server stringId - Gets or sets the web server id.
- web
Server stringName - Gets or sets the web server name.
- application_
id str - Gets or sets the web application id.
- application_
name str - Gets or sets the web application name.
- application_
scratch_ strpath - Gets or sets application scratch path.
- applications
Sequence[IISApplication
Details Response] - Gets or sets the list of applications for the IIS web site.
- bindings
Sequence[Binding
Response] - Gets or sets the bindings for the application.
- configurations
Sequence[Web
Application Configuration Response] - Gets or sets application configuration.
- directories
Sequence[Web
Application Directory Response] - Gets or sets application directories.
- discovered_
frameworks Sequence[WebApplication Framework Response] - Gets or sets the discovered frameworks of application.
- display_
name str - Gets or sets the display name.
- iis_
web_ IISWebserver Server Response - IISWeb server.
- limits
Resource
Requirements Response - Resource Requirements.
- path
Directory
Path Response - Second level entity for virtual directories.
- primary_
framework WebApplication Framework Response - Framework specific data for a web application.
- requests
Resource
Requirements Response - Resource Requirements.
- virtual_
applications Sequence[IISVirtualApplication Details Response] - Gets or sets the list of application units for the web site.
- web_
server_ strid - Gets or sets the web server id.
- web_
server_ strname - Gets or sets the web server name.
- application
Id String - Gets or sets the web application id.
- application
Name String - Gets or sets the web application name.
- application
Scratch StringPath - Gets or sets application scratch path.
- applications List<Property Map>
- Gets or sets the list of applications for the IIS web site.
- bindings List<Property Map>
- Gets or sets the bindings for the application.
- configurations List<Property Map>
- Gets or sets application configuration.
- directories List<Property Map>
- Gets or sets application directories.
- discovered
Frameworks List<Property Map> - Gets or sets the discovered frameworks of application.
- display
Name String - Gets or sets the display name.
- iis
Web Property MapServer - IISWeb server.
- limits Property Map
- Resource Requirements.
- path Property Map
- Second level entity for virtual directories.
- primary
Framework Property Map - Framework specific data for a web application.
- requests Property Map
- Resource Requirements.
- virtual
Applications List<Property Map> - Gets or sets the list of application units for the web site.
- web
Server StringId - Gets or sets the web server id.
- web
Server StringName - Gets or sets the web server name.
IISWebServer, IISWebServerArgs
- Display
Name string - Gets or sets the display name.
- Ip
Addresses List<string> - Gets or sets list of ip addresses.
- Machines List<string>
- Gets or sets the list of machines.
- Operating
System Pulumi.Details Azure Native. Migrate. Inputs. Operating System Details - Root
Configuration stringLocation - Gets or sets the server root configuration location.
- Run
As stringAccount Id - Gets or sets the run as account id.
- Server
Fqdn string - Gets or sets the server FQDN.
- Server
Id string - Gets or sets the web server id.
- Server
Name string - Gets or sets the web server name.
- Version string
- Gets or sets the server version.
- Web
Applications List<string> - Gets or sets the list of web applications.
- Display
Name string - Gets or sets the display name.
- Ip
Addresses []string - Gets or sets list of ip addresses.
- Machines []string
- Gets or sets the list of machines.
- Operating
System OperatingDetails System Details - Root
Configuration stringLocation - Gets or sets the server root configuration location.
- Run
As stringAccount Id - Gets or sets the run as account id.
- Server
Fqdn string - Gets or sets the server FQDN.
- Server
Id string - Gets or sets the web server id.
- Server
Name string - Gets or sets the web server name.
- Version string
- Gets or sets the server version.
- Web
Applications []string - Gets or sets the list of web applications.
- display
Name String - Gets or sets the display name.
- ip
Addresses List<String> - Gets or sets list of ip addresses.
- machines List<String>
- Gets or sets the list of machines.
- operating
System OperatingDetails System Details - root
Configuration StringLocation - Gets or sets the server root configuration location.
- run
As StringAccount Id - Gets or sets the run as account id.
- server
Fqdn String - Gets or sets the server FQDN.
- server
Id String - Gets or sets the web server id.
- server
Name String - Gets or sets the web server name.
- version String
- Gets or sets the server version.
- web
Applications List<String> - Gets or sets the list of web applications.
- display
Name string - Gets or sets the display name.
- ip
Addresses string[] - Gets or sets list of ip addresses.
- machines string[]
- Gets or sets the list of machines.
- operating
System OperatingDetails System Details - root
Configuration stringLocation - Gets or sets the server root configuration location.
- run
As stringAccount Id - Gets or sets the run as account id.
- server
Fqdn string - Gets or sets the server FQDN.
- server
Id string - Gets or sets the web server id.
- server
Name string - Gets or sets the web server name.
- version string
- Gets or sets the server version.
- web
Applications string[] - Gets or sets the list of web applications.
- display_
name str - Gets or sets the display name.
- ip_
addresses Sequence[str] - Gets or sets list of ip addresses.
- machines Sequence[str]
- Gets or sets the list of machines.
- operating_
system_ Operatingdetails System Details - root_
configuration_ strlocation - Gets or sets the server root configuration location.
- run_
as_ straccount_ id - Gets or sets the run as account id.
- server_
fqdn str - Gets or sets the server FQDN.
- server_
id str - Gets or sets the web server id.
- server_
name str - Gets or sets the web server name.
- version str
- Gets or sets the server version.
- web_
applications Sequence[str] - Gets or sets the list of web applications.
- display
Name String - Gets or sets the display name.
- ip
Addresses List<String> - Gets or sets list of ip addresses.
- machines List<String>
- Gets or sets the list of machines.
- operating
System Property MapDetails - root
Configuration StringLocation - Gets or sets the server root configuration location.
- run
As StringAccount Id - Gets or sets the run as account id.
- server
Fqdn String - Gets or sets the server FQDN.
- server
Id String - Gets or sets the web server id.
- server
Name String - Gets or sets the web server name.
- version String
- Gets or sets the server version.
- web
Applications List<String> - Gets or sets the list of web applications.
IISWebServerResponse, IISWebServerResponseArgs
- Display
Name string - Gets or sets the display name.
- Ip
Addresses List<string> - Gets or sets list of ip addresses.
- Machines List<string>
- Gets or sets the list of machines.
- Operating
System Pulumi.Details Azure Native. Migrate. Inputs. Operating System Details Response - Root
Configuration stringLocation - Gets or sets the server root configuration location.
- Run
As stringAccount Id - Gets or sets the run as account id.
- Server
Fqdn string - Gets or sets the server FQDN.
- Server
Id string - Gets or sets the web server id.
- Server
Name string - Gets or sets the web server name.
- Version string
- Gets or sets the server version.
- Web
Applications List<string> - Gets or sets the list of web applications.
- Display
Name string - Gets or sets the display name.
- Ip
Addresses []string - Gets or sets list of ip addresses.
- Machines []string
- Gets or sets the list of machines.
- Operating
System OperatingDetails System Details Response - Root
Configuration stringLocation - Gets or sets the server root configuration location.
- Run
As stringAccount Id - Gets or sets the run as account id.
- Server
Fqdn string - Gets or sets the server FQDN.
- Server
Id string - Gets or sets the web server id.
- Server
Name string - Gets or sets the web server name.
- Version string
- Gets or sets the server version.
- Web
Applications []string - Gets or sets the list of web applications.
- display
Name String - Gets or sets the display name.
- ip
Addresses List<String> - Gets or sets list of ip addresses.
- machines List<String>
- Gets or sets the list of machines.
- operating
System OperatingDetails System Details Response - root
Configuration StringLocation - Gets or sets the server root configuration location.
- run
As StringAccount Id - Gets or sets the run as account id.
- server
Fqdn String - Gets or sets the server FQDN.
- server
Id String - Gets or sets the web server id.
- server
Name String - Gets or sets the web server name.
- version String
- Gets or sets the server version.
- web
Applications List<String> - Gets or sets the list of web applications.
- display
Name string - Gets or sets the display name.
- ip
Addresses string[] - Gets or sets list of ip addresses.
- machines string[]
- Gets or sets the list of machines.
- operating
System OperatingDetails System Details Response - root
Configuration stringLocation - Gets or sets the server root configuration location.
- run
As stringAccount Id - Gets or sets the run as account id.
- server
Fqdn string - Gets or sets the server FQDN.
- server
Id string - Gets or sets the web server id.
- server
Name string - Gets or sets the web server name.
- version string
- Gets or sets the server version.
- web
Applications string[] - Gets or sets the list of web applications.
- display_
name str - Gets or sets the display name.
- ip_
addresses Sequence[str] - Gets or sets list of ip addresses.
- machines Sequence[str]
- Gets or sets the list of machines.
- operating_
system_ Operatingdetails System Details Response - root_
configuration_ strlocation - Gets or sets the server root configuration location.
- run_
as_ straccount_ id - Gets or sets the run as account id.
- server_
fqdn str - Gets or sets the server FQDN.
- server_
id str - Gets or sets the web server id.
- server_
name str - Gets or sets the web server name.
- version str
- Gets or sets the server version.
- web_
applications Sequence[str] - Gets or sets the list of web applications.
- display
Name String - Gets or sets the display name.
- ip
Addresses List<String> - Gets or sets list of ip addresses.
- machines List<String>
- Gets or sets the list of machines.
- operating
System Property MapDetails - root
Configuration StringLocation - Gets or sets the server root configuration location.
- run
As StringAccount Id - Gets or sets the run as account id.
- server
Fqdn String - Gets or sets the server FQDN.
- server
Id String - Gets or sets the web server id.
- server
Name String - Gets or sets the web server name.
- version String
- Gets or sets the server version.
- web
Applications List<String> - Gets or sets the list of web applications.
IISWorkloadInstanceModelCustomProperties, IISWorkloadInstanceModelCustomPropertiesArgs
- Container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- Iis
Web Pulumi.Application Azure Native. Migrate. Inputs. IISWeb Application - IISWeb application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- Container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- Iis
Web IISWebApplication Application - IISWeb application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- container
Name String - Gets or sets the container Id.
- String
- Gets or sets the fileshare name.
- iis
Web IISWebApplication Application - IISWeb application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
- container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- iis
Web IISWebApplication Application - IISWeb application.
- web
App stringArm Id - Gets or sets the Web application ARM id.
- web
App stringSite Name - Gets or sets the Web application site name.
- container_
name str - Gets or sets the container Id.
- str
- Gets or sets the fileshare name.
- iis_
web_ IISWebapplication Application - IISWeb application.
- web_
app_ strarm_ id - Gets or sets the Web application ARM id.
- web_
app_ strsite_ name - Gets or sets the Web application site name.
- container
Name String - Gets or sets the container Id.
- String
- Gets or sets the fileshare name.
- iis
Web Property MapApplication - IISWeb application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
IISWorkloadInstanceModelCustomPropertiesResponse, IISWorkloadInstanceModelCustomPropertiesResponseArgs
- Container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- Iis
Web Pulumi.Application Azure Native. Migrate. Inputs. IISWeb Application Response - IISWeb application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- Container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- Iis
Web IISWebApplication Application Response - IISWeb application.
- Web
App stringArm Id - Gets or sets the Web application ARM id.
- Web
App stringSite Name - Gets or sets the Web application site name.
- container
Name String - Gets or sets the container Id.
- String
- Gets or sets the fileshare name.
- iis
Web IISWebApplication Application Response - IISWeb application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
- container
Name string - Gets or sets the container Id.
- string
- Gets or sets the fileshare name.
- iis
Web IISWebApplication Application Response - IISWeb application.
- web
App stringArm Id - Gets or sets the Web application ARM id.
- web
App stringSite Name - Gets or sets the Web application site name.
- container_
name str - Gets or sets the container Id.
- str
- Gets or sets the fileshare name.
- iis_
web_ IISWebapplication Application Response - IISWeb application.
- web_
app_ strarm_ id - Gets or sets the Web application ARM id.
- web_
app_ strsite_ name - Gets or sets the Web application site name.
- container
Name String - Gets or sets the container Id.
- String
- Gets or sets the fileshare name.
- iis
Web Property MapApplication - IISWeb application.
- web
App StringArm Id - Gets or sets the Web application ARM id.
- web
App StringSite Name - Gets or sets the Web application site name.
InnerHealthErrorModelResponse, InnerHealthErrorModelResponseArgs
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Id string
- Gets the ID.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- Category string
- Gets or sets the error category.
- Causes string
- Gets or sets possible causes of the error.
- Code string
- Gets or sets the error code.
- Creation
Time string - Gets or sets the error creation time.
- Health
Category string - Gets or sets the health category.
- Id string
- Gets the ID.
- Is
Customer boolResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- Message string
- Gets or sets the error message.
- Recommendation string
- Gets or sets recommended action to resolve the error.
- Severity string
- Gets or sets the error severity.
- Source string
- Gets or sets the error source.
- Summary string
- Gets or sets the error summary.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- id String
- Gets the ID.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
- category string
- Gets or sets the error category.
- causes string
- Gets or sets possible causes of the error.
- code string
- Gets or sets the error code.
- creation
Time string - Gets or sets the error creation time.
- health
Category string - Gets or sets the health category.
- id string
- Gets the ID.
- is
Customer booleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message string
- Gets or sets the error message.
- recommendation string
- Gets or sets recommended action to resolve the error.
- severity string
- Gets or sets the error severity.
- source string
- Gets or sets the error source.
- summary string
- Gets or sets the error summary.
- category str
- Gets or sets the error category.
- causes str
- Gets or sets possible causes of the error.
- code str
- Gets or sets the error code.
- creation_
time str - Gets or sets the error creation time.
- health_
category str - Gets or sets the health category.
- id str
- Gets the ID.
- is_
customer_ boolresolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message str
- Gets or sets the error message.
- recommendation str
- Gets or sets recommended action to resolve the error.
- severity str
- Gets or sets the error severity.
- source str
- Gets or sets the error source.
- summary str
- Gets or sets the error summary.
- category String
- Gets or sets the error category.
- causes String
- Gets or sets possible causes of the error.
- code String
- Gets or sets the error code.
- creation
Time String - Gets or sets the error creation time.
- health
Category String - Gets or sets the health category.
- id String
- Gets the ID.
- is
Customer BooleanResolvable - Gets or sets a value indicating whether the error is customer resolvable.
- message String
- Gets or sets the error message.
- recommendation String
- Gets or sets recommended action to resolve the error.
- severity String
- Gets or sets the error severity.
- source String
- Gets or sets the error source.
- summary String
- Gets or sets the error summary.
OperatingSystemDetails, OperatingSystemDetailsArgs
- Os
string | Pulumi.
Azure Native. Migrate. Operating System Type - Os
Architecture string - Os
Name string - Os
Version string
- Os
string | Operating
System Type - Os
Architecture string - Os
Name string - Os
Version string
- os
String | Operating
System Type - os
Architecture String - os
Name String - os
Version String
- os
string | Operating
System Type - os
Architecture string - os
Name string - os
Version string
- os
str | Operating
System Type - os_
architecture str - os_
name str - os_
version str
- os String | "Windows" | "Linux"
- os
Architecture String - os
Name String - os
Version String
OperatingSystemDetailsResponse, OperatingSystemDetailsResponseArgs
- Os string
- Os
Architecture string - Os
Name string - Os
Version string
- Os string
- Os
Architecture string - Os
Name string - Os
Version string
- os String
- os
Architecture String - os
Name String - os
Version String
- os string
- os
Architecture string - os
Name string - os
Version string
- os str
- os_
architecture str - os_
name str - os_
version str
- os String
- os
Architecture String - os
Name String - os
Version String
OperatingSystemType, OperatingSystemTypeArgs
- Windows
- Windows
- Linux
- Linux
- Operating
System Type Windows - Windows
- Operating
System Type Linux - Linux
- Windows
- Windows
- Linux
- Linux
- Windows
- Windows
- Linux
- Linux
- WINDOWS
- Windows
- LINUX
- Linux
- "Windows"
- Windows
- "Linux"
- Linux
PortMapping, PortMappingArgs
- External
Port int - Gets or sets the External Port.
- Internal
Port int - Gets or sets the Internal Port.
- External
Port int - Gets or sets the External Port.
- Internal
Port int - Gets or sets the Internal Port.
- external
Port Integer - Gets or sets the External Port.
- internal
Port Integer - Gets or sets the Internal Port.
- external
Port number - Gets or sets the External Port.
- internal
Port number - Gets or sets the Internal Port.
- external_
port int - Gets or sets the External Port.
- internal_
port int - Gets or sets the Internal Port.
- external
Port Number - Gets or sets the External Port.
- internal
Port Number - Gets or sets the Internal Port.
PortMappingResponse, PortMappingResponseArgs
- External
Port int - Gets or sets the External Port.
- Internal
Port int - Gets or sets the Internal Port.
- External
Port int - Gets or sets the External Port.
- Internal
Port int - Gets or sets the Internal Port.
- external
Port Integer - Gets or sets the External Port.
- internal
Port Integer - Gets or sets the Internal Port.
- external
Port number - Gets or sets the External Port.
- internal
Port number - Gets or sets the Internal Port.
- external_
port int - Gets or sets the External Port.
- internal_
port int - Gets or sets the Internal Port.
- external
Port Number - Gets or sets the External Port.
- internal
Port Number - Gets or sets the Internal Port.
ResourceRequirements, ResourceRequirementsArgs
ResourceRequirementsResponse, ResourceRequirementsResponseArgs
SecretStoreDetails, SecretStoreDetailsArgs
SecretStoreDetailsResponse, SecretStoreDetailsResponseArgs
SecretStoreProperties, SecretStorePropertiesArgs
- Secret
Store stringId
- Secret
Store stringId
- secret
Store StringId
- secret
Store stringId
- secret_
store_ strid
- secret
Store StringId
SecretStorePropertiesResponse, SecretStorePropertiesResponseArgs
- Input
Type string - Secret
Store stringId
- Input
Type string - Secret
Store stringId
- input
Type String - secret
Store StringId
- input
Type string - secret
Store stringId
- input_
type str - secret_
store_ strid
- input
Type String - secret
Store StringId
SecretStoreType, SecretStoreTypeArgs
- None
- None
- Kube
Secret - KubeSecret
- Key
Vault Secret - KeyVaultSecret
- App
Service App Settings - AppServiceAppSettings
- Secret
Store Type None - None
- Secret
Store Type Kube Secret - KubeSecret
- Secret
Store Type Key Vault Secret - KeyVaultSecret
- Secret
Store Type App Service App Settings - AppServiceAppSettings
- None
- None
- Kube
Secret - KubeSecret
- Key
Vault Secret - KeyVaultSecret
- App
Service App Settings - AppServiceAppSettings
- None
- None
- Kube
Secret - KubeSecret
- Key
Vault Secret - KeyVaultSecret
- App
Service App Settings - AppServiceAppSettings
- NONE
- None
- KUBE_SECRET
- KubeSecret
- KEY_VAULT_SECRET
- KeyVaultSecret
- APP_SERVICE_APP_SETTINGS
- AppServiceAppSettings
- "None"
- None
- "Kube
Secret" - KubeSecret
- "Key
Vault Secret" - KeyVaultSecret
- "App
Service App Settings" - AppServiceAppSettings
TargetHydrationStorageProviderType, TargetHydrationStorageProviderTypeArgs
- Azure
File Share - AzureFileShare
- Target
Hydration Storage Provider Type Azure File Share - AzureFileShare
- Azure
File Share - AzureFileShare
- Azure
File Share - AzureFileShare
- AZURE_FILE_SHARE
- AzureFileShare
- "Azure
File Share" - AzureFileShare
TargetStorageAccessType, TargetStorageAccessTypeArgs
- Shared
- Shared
- Exclusive
- Exclusive
- Target
Storage Access Type Shared - Shared
- Target
Storage Access Type Exclusive - Exclusive
- Shared
- Shared
- Exclusive
- Exclusive
- Shared
- Shared
- Exclusive
- Exclusive
- SHARED
- Shared
- EXCLUSIVE
- Exclusive
- "Shared"
- Shared
- "Exclusive"
- Exclusive
TargetStorageProfile, TargetStorageProfileArgs
- Pulumi.
Azure Native. Migrate. Inputs. Azure File Share Hydration Profile - Azure file share profile for hydration of application folders not mounted on the container file system.
- Hydration
Storage string | Pulumi.Provider Type Azure Native. Migrate. Target Hydration Storage Provider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- Persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- Storage
Access string | Pulumi.Type Azure Native. Migrate. Target Storage Access Type - Gets or sets the target storage access type.
- Storage
Projection string | Pulumi.Type Azure Native. Migrate. Target Storage Projection Type - Gets or sets the target projection type.
- Target
Name string - Gets or sets the name of the projected volume on the target environment.
- Target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile - Azure file share profile for hydration of application folders not mounted on the container file system.
- Hydration
Storage string | TargetProvider Type Hydration Storage Provider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- Persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- Storage
Access string | TargetType Storage Access Type - Gets or sets the target storage access type.
- Storage
Projection string | TargetType Storage Projection Type - Gets or sets the target projection type.
- Target
Name string - Gets or sets the name of the projected volume on the target environment.
- Target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage String | TargetProvider Type Hydration Storage Provider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume StringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access String | TargetType Storage Access Type - Gets or sets the target storage access type.
- storage
Projection String | TargetType Storage Projection Type - Gets or sets the target projection type.
- target
Name String - Gets or sets the name of the projected volume on the target environment.
- target
Size String - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage string | TargetProvider Type Hydration Storage Provider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access string | TargetType Storage Access Type - Gets or sets the target storage access type.
- storage
Projection string | TargetType Storage Projection Type - Gets or sets the target projection type.
- target
Name string - Gets or sets the name of the projected volume on the target environment.
- target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration_
storage_ str | Targetprovider_ type Hydration Storage Provider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent_
volume_ strid - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage_
access_ str | Targettype Storage Access Type - Gets or sets the target storage access type.
- storage_
projection_ str | Targettype Storage Projection Type - Gets or sets the target projection type.
- target_
name str - Gets or sets the name of the projected volume on the target environment.
- target_
size str - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Property Map
- Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage String | "AzureProvider Type File Share" - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume StringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access String | "Shared" | "Exclusive"Type - Gets or sets the target storage access type.
- storage
Projection String | "ContainerType File System" | "Persistent Volume" - Gets or sets the target projection type.
- target
Name String - Gets or sets the name of the projected volume on the target environment.
- target
Size String - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
TargetStorageProfileResponse, TargetStorageProfileResponseArgs
- Pulumi.
Azure Native. Migrate. Inputs. Azure File Share Hydration Profile Response - Azure file share profile for hydration of application folders not mounted on the container file system.
- Hydration
Storage stringProvider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- Persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- Storage
Access stringType - Gets or sets the target storage access type.
- Storage
Projection stringType - Gets or sets the target projection type.
- Target
Name string - Gets or sets the name of the projected volume on the target environment.
- Target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile Response - Azure file share profile for hydration of application folders not mounted on the container file system.
- Hydration
Storage stringProvider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- Persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- Storage
Access stringType - Gets or sets the target storage access type.
- Storage
Projection stringType - Gets or sets the target projection type.
- Target
Name string - Gets or sets the name of the projected volume on the target environment.
- Target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile Response - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage StringProvider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume StringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access StringType - Gets or sets the target storage access type.
- storage
Projection StringType - Gets or sets the target projection type.
- target
Name String - Gets or sets the name of the projected volume on the target environment.
- target
Size String - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile Response - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage stringProvider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume stringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access stringType - Gets or sets the target storage access type.
- storage
Projection stringType - Gets or sets the target projection type.
- target
Name string - Gets or sets the name of the projected volume on the target environment.
- target
Size string - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Azure
File Share Hydration Profile Response - Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration_
storage_ strprovider_ type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent_
volume_ strid - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage_
access_ strtype - Gets or sets the target storage access type.
- storage_
projection_ strtype - Gets or sets the target projection type.
- target_
name str - Gets or sets the name of the projected volume on the target environment.
- target_
size str - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
- Property Map
- Azure file share profile for hydration of application folders not mounted on the container file system.
- hydration
Storage StringProvider Type - Gets or sets the storage provider type on the target. Applicable when StorageProjectionType is not ContainerFileSystem.
- persistent
Volume StringId - Gets or sets the target persistent volume id. Applicable when StorageProjectionType is PersistentVolume and on using an existing PersistentVolume.
- storage
Access StringType - Gets or sets the target storage access type.
- storage
Projection StringType - Gets or sets the target projection type.
- target
Name String - Gets or sets the name of the projected volume on the target environment.
- target
Size String - Gets or sets the storage size on the target. Applicable when StorageProjectionType is PersistentVolume and on creating a new PersistentVolume.
TargetStorageProjectionType, TargetStorageProjectionTypeArgs
- Container
File System - ContainerFileSystem
- Persistent
Volume - PersistentVolume
- Target
Storage Projection Type Container File System - ContainerFileSystem
- Target
Storage Projection Type Persistent Volume - PersistentVolume
- Container
File System - ContainerFileSystem
- Persistent
Volume - PersistentVolume
- Container
File System - ContainerFileSystem
- Persistent
Volume - PersistentVolume
- CONTAINER_FILE_SYSTEM
- ContainerFileSystem
- PERSISTENT_VOLUME
- PersistentVolume
- "Container
File System" - ContainerFileSystem
- "Persistent
Volume" - PersistentVolume
WebApplicationConfiguration, WebApplicationConfigurationArgs
- File
Path string - Gets or sets the configuration file path.
- Identifier string
- Gets or sets the identifier for the configuration.
- Is
Deployment boolTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- Local
File stringPath - Gets or sets the configuration local file path.
- Name string
- Gets or sets the configuration name.
- Secret
Store Pulumi.Details Azure Native. Migrate. Inputs. Secret Store Details - Section string
- Gets or sets the configuration section in the file.
- Target
File stringPath - Gets or sets the configuration target file path.
- Type
string | Pulumi.
Azure Native. Migrate. Configuration Type - Gets or sets the configuration type.
- Value string
- Gets or sets the configuration value.
- File
Path string - Gets or sets the configuration file path.
- Identifier string
- Gets or sets the identifier for the configuration.
- Is
Deployment boolTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- Local
File stringPath - Gets or sets the configuration local file path.
- Name string
- Gets or sets the configuration name.
- Secret
Store SecretDetails Store Details - Section string
- Gets or sets the configuration section in the file.
- Target
File stringPath - Gets or sets the configuration target file path.
- Type
string | Configuration
Type - Gets or sets the configuration type.
- Value string
- Gets or sets the configuration value.
- file
Path String - Gets or sets the configuration file path.
- identifier String
- Gets or sets the identifier for the configuration.
- is
Deployment BooleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File StringPath - Gets or sets the configuration local file path.
- name String
- Gets or sets the configuration name.
- secret
Store SecretDetails Store Details - section String
- Gets or sets the configuration section in the file.
- target
File StringPath - Gets or sets the configuration target file path.
- type
String | Configuration
Type - Gets or sets the configuration type.
- value String
- Gets or sets the configuration value.
- file
Path string - Gets or sets the configuration file path.
- identifier string
- Gets or sets the identifier for the configuration.
- is
Deployment booleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File stringPath - Gets or sets the configuration local file path.
- name string
- Gets or sets the configuration name.
- secret
Store SecretDetails Store Details - section string
- Gets or sets the configuration section in the file.
- target
File stringPath - Gets or sets the configuration target file path.
- type
string | Configuration
Type - Gets or sets the configuration type.
- value string
- Gets or sets the configuration value.
- file_
path str - Gets or sets the configuration file path.
- identifier str
- Gets or sets the identifier for the configuration.
- is_
deployment_ booltime_ editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local_
file_ strpath - Gets or sets the configuration local file path.
- name str
- Gets or sets the configuration name.
- secret_
store_ Secretdetails Store Details - section str
- Gets or sets the configuration section in the file.
- target_
file_ strpath - Gets or sets the configuration target file path.
- type
str | Configuration
Type - Gets or sets the configuration type.
- value str
- Gets or sets the configuration value.
- file
Path String - Gets or sets the configuration file path.
- identifier String
- Gets or sets the identifier for the configuration.
- is
Deployment BooleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File StringPath - Gets or sets the configuration local file path.
- name String
- Gets or sets the configuration name.
- secret
Store Property MapDetails - section String
- Gets or sets the configuration section in the file.
- target
File StringPath - Gets or sets the configuration target file path.
- type
String | "IISConnection
String" | "IISAuthentication" | "Apache Tomcat Context Resource" - Gets or sets the configuration type.
- value String
- Gets or sets the configuration value.
WebApplicationConfigurationResponse, WebApplicationConfigurationResponseArgs
- Id string
- Gets the ID.
- File
Path string - Gets or sets the configuration file path.
- Identifier string
- Gets or sets the identifier for the configuration.
- Is
Deployment boolTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- Local
File stringPath - Gets or sets the configuration local file path.
- Name string
- Gets or sets the configuration name.
- Secret
Store Pulumi.Details Azure Native. Migrate. Inputs. Secret Store Details Response - Section string
- Gets or sets the configuration section in the file.
- Target
File stringPath - Gets or sets the configuration target file path.
- Type string
- Gets or sets the configuration type.
- Value string
- Gets or sets the configuration value.
- Id string
- Gets the ID.
- File
Path string - Gets or sets the configuration file path.
- Identifier string
- Gets or sets the identifier for the configuration.
- Is
Deployment boolTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- Local
File stringPath - Gets or sets the configuration local file path.
- Name string
- Gets or sets the configuration name.
- Secret
Store SecretDetails Store Details Response - Section string
- Gets or sets the configuration section in the file.
- Target
File stringPath - Gets or sets the configuration target file path.
- Type string
- Gets or sets the configuration type.
- Value string
- Gets or sets the configuration value.
- id String
- Gets the ID.
- file
Path String - Gets or sets the configuration file path.
- identifier String
- Gets or sets the identifier for the configuration.
- is
Deployment BooleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File StringPath - Gets or sets the configuration local file path.
- name String
- Gets or sets the configuration name.
- secret
Store SecretDetails Store Details Response - section String
- Gets or sets the configuration section in the file.
- target
File StringPath - Gets or sets the configuration target file path.
- type String
- Gets or sets the configuration type.
- value String
- Gets or sets the configuration value.
- id string
- Gets the ID.
- file
Path string - Gets or sets the configuration file path.
- identifier string
- Gets or sets the identifier for the configuration.
- is
Deployment booleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File stringPath - Gets or sets the configuration local file path.
- name string
- Gets or sets the configuration name.
- secret
Store SecretDetails Store Details Response - section string
- Gets or sets the configuration section in the file.
- target
File stringPath - Gets or sets the configuration target file path.
- type string
- Gets or sets the configuration type.
- value string
- Gets or sets the configuration value.
- id str
- Gets the ID.
- file_
path str - Gets or sets the configuration file path.
- identifier str
- Gets or sets the identifier for the configuration.
- is_
deployment_ booltime_ editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local_
file_ strpath - Gets or sets the configuration local file path.
- name str
- Gets or sets the configuration name.
- secret_
store_ Secretdetails Store Details Response - section str
- Gets or sets the configuration section in the file.
- target_
file_ strpath - Gets or sets the configuration target file path.
- type str
- Gets or sets the configuration type.
- value str
- Gets or sets the configuration value.
- id String
- Gets the ID.
- file
Path String - Gets or sets the configuration file path.
- identifier String
- Gets or sets the identifier for the configuration.
- is
Deployment BooleanTime Editable - Gets or sets a value indicating whether the configuration is edited or not by the user.
- local
File StringPath - Gets or sets the configuration local file path.
- name String
- Gets or sets the configuration name.
- secret
Store Property MapDetails - section String
- Gets or sets the configuration section in the file.
- target
File StringPath - Gets or sets the configuration target file path.
- type String
- Gets or sets the configuration type.
- value String
- Gets or sets the configuration value.
WebApplicationDirectory, WebApplicationDirectoryArgs
- Is
Editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- Source
Paths List<string> - Gets or sets the paths of the directory on the source machine.
- Source
Size string - Gets or sets the size of the directory on the source machine.
- Storage
Profile Pulumi.Azure Native. Migrate. Inputs. Target Storage Profile - Storage profile for the directory on the target container.
- Is
Editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- Source
Paths []string - Gets or sets the paths of the directory on the source machine.
- Source
Size string - Gets or sets the size of the directory on the source machine.
- Storage
Profile TargetStorage Profile - Storage profile for the directory on the target container.
- is
Editable Boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths List<String> - Gets or sets the paths of the directory on the source machine.
- source
Size String - Gets or sets the size of the directory on the source machine.
- storage
Profile TargetStorage Profile - Storage profile for the directory on the target container.
- is
Editable boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths string[] - Gets or sets the paths of the directory on the source machine.
- source
Size string - Gets or sets the size of the directory on the source machine.
- storage
Profile TargetStorage Profile - Storage profile for the directory on the target container.
- is_
editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source_
paths Sequence[str] - Gets or sets the paths of the directory on the source machine.
- source_
size str - Gets or sets the size of the directory on the source machine.
- storage_
profile TargetStorage Profile - Storage profile for the directory on the target container.
- is
Editable Boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths List<String> - Gets or sets the paths of the directory on the source machine.
- source
Size String - Gets or sets the size of the directory on the source machine.
- storage
Profile Property Map - Storage profile for the directory on the target container.
WebApplicationDirectoryResponse, WebApplicationDirectoryResponseArgs
- Id string
- Gets the unique id corresponding to the application directory.
- Is
Editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- Source
Paths List<string> - Gets or sets the paths of the directory on the source machine.
- Source
Size string - Gets or sets the size of the directory on the source machine.
- Storage
Profile Pulumi.Azure Native. Migrate. Inputs. Target Storage Profile Response - Storage profile for the directory on the target container.
- Id string
- Gets the unique id corresponding to the application directory.
- Is
Editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- Source
Paths []string - Gets or sets the paths of the directory on the source machine.
- Source
Size string - Gets or sets the size of the directory on the source machine.
- Storage
Profile TargetStorage Profile Response - Storage profile for the directory on the target container.
- id String
- Gets the unique id corresponding to the application directory.
- is
Editable Boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths List<String> - Gets or sets the paths of the directory on the source machine.
- source
Size String - Gets or sets the size of the directory on the source machine.
- storage
Profile TargetStorage Profile Response - Storage profile for the directory on the target container.
- id string
- Gets the unique id corresponding to the application directory.
- is
Editable boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths string[] - Gets or sets the paths of the directory on the source machine.
- source
Size string - Gets or sets the size of the directory on the source machine.
- storage
Profile TargetStorage Profile Response - Storage profile for the directory on the target container.
- id str
- Gets the unique id corresponding to the application directory.
- is_
editable bool - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source_
paths Sequence[str] - Gets or sets the paths of the directory on the source machine.
- source_
size str - Gets or sets the size of the directory on the source machine.
- storage_
profile TargetStorage Profile Response - Storage profile for the directory on the target container.
- id String
- Gets the unique id corresponding to the application directory.
- is
Editable Boolean - Gets or sets a value indicating whether the directory object is editable. True when the directory is added as an optional directory, false when discovery is done manually.
- source
Paths List<String> - Gets or sets the paths of the directory on the source machine.
- source
Size String - Gets or sets the size of the directory on the source machine.
- storage
Profile Property Map - Storage profile for the directory on the target container.
WebApplicationFramework, WebApplicationFrameworkArgs
WebApplicationFrameworkResponse, WebApplicationFrameworkResponseArgs
WorkloadInstanceModelProperties, WorkloadInstanceModelPropertiesArgs
- Custom
Properties Pulumi.Azure | Pulumi.Native. Migrate. Inputs. Apache Tomcat Workload Instance Model Custom Properties Azure Native. Migrate. Inputs. IISWorkload Instance Model Custom Properties - Workload instance model custom properties.
- Display
Name string - Gets or sets the display name.
- Master
Site stringName - Gets or Sets the master site name.
- Migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- Name string
- Gets or sets the workload instance name.
- Source
Name string - Gets or sets the source name.
- Source
Platform string - Gets or sets the source platform.
- Custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Instance Model Custom Properties - Workload instance model custom properties.
- Display
Name string - Gets or sets the display name.
- Master
Site stringName - Gets or Sets the master site name.
- Migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- Name string
- Gets or sets the workload instance name.
- Source
Name string - Gets or sets the source name.
- Source
Platform string - Gets or sets the source platform.
- custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Instance Model Custom Properties - Workload instance model custom properties.
- display
Name String - Gets or sets the display name.
- master
Site StringName - Gets or Sets the master site name.
- migrate
Agent StringId - Gets or sets the migrate agent id associated with the workload instance.
- name String
- Gets or sets the workload instance name.
- source
Name String - Gets or sets the source name.
- source
Platform String - Gets or sets the source platform.
- custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Instance Model Custom Properties - Workload instance model custom properties.
- display
Name string - Gets or sets the display name.
- master
Site stringName - Gets or Sets the master site name.
- migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- name string
- Gets or sets the workload instance name.
- source
Name string - Gets or sets the source name.
- source
Platform string - Gets or sets the source platform.
- custom_
properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Instance Model Custom Properties - Workload instance model custom properties.
- display_
name str - Gets or sets the display name.
- master_
site_ strname - Gets or Sets the master site name.
- migrate_
agent_ strid - Gets or sets the migrate agent id associated with the workload instance.
- name str
- Gets or sets the workload instance name.
- source_
name str - Gets or sets the source name.
- source_
platform str - Gets or sets the source platform.
- custom
Properties Property Map | Property Map - Workload instance model custom properties.
- display
Name String - Gets or sets the display name.
- master
Site StringName - Gets or Sets the master site name.
- migrate
Agent StringId - Gets or sets the migrate agent id associated with the workload instance.
- name String
- Gets or sets the workload instance name.
- source
Name String - Gets or sets the source name.
- source
Platform String - Gets or sets the source platform.
WorkloadInstanceModelPropertiesResponse, WorkloadInstanceModelPropertiesResponseArgs
- Allowed
Operations List<string> - Gets or sets the allowed scenarios on the workload instance.
- Current
Job Pulumi.Azure Native. Migrate. Inputs. Workload Instance Model Properties Response Current Job - Health
Errors List<Pulumi.Azure Native. Migrate. Inputs. Health Error Model Response> - Gets or sets the list of health errors.
- Last
Successful stringReplication Cycle Time - Gets or sets the Last successful replication cycle time.
- Provisioning
State string - Gets or sets the provisioning state of the workload instance.
- Replication
Health string - Gets or sets the replication health of the workload instance.
- Replication
Status string - Gets or sets the replication state of the workload instance.
- Replication
Status stringDescription - Gets or sets the workload replication state description.
- Custom
Properties Pulumi.Azure | Pulumi.Native. Migrate. Inputs. Apache Tomcat Workload Instance Model Custom Properties Response Azure Native. Migrate. Inputs. IISWorkload Instance Model Custom Properties Response - Workload instance model custom properties.
- Display
Name string - Gets or sets the display name.
- Master
Site stringName - Gets or Sets the master site name.
- Migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- Name string
- Gets or sets the workload instance name.
- Source
Name string - Gets or sets the source name.
- Source
Platform string - Gets or sets the source platform.
- Allowed
Operations []string - Gets or sets the allowed scenarios on the workload instance.
- Current
Job WorkloadInstance Model Properties Response Current Job - Health
Errors []HealthError Model Response - Gets or sets the list of health errors.
- Last
Successful stringReplication Cycle Time - Gets or sets the Last successful replication cycle time.
- Provisioning
State string - Gets or sets the provisioning state of the workload instance.
- Replication
Health string - Gets or sets the replication health of the workload instance.
- Replication
Status string - Gets or sets the replication state of the workload instance.
- Replication
Status stringDescription - Gets or sets the workload replication state description.
- Custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Response Instance Model Custom Properties Response - Workload instance model custom properties.
- Display
Name string - Gets or sets the display name.
- Master
Site stringName - Gets or Sets the master site name.
- Migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- Name string
- Gets or sets the workload instance name.
- Source
Name string - Gets or sets the source name.
- Source
Platform string - Gets or sets the source platform.
- allowed
Operations List<String> - Gets or sets the allowed scenarios on the workload instance.
- current
Job WorkloadInstance Model Properties Response Current Job - health
Errors List<HealthError Model Response> - Gets or sets the list of health errors.
- last
Successful StringReplication Cycle Time - Gets or sets the Last successful replication cycle time.
- provisioning
State String - Gets or sets the provisioning state of the workload instance.
- replication
Health String - Gets or sets the replication health of the workload instance.
- replication
Status String - Gets or sets the replication state of the workload instance.
- replication
Status StringDescription - Gets or sets the workload replication state description.
- custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Response Instance Model Custom Properties Response - Workload instance model custom properties.
- display
Name String - Gets or sets the display name.
- master
Site StringName - Gets or Sets the master site name.
- migrate
Agent StringId - Gets or sets the migrate agent id associated with the workload instance.
- name String
- Gets or sets the workload instance name.
- source
Name String - Gets or sets the source name.
- source
Platform String - Gets or sets the source platform.
- allowed
Operations string[] - Gets or sets the allowed scenarios on the workload instance.
- current
Job WorkloadInstance Model Properties Response Current Job - health
Errors HealthError Model Response[] - Gets or sets the list of health errors.
- last
Successful stringReplication Cycle Time - Gets or sets the Last successful replication cycle time.
- provisioning
State string - Gets or sets the provisioning state of the workload instance.
- replication
Health string - Gets or sets the replication health of the workload instance.
- replication
Status string - Gets or sets the replication state of the workload instance.
- replication
Status stringDescription - Gets or sets the workload replication state description.
- custom
Properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Response Instance Model Custom Properties Response - Workload instance model custom properties.
- display
Name string - Gets or sets the display name.
- master
Site stringName - Gets or Sets the master site name.
- migrate
Agent stringId - Gets or sets the migrate agent id associated with the workload instance.
- name string
- Gets or sets the workload instance name.
- source
Name string - Gets or sets the source name.
- source
Platform string - Gets or sets the source platform.
- allowed_
operations Sequence[str] - Gets or sets the allowed scenarios on the workload instance.
- current_
job WorkloadInstance Model Properties Response Current Job - health_
errors Sequence[HealthError Model Response] - Gets or sets the list of health errors.
- last_
successful_ strreplication_ cycle_ time - Gets or sets the Last successful replication cycle time.
- provisioning_
state str - Gets or sets the provisioning state of the workload instance.
- replication_
health str - Gets or sets the replication health of the workload instance.
- replication_
status str - Gets or sets the replication state of the workload instance.
- replication_
status_ strdescription - Gets or sets the workload replication state description.
- custom_
properties ApacheTomcat | IISWorkloadWorkload Instance Model Custom Properties Response Instance Model Custom Properties Response - Workload instance model custom properties.
- display_
name str - Gets or sets the display name.
- master_
site_ strname - Gets or Sets the master site name.
- migrate_
agent_ strid - Gets or sets the migrate agent id associated with the workload instance.
- name str
- Gets or sets the workload instance name.
- source_
name str - Gets or sets the source name.
- source_
platform str - Gets or sets the source platform.
- allowed
Operations List<String> - Gets or sets the allowed scenarios on the workload instance.
- current
Job Property Map - health
Errors List<Property Map> - Gets or sets the list of health errors.
- last
Successful StringReplication Cycle Time - Gets or sets the Last successful replication cycle time.
- provisioning
State String - Gets or sets the provisioning state of the workload instance.
- replication
Health String - Gets or sets the replication health of the workload instance.
- replication
Status String - Gets or sets the replication state of the workload instance.
- replication
Status StringDescription - Gets or sets the workload replication state description.
- custom
Properties Property Map | Property Map - Workload instance model custom properties.
- display
Name String - Gets or sets the display name.
- master
Site StringName - Gets or Sets the master site name.
- migrate
Agent StringId - Gets or sets the migrate agent id associated with the workload instance.
- name String
- Gets or sets the workload instance name.
- source
Name String - Gets or sets the source name.
- source
Platform String - Gets or sets the source platform.
WorkloadInstanceModelPropertiesResponseCurrentJob, WorkloadInstanceModelPropertiesResponseCurrentJobArgs
- Display
Name string - Gets or sets the workflow friendly display name.
- End
Time string - Gets or sets end time of the workflow.
- Id string
- Gets or sets workflow Id.
- Name string
- Gets or sets workflow name.
- Scenario
Name string - Gets or sets workload scenario name.
- Start
Time string - Gets or sets start time of the workflow.
- State string
- Gets or sets workflow state.
- Display
Name string - Gets or sets the workflow friendly display name.
- End
Time string - Gets or sets end time of the workflow.
- Id string
- Gets or sets workflow Id.
- Name string
- Gets or sets workflow name.
- Scenario
Name string - Gets or sets workload scenario name.
- Start
Time string - Gets or sets start time of the workflow.
- State string
- Gets or sets workflow state.
- display
Name String - Gets or sets the workflow friendly display name.
- end
Time String - Gets or sets end time of the workflow.
- id String
- Gets or sets workflow Id.
- name String
- Gets or sets workflow name.
- scenario
Name String - Gets or sets workload scenario name.
- start
Time String - Gets or sets start time of the workflow.
- state String
- Gets or sets workflow state.
- display
Name string - Gets or sets the workflow friendly display name.
- end
Time string - Gets or sets end time of the workflow.
- id string
- Gets or sets workflow Id.
- name string
- Gets or sets workflow name.
- scenario
Name string - Gets or sets workload scenario name.
- start
Time string - Gets or sets start time of the workflow.
- state string
- Gets or sets workflow state.
- display_
name str - Gets or sets the workflow friendly display name.
- end_
time str - Gets or sets end time of the workflow.
- id str
- Gets or sets workflow Id.
- name str
- Gets or sets workflow name.
- scenario_
name str - Gets or sets workload scenario name.
- start_
time str - Gets or sets start time of the workflow.
- state str
- Gets or sets workflow state.
- display
Name String - Gets or sets the workflow friendly display name.
- end
Time String - Gets or sets end time of the workflow.
- id String
- Gets or sets workflow Id.
- name String
- Gets or sets workflow name.
- scenario
Name String - Gets or sets workload scenario name.
- start
Time String - Gets or sets start time of the workflow.
- state String
- Gets or sets workflow state.
WorkloadInstanceModelResponseSystemData, WorkloadInstanceModelResponseSystemDataArgs
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At string - Gets or sets the timestamp of resource creation (UTC).
- created
By string - Gets or sets identity that created the resource.
- created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified stringBy - Gets or sets the identity that last modified the resource.
- last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created_
at str - Gets or sets the timestamp of resource creation (UTC).
- created_
by str - Gets or sets identity that created the resource.
- created_
by_ strtype - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last_
modified_ strat - Gets or sets the timestamp of resource last modification (UTC).
- last_
modified_ strby - Gets or sets the identity that last modified the resource.
- last_
modified_ strby_ type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:WorkloadInstance piu /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/modernizeProjects/{modernizeProjectName}/workloadInstances/{workloadInstanceName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0