azure-native-v2.migrate.MigrateAgent
Explore with Pulumi AI
MigrateAgent model. Azure REST API version: 2022-05-01-preview.
Example Usage
MigrateAgent_Create_MaximumSet_Gen
MigrateAgent_Create_MinimumSet_Gen
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var migrateAgent = new AzureNative.Migrate.MigrateAgent("migrateAgent", new()
{
AgentName = "e85v",
ModernizeProjectName = "l77ak",
ResourceGroupName = "rgmigrateEngine",
});
});
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.NewMigrateAgent(ctx, "migrateAgent", &migrate.MigrateAgentArgs{
AgentName: pulumi.String("e85v"),
ModernizeProjectName: pulumi.String("l77ak"),
ResourceGroupName: pulumi.String("rgmigrateEngine"),
})
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.MigrateAgent;
import com.pulumi.azurenative.migrate.MigrateAgentArgs;
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 migrateAgent = new MigrateAgent("migrateAgent", MigrateAgentArgs.builder()
.agentName("e85v")
.modernizeProjectName("l77ak")
.resourceGroupName("rgmigrateEngine")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const migrateAgent = new azure_native.migrate.MigrateAgent("migrateAgent", {
agentName: "e85v",
modernizeProjectName: "l77ak",
resourceGroupName: "rgmigrateEngine",
});
import pulumi
import pulumi_azure_native as azure_native
migrate_agent = azure_native.migrate.MigrateAgent("migrateAgent",
agent_name="e85v",
modernize_project_name="l77ak",
resource_group_name="rgmigrateEngine")
resources:
migrateAgent:
type: azure-native:migrate:MigrateAgent
properties:
agentName: e85v
modernizeProjectName: l77ak
resourceGroupName: rgmigrateEngine
Create MigrateAgent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MigrateAgent(name: string, args: MigrateAgentArgs, opts?: CustomResourceOptions);
@overload
def MigrateAgent(resource_name: str,
args: MigrateAgentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MigrateAgent(resource_name: str,
opts: Optional[ResourceOptions] = None,
modernize_project_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
agent_name: Optional[str] = None,
properties: Optional[MigrateAgentModelPropertiesArgs] = None,
subscription_id: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewMigrateAgent(ctx *Context, name string, args MigrateAgentArgs, opts ...ResourceOption) (*MigrateAgent, error)
public MigrateAgent(string name, MigrateAgentArgs args, CustomResourceOptions? opts = null)
public MigrateAgent(String name, MigrateAgentArgs args)
public MigrateAgent(String name, MigrateAgentArgs args, CustomResourceOptions options)
type: azure-native:migrate:MigrateAgent
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MigrateAgentArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. MigrateAgentArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MigrateAgentArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MigrateAgentArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. MigrateAgentArgs - 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 migrateAgentResource = new AzureNative.Migrate.MigrateAgent("migrateAgentResource", new()
{
ModernizeProjectName = "string",
ResourceGroupName = "string",
AgentName = "string",
Properties =
{
{ "authenticationIdentity",
{
{ "aadAuthority", "string" },
{ "applicationId", "string" },
{ "audience", "string" },
{ "objectId", "string" },
{ "tenantId", "string" },
} },
{ "customProperties",
{
{ "instanceType", "VMwareMigrateAgentModelCustomProperties" },
{ "fabricFriendlyName", "string" },
{ "vmwareSiteId", "string" },
} },
{ "machineId", "string" },
{ "machineName", "string" },
},
SubscriptionId = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := migrate.NewMigrateAgent(ctx, "migrateAgentResource", &migrate.MigrateAgentArgs{
ModernizeProjectName: "string",
ResourceGroupName: "string",
AgentName: "string",
Properties: map[string]interface{}{
"authenticationIdentity": map[string]interface{}{
"aadAuthority": "string",
"applicationId": "string",
"audience": "string",
"objectId": "string",
"tenantId": "string",
},
"customProperties": map[string]interface{}{
"instanceType": "VMwareMigrateAgentModelCustomProperties",
"fabricFriendlyName": "string",
"vmwareSiteId": "string",
},
"machineId": "string",
"machineName": "string",
},
SubscriptionId: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var migrateAgentResource = new MigrateAgent("migrateAgentResource", MigrateAgentArgs.builder()
.modernizeProjectName("string")
.resourceGroupName("string")
.agentName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.subscriptionId("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
migrate_agent_resource = azure_native.migrate.MigrateAgent("migrateAgentResource",
modernize_project_name=string,
resource_group_name=string,
agent_name=string,
properties={
authenticationIdentity: {
aadAuthority: string,
applicationId: string,
audience: string,
objectId: string,
tenantId: string,
},
customProperties: {
instanceType: VMwareMigrateAgentModelCustomProperties,
fabricFriendlyName: string,
vmwareSiteId: string,
},
machineId: string,
machineName: string,
},
subscription_id=string,
tags={
string: string,
})
const migrateAgentResource = new azure_native.migrate.MigrateAgent("migrateAgentResource", {
modernizeProjectName: "string",
resourceGroupName: "string",
agentName: "string",
properties: {
authenticationIdentity: {
aadAuthority: "string",
applicationId: "string",
audience: "string",
objectId: "string",
tenantId: "string",
},
customProperties: {
instanceType: "VMwareMigrateAgentModelCustomProperties",
fabricFriendlyName: "string",
vmwareSiteId: "string",
},
machineId: "string",
machineName: "string",
},
subscriptionId: "string",
tags: {
string: "string",
},
});
type: azure-native:migrate:MigrateAgent
properties:
agentName: string
modernizeProjectName: string
properties:
authenticationIdentity:
aadAuthority: string
applicationId: string
audience: string
objectId: string
tenantId: string
customProperties:
fabricFriendlyName: string
instanceType: VMwareMigrateAgentModelCustomProperties
vmwareSiteId: string
machineId: string
machineName: string
resourceGroupName: string
subscriptionId: string
tags:
string: string
MigrateAgent Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The MigrateAgent resource accepts the following input properties:
- Modernize
Project Name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- Agent
Name Changes to this property will trigger replacement.
- MigrateAgent name.
- Properties
Pulumi.
Azure Native. Migrate. Inputs. Migrate Agent Model Properties - MigrateAgent model properties.
- Subscription
Id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- Dictionary<string, string>
- Gets or sets the resource tags.
- Modernize
Project Name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- Agent
Name Changes to this property will trigger replacement.
- MigrateAgent name.
- Properties
Migrate
Agent Model Properties Args - MigrateAgent model properties.
- Subscription
Id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- map[string]string
- Gets or sets the resource tags.
- modernize
Project Name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- agent
Name Changes to this property will trigger replacement.
- MigrateAgent name.
- properties
Migrate
Agent Model Properties - MigrateAgent model properties.
- subscription
Id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- Map<String,String>
- Gets or sets the resource tags.
- modernize
Project Name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- agent
Name Changes to this property will trigger replacement.
- MigrateAgent name.
- properties
Migrate
Agent Model Properties - MigrateAgent model properties.
- subscription
Id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- {[key: string]: string}
- Gets or sets the resource tags.
- modernize_
project_ name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- agent_
name Changes to this property will trigger replacement.
- MigrateAgent name.
- properties
Migrate
Agent Model Properties Args - MigrateAgent model properties.
- subscription_
id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- Mapping[str, str]
- Gets or sets the resource tags.
- modernize
Project Name This property is required. Changes to this property will trigger replacement.
- ModernizeProject name.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the Azure Resource Group that project is part of.
- agent
Name Changes to this property will trigger replacement.
- MigrateAgent name.
- properties Property Map
- MigrateAgent model properties.
- subscription
Id Changes to this property will trigger replacement.
- Azure Subscription Id in which project was created.
- Map<String>
- Gets or sets the resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the MigrateAgent 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. Migrate Agent 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 MigrateAgent 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 MigrateAgent 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 MigrateAgent 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 MigrateAgent 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
HealthErrorModelResponse, HealthErrorModelResponseArgs
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Id
This property is required. string - Gets the ID.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. 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
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Id
This property is required. string - Gets the ID.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. 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
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- id
This property is required. String - Gets the ID.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. 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
This property is required. string - Gets or sets the error category.
- causes
This property is required. string - Gets or sets possible causes of the error.
- code
This property is required. string - Gets or sets the error code.
- creation
Time This property is required. string - Gets or sets the error creation time.
- health
Category This property is required. string - Gets or sets the health category.
- id
This property is required. string - Gets the ID.
- is
Customer Resolvable This property is required. boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. string - Gets or sets the error message.
- recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- severity
This property is required. string - Gets or sets the error severity.
- source
This property is required. string - Gets or sets the error source.
- summary
This property is required. 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
This property is required. str - Gets or sets the error category.
- causes
This property is required. str - Gets or sets possible causes of the error.
- code
This property is required. str - Gets or sets the error code.
- creation_
time This property is required. str - Gets or sets the error creation time.
- health_
category This property is required. str - Gets or sets the health category.
- id
This property is required. str - Gets the ID.
- is_
customer_ resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. str - Gets or sets the error message.
- recommendation
This property is required. str - Gets or sets recommended action to resolve the error.
- severity
This property is required. str - Gets or sets the error severity.
- source
This property is required. str - Gets or sets the error source.
- summary
This property is required. 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
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- id
This property is required. String - Gets the ID.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. 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.
IdentityModel, IdentityModelArgs
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- Application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- Audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- Object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- Tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- Application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- Audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- Object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- Tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- String
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id String - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience String
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id String - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id String - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- str
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application_
id str - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience str
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object_
id str - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant_
id str - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- String
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id String - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience String
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id String - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id String - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
IdentityModelResponse, IdentityModelResponseArgs
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- Application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- Audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- Object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- Tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- Application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- Audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- Object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- Tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- String
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id String - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience String
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id String - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id String - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- string
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id string - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience string
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id string - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id string - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- str
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application_
id str - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience str
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object_
id str - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant_
id str - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
- String
- Gets or sets the authority of the SPN with which MigrateAgent communicates to service.
- application
Id String - Gets or sets the client/application Id of the SPN with which MigrateAgent communicates to service.
- audience String
- Gets or sets the audience of the SPN with which MigrateAgent communicates to service.
- object
Id String - Gets or sets the object Id of the SPN with which MigrateAgent communicates to service.
- tenant
Id String - Gets or sets the tenant Id of the SPN with which MigrateAgent communicates to service.
InnerHealthErrorModelResponse, InnerHealthErrorModelResponseArgs
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Id
This property is required. string - Gets the ID.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- Category
This property is required. string - Gets or sets the error category.
- Causes
This property is required. string - Gets or sets possible causes of the error.
- Code
This property is required. string - Gets or sets the error code.
- Creation
Time This property is required. string - Gets or sets the error creation time.
- Health
Category This property is required. string - Gets or sets the health category.
- Id
This property is required. string - Gets the ID.
- Is
Customer Resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- Message
This property is required. string - Gets or sets the error message.
- Recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- Severity
This property is required. string - Gets or sets the error severity.
- Source
This property is required. string - Gets or sets the error source.
- Summary
This property is required. string - Gets or sets the error summary.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- id
This property is required. String - Gets the ID.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
- category
This property is required. string - Gets or sets the error category.
- causes
This property is required. string - Gets or sets possible causes of the error.
- code
This property is required. string - Gets or sets the error code.
- creation
Time This property is required. string - Gets or sets the error creation time.
- health
Category This property is required. string - Gets or sets the health category.
- id
This property is required. string - Gets the ID.
- is
Customer Resolvable This property is required. boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. string - Gets or sets the error message.
- recommendation
This property is required. string - Gets or sets recommended action to resolve the error.
- severity
This property is required. string - Gets or sets the error severity.
- source
This property is required. string - Gets or sets the error source.
- summary
This property is required. string - Gets or sets the error summary.
- category
This property is required. str - Gets or sets the error category.
- causes
This property is required. str - Gets or sets possible causes of the error.
- code
This property is required. str - Gets or sets the error code.
- creation_
time This property is required. str - Gets or sets the error creation time.
- health_
category This property is required. str - Gets or sets the health category.
- id
This property is required. str - Gets the ID.
- is_
customer_ resolvable This property is required. bool - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. str - Gets or sets the error message.
- recommendation
This property is required. str - Gets or sets recommended action to resolve the error.
- severity
This property is required. str - Gets or sets the error severity.
- source
This property is required. str - Gets or sets the error source.
- summary
This property is required. str - Gets or sets the error summary.
- category
This property is required. String - Gets or sets the error category.
- causes
This property is required. String - Gets or sets possible causes of the error.
- code
This property is required. String - Gets or sets the error code.
- creation
Time This property is required. String - Gets or sets the error creation time.
- health
Category This property is required. String - Gets or sets the health category.
- id
This property is required. String - Gets the ID.
- is
Customer Resolvable This property is required. Boolean - Gets or sets a value indicating whether the error is customer resolvable.
- message
This property is required. String - Gets or sets the error message.
- recommendation
This property is required. String - Gets or sets recommended action to resolve the error.
- severity
This property is required. String - Gets or sets the error severity.
- source
This property is required. String - Gets or sets the error source.
- summary
This property is required. String - Gets or sets the error summary.
MigrateAgentModelProperties, MigrateAgentModelPropertiesArgs
- Authentication
Identity Pulumi.Azure Native. Migrate. Inputs. Identity Model - Identity model.
- Custom
Properties Pulumi.Azure Native. Migrate. Inputs. VMware Migrate Agent Model Custom Properties - MigrateAgent model custom properties.
- Machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- Machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- Authentication
Identity IdentityModel - Identity model.
- Custom
Properties VMwareMigrate Agent Model Custom Properties - MigrateAgent model custom properties.
- Machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- Machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- authentication
Identity IdentityModel - Identity model.
- custom
Properties VMwareMigrate Agent Model Custom Properties - MigrateAgent model custom properties.
- machine
Id String - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name String - Gets or sets the machine name where MigrateAgent is running.
- authentication
Identity IdentityModel - Identity model.
- custom
Properties VMwareMigrate Agent Model Custom Properties - MigrateAgent model custom properties.
- machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- authentication_
identity IdentityModel - Identity model.
- custom_
properties VMwareMigrate Agent Model Custom Properties - MigrateAgent model custom properties.
- machine_
id str - Gets or sets the machine Id where MigrateAgent is running.
- machine_
name str - Gets or sets the machine name where MigrateAgent is running.
- authentication
Identity Property Map - Identity model.
- custom
Properties Property Map - MigrateAgent model custom properties.
- machine
Id String - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name String - Gets or sets the machine name where MigrateAgent is running.
MigrateAgentModelPropertiesResponse, MigrateAgentModelPropertiesResponseArgs
- Correlation
Id This property is required. string - Gets or sets the MigrateAgent correlation Id.
- Health
Errors This property is required. List<Pulumi.Azure Native. Migrate. Inputs. Health Error Model Response> - Gets or sets the list of health errors.
- Is
Responsive This property is required. bool - Gets or sets a value indicating whether MigrateAgent is responsive.
- Last
Heartbeat This property is required. string - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- Provisioning
State This property is required. string - Gets or sets the provisioning state of the MigrateAgent.
- Version
Number This property is required. string - Gets or sets the MigrateAgent version.
- Authentication
Identity Pulumi.Azure Native. Migrate. Inputs. Identity Model Response - Identity model.
- Custom
Properties Pulumi.Azure Native. Migrate. Inputs. VMware Migrate Agent Model Custom Properties Response - MigrateAgent model custom properties.
- Machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- Machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- Correlation
Id This property is required. string - Gets or sets the MigrateAgent correlation Id.
- Health
Errors This property is required. []HealthError Model Response - Gets or sets the list of health errors.
- Is
Responsive This property is required. bool - Gets or sets a value indicating whether MigrateAgent is responsive.
- Last
Heartbeat This property is required. string - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- Provisioning
State This property is required. string - Gets or sets the provisioning state of the MigrateAgent.
- Version
Number This property is required. string - Gets or sets the MigrateAgent version.
- Authentication
Identity IdentityModel Response - Identity model.
- Custom
Properties VMwareMigrate Agent Model Custom Properties Response - MigrateAgent model custom properties.
- Machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- Machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- correlation
Id This property is required. String - Gets or sets the MigrateAgent correlation Id.
- health
Errors This property is required. List<HealthError Model Response> - Gets or sets the list of health errors.
- is
Responsive This property is required. Boolean - Gets or sets a value indicating whether MigrateAgent is responsive.
- last
Heartbeat This property is required. String - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- provisioning
State This property is required. String - Gets or sets the provisioning state of the MigrateAgent.
- version
Number This property is required. String - Gets or sets the MigrateAgent version.
- authentication
Identity IdentityModel Response - Identity model.
- custom
Properties VMwareMigrate Agent Model Custom Properties Response - MigrateAgent model custom properties.
- machine
Id String - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name String - Gets or sets the machine name where MigrateAgent is running.
- correlation
Id This property is required. string - Gets or sets the MigrateAgent correlation Id.
- health
Errors This property is required. HealthError Model Response[] - Gets or sets the list of health errors.
- is
Responsive This property is required. boolean - Gets or sets a value indicating whether MigrateAgent is responsive.
- last
Heartbeat This property is required. string - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- provisioning
State This property is required. string - Gets or sets the provisioning state of the MigrateAgent.
- version
Number This property is required. string - Gets or sets the MigrateAgent version.
- authentication
Identity IdentityModel Response - Identity model.
- custom
Properties VMwareMigrate Agent Model Custom Properties Response - MigrateAgent model custom properties.
- machine
Id string - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name string - Gets or sets the machine name where MigrateAgent is running.
- correlation_
id This property is required. str - Gets or sets the MigrateAgent correlation Id.
- health_
errors This property is required. Sequence[HealthError Model Response] - Gets or sets the list of health errors.
- is_
responsive This property is required. bool - Gets or sets a value indicating whether MigrateAgent is responsive.
- last_
heartbeat This property is required. str - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- provisioning_
state This property is required. str - Gets or sets the provisioning state of the MigrateAgent.
- version_
number This property is required. str - Gets or sets the MigrateAgent version.
- authentication_
identity IdentityModel Response - Identity model.
- custom_
properties VMwareMigrate Agent Model Custom Properties Response - MigrateAgent model custom properties.
- machine_
id str - Gets or sets the machine Id where MigrateAgent is running.
- machine_
name str - Gets or sets the machine name where MigrateAgent is running.
- correlation
Id This property is required. String - Gets or sets the MigrateAgent correlation Id.
- health
Errors This property is required. List<Property Map> - Gets or sets the list of health errors.
- is
Responsive This property is required. Boolean - Gets or sets a value indicating whether MigrateAgent is responsive.
- last
Heartbeat This property is required. String - Gets or sets the time when last heartbeat was sent by the MigrateAgent.
- provisioning
State This property is required. String - Gets or sets the provisioning state of the MigrateAgent.
- version
Number This property is required. String - Gets or sets the MigrateAgent version.
- authentication
Identity Property Map - Identity model.
- custom
Properties Property Map - MigrateAgent model custom properties.
- machine
Id String - Gets or sets the machine Id where MigrateAgent is running.
- machine
Name String - Gets or sets the machine name where MigrateAgent is running.
MigrateAgentModelResponseSystemData, MigrateAgentModelResponseSystemDataArgs
- 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.
VMwareMigrateAgentModelCustomProperties, VMwareMigrateAgentModelCustomPropertiesArgs
- Fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- Vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- Fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- Vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly StringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site StringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric_
friendly_ strname - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware_
site_ strid - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly StringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site StringId - Gets or sets the master Site Id of the Migrate Agent.
VMwareMigrateAgentModelCustomPropertiesResponse, VMwareMigrateAgentModelCustomPropertiesResponseArgs
- Fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- Vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- Fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- Vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly StringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site StringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly stringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site stringId - Gets or sets the master Site Id of the Migrate Agent.
- fabric_
friendly_ strname - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware_
site_ strid - Gets or sets the master Site Id of the Migrate Agent.
- fabric
Friendly StringName - Gets or sets the friendly name of the,of the MigrateAgent fabric.
- vmware
Site StringId - Gets or sets the master Site Id of the Migrate Agent.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:MigrateAgent icysfvhjjgwhxx /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/modernizeProjects/{modernizeProjectName}/migrateAgents/{agentName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v2 pulumi/pulumi-azure-native
- License
- Apache-2.0