azure-native.migrate.MigrateProjectsControllerMigrateProject
Explore with Pulumi AI
Migrate project. Azure REST API version: 2020-05-01.
Other available API versions: 2023-01-01.
Example Usage
MigrateProject_Put
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var migrateProjectsControllerMigrateProject = new AzureNative.Migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProject", new()
    {
        Location = "eastus",
        MigrateProjectName = "projTest1",
        Properties = new AzureNative.Migrate.Inputs.MigrateProjectPropertiesArgs
        {
            PublicNetworkAccess = "Enabled",
        },
        ResourceGroupName = "pajindTest1",
    });
});
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.NewMigrateProjectsControllerMigrateProject(ctx, "migrateProjectsControllerMigrateProject", &migrate.MigrateProjectsControllerMigrateProjectArgs{
			Location:           pulumi.String("eastus"),
			MigrateProjectName: pulumi.String("projTest1"),
			Properties: &migrate.MigrateProjectPropertiesArgs{
				PublicNetworkAccess: pulumi.String("Enabled"),
			},
			ResourceGroupName: pulumi.String("pajindTest1"),
		})
		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.MigrateProjectsControllerMigrateProject;
import com.pulumi.azurenative.migrate.MigrateProjectsControllerMigrateProjectArgs;
import com.pulumi.azurenative.migrate.inputs.MigrateProjectPropertiesArgs;
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 migrateProjectsControllerMigrateProject = new MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProject", MigrateProjectsControllerMigrateProjectArgs.builder()
            .location("eastus")
            .migrateProjectName("projTest1")
            .properties(MigrateProjectPropertiesArgs.builder()
                .publicNetworkAccess("Enabled")
                .build())
            .resourceGroupName("pajindTest1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const migrateProjectsControllerMigrateProject = new azure_native.migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProject", {
    location: "eastus",
    migrateProjectName: "projTest1",
    properties: {
        publicNetworkAccess: "Enabled",
    },
    resourceGroupName: "pajindTest1",
});
import pulumi
import pulumi_azure_native as azure_native
migrate_projects_controller_migrate_project = azure_native.migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProject",
    location="eastus",
    migrate_project_name="projTest1",
    properties={
        "public_network_access": "Enabled",
    },
    resource_group_name="pajindTest1")
resources:
  migrateProjectsControllerMigrateProject:
    type: azure-native:migrate:MigrateProjectsControllerMigrateProject
    properties:
      location: eastus
      migrateProjectName: projTest1
      properties:
        publicNetworkAccess: Enabled
      resourceGroupName: pajindTest1
Create MigrateProjectsControllerMigrateProject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MigrateProjectsControllerMigrateProject(name: string, args: MigrateProjectsControllerMigrateProjectArgs, opts?: CustomResourceOptions);@overload
def MigrateProjectsControllerMigrateProject(resource_name: str,
                                            args: MigrateProjectsControllerMigrateProjectArgs,
                                            opts: Optional[ResourceOptions] = None)
@overload
def MigrateProjectsControllerMigrateProject(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            resource_group_name: Optional[str] = None,
                                            e_tag: Optional[str] = None,
                                            location: Optional[str] = None,
                                            migrate_project_name: Optional[str] = None,
                                            properties: Optional[MigrateProjectPropertiesArgs] = None)func NewMigrateProjectsControllerMigrateProject(ctx *Context, name string, args MigrateProjectsControllerMigrateProjectArgs, opts ...ResourceOption) (*MigrateProjectsControllerMigrateProject, error)public MigrateProjectsControllerMigrateProject(string name, MigrateProjectsControllerMigrateProjectArgs args, CustomResourceOptions? opts = null)
public MigrateProjectsControllerMigrateProject(String name, MigrateProjectsControllerMigrateProjectArgs args)
public MigrateProjectsControllerMigrateProject(String name, MigrateProjectsControllerMigrateProjectArgs args, CustomResourceOptions options)
type: azure-native:migrate:MigrateProjectsControllerMigrateProject
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 MigrateProjectsControllerMigrateProjectArgs
- 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 MigrateProjectsControllerMigrateProjectArgs
- 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 MigrateProjectsControllerMigrateProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MigrateProjectsControllerMigrateProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MigrateProjectsControllerMigrateProjectArgs
- 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 migrateProjectsControllerMigrateProjectResource = new AzureNative.Migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProjectResource", new()
{
    ResourceGroupName = "string",
    ETag = "string",
    Location = "string",
    MigrateProjectName = "string",
    Properties = new AzureNative.Migrate.Inputs.MigrateProjectPropertiesArgs
    {
        ProvisioningState = "string",
        PublicNetworkAccess = "string",
        RegisteredTools = new[]
        {
            "string",
        },
        ServiceEndpoint = "string",
        UtilityStorageAccountId = "string",
    },
});
example, err := migrate.NewMigrateProjectsControllerMigrateProject(ctx, "migrateProjectsControllerMigrateProjectResource", &migrate.MigrateProjectsControllerMigrateProjectArgs{
	ResourceGroupName:  pulumi.String("string"),
	ETag:               pulumi.String("string"),
	Location:           pulumi.String("string"),
	MigrateProjectName: pulumi.String("string"),
	Properties: &migrate.MigrateProjectPropertiesArgs{
		ProvisioningState:   pulumi.String("string"),
		PublicNetworkAccess: pulumi.String("string"),
		RegisteredTools: pulumi.StringArray{
			pulumi.String("string"),
		},
		ServiceEndpoint:         pulumi.String("string"),
		UtilityStorageAccountId: pulumi.String("string"),
	},
})
var migrateProjectsControllerMigrateProjectResource = new MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProjectResource", MigrateProjectsControllerMigrateProjectArgs.builder()
    .resourceGroupName("string")
    .eTag("string")
    .location("string")
    .migrateProjectName("string")
    .properties(MigrateProjectPropertiesArgs.builder()
        .provisioningState("string")
        .publicNetworkAccess("string")
        .registeredTools("string")
        .serviceEndpoint("string")
        .utilityStorageAccountId("string")
        .build())
    .build());
migrate_projects_controller_migrate_project_resource = azure_native.migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProjectResource",
    resource_group_name="string",
    e_tag="string",
    location="string",
    migrate_project_name="string",
    properties={
        "provisioning_state": "string",
        "public_network_access": "string",
        "registered_tools": ["string"],
        "service_endpoint": "string",
        "utility_storage_account_id": "string",
    })
const migrateProjectsControllerMigrateProjectResource = new azure_native.migrate.MigrateProjectsControllerMigrateProject("migrateProjectsControllerMigrateProjectResource", {
    resourceGroupName: "string",
    eTag: "string",
    location: "string",
    migrateProjectName: "string",
    properties: {
        provisioningState: "string",
        publicNetworkAccess: "string",
        registeredTools: ["string"],
        serviceEndpoint: "string",
        utilityStorageAccountId: "string",
    },
});
type: azure-native:migrate:MigrateProjectsControllerMigrateProject
properties:
    eTag: string
    location: string
    migrateProjectName: string
    properties:
        provisioningState: string
        publicNetworkAccess: string
        registeredTools:
            - string
        serviceEndpoint: string
        utilityStorageAccountId: string
    resourceGroupName: string
MigrateProjectsControllerMigrateProject 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 MigrateProjectsControllerMigrateProject resource accepts the following input properties:
- ResourceGroup stringName 
- Name of the Azure Resource Group that project is part of.
- ETag string
- For optimistic concurrency control.
- Location string
- Azure location in which project is created.
- MigrateProject stringName 
- Migrate project name.
- Properties
Pulumi.Azure Native. Migrate. Inputs. Migrate Project Properties 
- Properties of a migrate project.
- ResourceGroup stringName 
- Name of the Azure Resource Group that project is part of.
- ETag string
- For optimistic concurrency control.
- Location string
- Azure location in which project is created.
- MigrateProject stringName 
- Migrate project name.
- Properties
MigrateProject Properties Args 
- Properties of a migrate project.
- resourceGroup StringName 
- Name of the Azure Resource Group that project is part of.
- eTag String
- For optimistic concurrency control.
- location String
- Azure location in which project is created.
- migrateProject StringName 
- Migrate project name.
- properties
MigrateProject Properties 
- Properties of a migrate project.
- resourceGroup stringName 
- Name of the Azure Resource Group that project is part of.
- eTag string
- For optimistic concurrency control.
- location string
- Azure location in which project is created.
- migrateProject stringName 
- Migrate project name.
- properties
MigrateProject Properties 
- Properties of a migrate project.
- resource_group_ strname 
- Name of the Azure Resource Group that project is part of.
- e_tag str
- For optimistic concurrency control.
- location str
- Azure location in which project is created.
- migrate_project_ strname 
- Migrate project name.
- properties
MigrateProject Properties Args 
- Properties of a migrate project.
- resourceGroup StringName 
- Name of the Azure Resource Group that project is part of.
- eTag String
- For optimistic concurrency control.
- location String
- Azure location in which project is created.
- migrateProject StringName 
- Migrate project name.
- properties Property Map
- Properties of a migrate project.
Outputs
All input properties are implicitly available as output properties. Additionally, the MigrateProjectsControllerMigrateProject resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the project.
- SystemData Pulumi.Azure Native. Migrate. Outputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of the object = [Microsoft.Migrate/migrateProjects].
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the project.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- Type string
- Type of the object = [Microsoft.Migrate/migrateProjects].
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the project.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type String
- Type of the object = [Microsoft.Migrate/migrateProjects].
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the project.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type string
- Type of the object = [Microsoft.Migrate/migrateProjects].
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the project.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- type str
- Type of the object = [Microsoft.Migrate/migrateProjects].
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the project.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
- type String
- Type of the object = [Microsoft.Migrate/migrateProjects].
Supporting Types
DatabaseProjectSummaryResponse, DatabaseProjectSummaryResponseArgs        
- ExtendedSummary Dictionary<string, string>
- Gets or sets the extended summary.
- LastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- RefreshSummary stringState 
- Gets or sets the state of refresh summary.
- ExtendedSummary map[string]string
- Gets or sets the extended summary.
- LastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- RefreshSummary stringState 
- Gets or sets the state of refresh summary.
- extendedSummary Map<String,String>
- Gets or sets the extended summary.
- lastSummary StringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- refreshSummary StringState 
- Gets or sets the state of refresh summary.
- extendedSummary {[key: string]: string}
- Gets or sets the extended summary.
- lastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- refreshSummary stringState 
- Gets or sets the state of refresh summary.
- extended_summary Mapping[str, str]
- Gets or sets the extended summary.
- last_summary_ strrefreshed_ time 
- Gets or sets the time when summary was last refreshed.
- refresh_summary_ strstate 
- Gets or sets the state of refresh summary.
- extendedSummary Map<String>
- Gets or sets the extended summary.
- lastSummary StringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- refreshSummary StringState 
- Gets or sets the state of refresh summary.
MigrateProjectProperties, MigrateProjectPropertiesArgs      
- ProvisioningState string | Pulumi.Azure Native. Migrate. Provisioning State 
- Provisioning state of the migrate project.
- PublicNetwork stringAccess 
- Gets or sets the state of public network access.
- RegisteredTools List<string>
- Gets or sets the list of tools registered with the migrate project.
- ServiceEndpoint string
- Service endpoint.
- UtilityStorage stringAccount Id 
- Utility storage account id.
- ProvisioningState string | ProvisioningState 
- Provisioning state of the migrate project.
- PublicNetwork stringAccess 
- Gets or sets the state of public network access.
- RegisteredTools []string
- Gets or sets the list of tools registered with the migrate project.
- ServiceEndpoint string
- Service endpoint.
- UtilityStorage stringAccount Id 
- Utility storage account id.
- provisioningState String | ProvisioningState 
- Provisioning state of the migrate project.
- publicNetwork StringAccess 
- Gets or sets the state of public network access.
- registeredTools List<String>
- Gets or sets the list of tools registered with the migrate project.
- serviceEndpoint String
- Service endpoint.
- utilityStorage StringAccount Id 
- Utility storage account id.
- provisioningState string | ProvisioningState 
- Provisioning state of the migrate project.
- publicNetwork stringAccess 
- Gets or sets the state of public network access.
- registeredTools string[]
- Gets or sets the list of tools registered with the migrate project.
- serviceEndpoint string
- Service endpoint.
- utilityStorage stringAccount Id 
- Utility storage account id.
- provisioning_state str | ProvisioningState 
- Provisioning state of the migrate project.
- public_network_ straccess 
- Gets or sets the state of public network access.
- registered_tools Sequence[str]
- Gets or sets the list of tools registered with the migrate project.
- service_endpoint str
- Service endpoint.
- utility_storage_ straccount_ id 
- Utility storage account id.
- provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Provisioning" | "Updating" | "Deleting" | "Accepted"
- Provisioning state of the migrate project.
- publicNetwork StringAccess 
- Gets or sets the state of public network access.
- registeredTools List<String>
- Gets or sets the list of tools registered with the migrate project.
- serviceEndpoint String
- Service endpoint.
- utilityStorage StringAccount Id 
- Utility storage account id.
MigrateProjectPropertiesResponse, MigrateProjectPropertiesResponseArgs        
- LastSummary stringRefreshed Time 
- Last summary refresh time.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Migrate. Inputs. Private Endpoint Connection Response> 
- Gets the private endpoint connections.
- RefreshSummary stringState 
- Refresh summary state.
- RegisteredTools List<string>
- Register tools inside project.
- Summary Dictionary<string, object>
- Project summary.
- ProvisioningState string
- Provisioning state of the migrate project.
- PublicNetwork stringAccess 
- Gets or sets the state of public network access.
- ServiceEndpoint string
- Service endpoint.
- UtilityStorage stringAccount Id 
- Utility storage account id.
- LastSummary stringRefreshed Time 
- Last summary refresh time.
- PrivateEndpoint []PrivateConnections Endpoint Connection Response 
- Gets the private endpoint connections.
- RefreshSummary stringState 
- Refresh summary state.
- RegisteredTools []string
- Register tools inside project.
- Summary map[string]interface{}
- Project summary.
- ProvisioningState string
- Provisioning state of the migrate project.
- PublicNetwork stringAccess 
- Gets or sets the state of public network access.
- ServiceEndpoint string
- Service endpoint.
- UtilityStorage stringAccount Id 
- Utility storage account id.
- lastSummary StringRefreshed Time 
- Last summary refresh time.
- privateEndpoint List<PrivateConnections Endpoint Connection Response> 
- Gets the private endpoint connections.
- refreshSummary StringState 
- Refresh summary state.
- registeredTools List<String>
- Register tools inside project.
- summary Map<String,Object>
- Project summary.
- provisioningState String
- Provisioning state of the migrate project.
- publicNetwork StringAccess 
- Gets or sets the state of public network access.
- serviceEndpoint String
- Service endpoint.
- utilityStorage StringAccount Id 
- Utility storage account id.
- lastSummary stringRefreshed Time 
- Last summary refresh time.
- privateEndpoint PrivateConnections Endpoint Connection Response[] 
- Gets the private endpoint connections.
- refreshSummary stringState 
- Refresh summary state.
- registeredTools string[]
- Register tools inside project.
- summary
{[key: string]: DatabaseProject Summary Response | Servers Project Summary Response | Project Summary Response} 
- Project summary.
- provisioningState string
- Provisioning state of the migrate project.
- publicNetwork stringAccess 
- Gets or sets the state of public network access.
- serviceEndpoint string
- Service endpoint.
- utilityStorage stringAccount Id 
- Utility storage account id.
- last_summary_ strrefreshed_ time 
- Last summary refresh time.
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Response] 
- Gets the private endpoint connections.
- refresh_summary_ strstate 
- Refresh summary state.
- registered_tools Sequence[str]
- Register tools inside project.
- summary
Mapping[str, Union[DatabaseProject Summary Response, Servers Project Summary Response, Project Summary Response]] 
- Project summary.
- provisioning_state str
- Provisioning state of the migrate project.
- public_network_ straccess 
- Gets or sets the state of public network access.
- service_endpoint str
- Service endpoint.
- utility_storage_ straccount_ id 
- Utility storage account id.
- lastSummary StringRefreshed Time 
- Last summary refresh time.
- privateEndpoint List<Property Map>Connections 
- Gets the private endpoint connections.
- refreshSummary StringState 
- Refresh summary state.
- registeredTools List<String>
- Register tools inside project.
- summary Map<Property Map | Property Map | Property Map>
- Project summary.
- provisioningState String
- Provisioning state of the migrate project.
- publicNetwork StringAccess 
- Gets or sets the state of public network access.
- serviceEndpoint String
- Service endpoint.
- utilityStorage StringAccount Id 
- Utility storage account id.
PrivateEndpointConnectionPropertiesResponse, PrivateEndpointConnectionPropertiesResponseArgs          
- PrivateEndpoint Pulumi.Azure Native. Migrate. Inputs. Resource Id Response 
- ARM id for the private endpoint resource corresponding to the connection.
- ProvisioningState string
- Indicates whether there is an ongoing operation on the private endpoint.
- PrivateLink Pulumi.Service Connection State Azure Native. Migrate. Inputs. Private Link Service Connection State Response 
- State of the private endpoint connection.
- PrivateEndpoint ResourceId Response 
- ARM id for the private endpoint resource corresponding to the connection.
- ProvisioningState string
- Indicates whether there is an ongoing operation on the private endpoint.
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- State of the private endpoint connection.
- privateEndpoint ResourceId Response 
- ARM id for the private endpoint resource corresponding to the connection.
- provisioningState String
- Indicates whether there is an ongoing operation on the private endpoint.
- privateLink PrivateService Connection State Link Service Connection State Response 
- State of the private endpoint connection.
- privateEndpoint ResourceId Response 
- ARM id for the private endpoint resource corresponding to the connection.
- provisioningState string
- Indicates whether there is an ongoing operation on the private endpoint.
- privateLink PrivateService Connection State Link Service Connection State Response 
- State of the private endpoint connection.
- private_endpoint ResourceId Response 
- ARM id for the private endpoint resource corresponding to the connection.
- provisioning_state str
- Indicates whether there is an ongoing operation on the private endpoint.
- private_link_ Privateservice_ connection_ state Link Service Connection State Response 
- State of the private endpoint connection.
- privateEndpoint Property Map
- ARM id for the private endpoint resource corresponding to the connection.
- provisioningState String
- Indicates whether there is an ongoing operation on the private endpoint.
- privateLink Property MapService Connection State 
- State of the private endpoint connection.
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
- Id string
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- Name string
- Name of the private endpoint endpoint connection.
- Properties
Pulumi.Azure Native. Migrate. Inputs. Private Endpoint Connection Properties Response 
- Properties of the private endpoint endpoint connection.
- Type string
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- ETag string
- For optimistic concurrency control.
- GroupIds List<string>
- The group ids for the private endpoint resource.
- PrivateEndpoint Pulumi.Azure Native. Migrate. Inputs. Private Endpoint Response 
- The private endpoint resource.
- PrivateLink Pulumi.Service Connection State Azure Native. Migrate. Inputs. Private Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- ProvisioningState string
- The provisioning state of the private endpoint connection resource.
- SystemData Pulumi.Azure Native. Migrate. Inputs. System Data Response 
- Metadata pertaining to creation and last modification of the resource.
- Id string
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- Name string
- Name of the private endpoint endpoint connection.
- Properties
PrivateEndpoint Connection Properties Response 
- Properties of the private endpoint endpoint connection.
- Type string
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- ETag string
- For optimistic concurrency control.
- GroupIds []string
- The group ids for the private endpoint resource.
- PrivateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- ProvisioningState string
- The provisioning state of the private endpoint connection resource.
- SystemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- id String
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- name String
- Name of the private endpoint endpoint connection.
- properties
PrivateEndpoint Connection Properties Response 
- Properties of the private endpoint endpoint connection.
- type String
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- eTag String
- For optimistic concurrency control.
- groupIds List<String>
- The group ids for the private endpoint resource.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState String
- The provisioning state of the private endpoint connection resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- id string
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- name string
- Name of the private endpoint endpoint connection.
- properties
PrivateEndpoint Connection Properties Response 
- Properties of the private endpoint endpoint connection.
- type string
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- eTag string
- For optimistic concurrency control.
- groupIds string[]
- The group ids for the private endpoint resource.
- privateEndpoint PrivateEndpoint Response 
- The private endpoint resource.
- privateLink PrivateService Connection State Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState string
- The provisioning state of the private endpoint connection resource.
- systemData SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- id str
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- name str
- Name of the private endpoint endpoint connection.
- properties
PrivateEndpoint Connection Properties Response 
- Properties of the private endpoint endpoint connection.
- type str
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- e_tag str
- For optimistic concurrency control.
- group_ids Sequence[str]
- The group ids for the private endpoint resource.
- private_endpoint PrivateEndpoint Response 
- The private endpoint resource.
- private_link_ Privateservice_ connection_ state Link Service Connection State Response 
- A collection of information about the state of the connection between service consumer and provider.
- provisioning_state str
- The provisioning state of the private endpoint connection resource.
- system_data SystemData Response 
- Metadata pertaining to creation and last modification of the resource.
- id String
- Path reference to this private endpoint endpoint connection. /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/assessmentProjects/{projectName}/privateEndpointConnections/{privateEndpointConnectionName}
- name String
- Name of the private endpoint endpoint connection.
- properties Property Map
- Properties of the private endpoint endpoint connection.
- type String
- Type of the object = [Microsoft.Migrate/assessmentProjects/privateEndpointConnections].
- eTag String
- For optimistic concurrency control.
- groupIds List<String>
- The group ids for the private endpoint resource.
- privateEndpoint Property Map
- The private endpoint resource.
- privateLink Property MapService Connection State 
- A collection of information about the state of the connection between service consumer and provider.
- provisioningState String
- The provisioning state of the private endpoint connection resource.
- systemData Property Map
- Metadata pertaining to creation and last modification of the resource.
PrivateEndpointResponse, PrivateEndpointResponseArgs      
- Id string
- The ARM identifier for private endpoint.
- Id string
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
- id string
- The ARM identifier for private endpoint.
- id str
- The ARM identifier for private endpoint.
- id String
- The ARM identifier for private endpoint.
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs            
- ActionsRequired string
- Actions required on the private endpoint connection.
- Description string
- Description of the private endpoint connection.
- Status string
- Connection status of the private endpoint connection.
- ActionsRequired string
- Actions required on the private endpoint connection.
- Description string
- Description of the private endpoint connection.
- Status string
- Connection status of the private endpoint connection.
- actionsRequired String
- Actions required on the private endpoint connection.
- description String
- Description of the private endpoint connection.
- status String
- Connection status of the private endpoint connection.
- actionsRequired string
- Actions required on the private endpoint connection.
- description string
- Description of the private endpoint connection.
- status string
- Connection status of the private endpoint connection.
- actions_required str
- Actions required on the private endpoint connection.
- description str
- Description of the private endpoint connection.
- status str
- Connection status of the private endpoint connection.
- actionsRequired String
- Actions required on the private endpoint connection.
- description String
- Description of the private endpoint connection.
- status String
- Connection status of the private endpoint connection.
ProjectSummaryResponse, ProjectSummaryResponseArgs      
- InstanceType string
- Instance type.
- ExtendedSummary Dictionary<string, string>
- Extended summary.
- LastSummary stringRefreshed Time 
- Last summary refresh time.
- RefreshSummary stringState 
- Refresh summary state.
- InstanceType string
- Instance type.
- ExtendedSummary map[string]string
- Extended summary.
- LastSummary stringRefreshed Time 
- Last summary refresh time.
- RefreshSummary stringState 
- Refresh summary state.
- instanceType String
- Instance type.
- extendedSummary Map<String,String>
- Extended summary.
- lastSummary StringRefreshed Time 
- Last summary refresh time.
- refreshSummary StringState 
- Refresh summary state.
- instanceType string
- Instance type.
- extendedSummary {[key: string]: string}
- Extended summary.
- lastSummary stringRefreshed Time 
- Last summary refresh time.
- refreshSummary stringState 
- Refresh summary state.
- instance_type str
- Instance type.
- extended_summary Mapping[str, str]
- Extended summary.
- last_summary_ strrefreshed_ time 
- Last summary refresh time.
- refresh_summary_ strstate 
- Refresh summary state.
- instanceType String
- Instance type.
- extendedSummary Map<String>
- Extended summary.
- lastSummary StringRefreshed Time 
- Last summary refresh time.
- refreshSummary StringState 
- Refresh summary state.
ProvisioningState, ProvisioningStateArgs    
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- ProvisioningState Succeeded 
- SucceededResource has been created.
- ProvisioningState Failed 
- FailedResource creation failed.
- ProvisioningState Canceled 
- CanceledResource creation was canceled.
- ProvisioningState Provisioning 
- ProvisioningResource is being Provisioned.
- ProvisioningState Updating 
- UpdatingResource is being Updated.
- ProvisioningState Deleting 
- DeletingResource is being Deleted.
- ProvisioningState Accepted 
- AcceptedResource is being Accepted.
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- Succeeded
- SucceededResource has been created.
- Failed
- FailedResource creation failed.
- Canceled
- CanceledResource creation was canceled.
- Provisioning
- ProvisioningResource is being Provisioned.
- Updating
- UpdatingResource is being Updated.
- Deleting
- DeletingResource is being Deleted.
- Accepted
- AcceptedResource is being Accepted.
- SUCCEEDED
- SucceededResource has been created.
- FAILED
- FailedResource creation failed.
- CANCELED
- CanceledResource creation was canceled.
- PROVISIONING
- ProvisioningResource is being Provisioned.
- UPDATING
- UpdatingResource is being Updated.
- DELETING
- DeletingResource is being Deleted.
- ACCEPTED
- AcceptedResource is being Accepted.
- "Succeeded"
- SucceededResource has been created.
- "Failed"
- FailedResource creation failed.
- "Canceled"
- CanceledResource creation was canceled.
- "Provisioning"
- ProvisioningResource is being Provisioned.
- "Updating"
- UpdatingResource is being Updated.
- "Deleting"
- DeletingResource is being Deleted.
- "Accepted"
- AcceptedResource is being Accepted.
ResourceIdResponse, ResourceIdResponseArgs      
- Id string
- Id string
- id String
- id string
- id str
- id String
ServersProjectSummaryResponse, ServersProjectSummaryResponseArgs        
- AssessedCount int
- Gets or sets the count of entities assessed.
- DiscoveredCount int
- Gets or sets the count of entities discovered.
- ExtendedSummary Dictionary<string, string>
- Gets or sets the extended summary.
- LastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- MigratedCount int
- Gets or sets the count of entities migrated.
- RefreshSummary stringState 
- Gets or sets the state of refresh summary.
- ReplicatingCount int
- Gets or sets the count of entities being replicated.
- TestMigrated intCount 
- Gets or sets the count of entities test migrated.
- AssessedCount int
- Gets or sets the count of entities assessed.
- DiscoveredCount int
- Gets or sets the count of entities discovered.
- ExtendedSummary map[string]string
- Gets or sets the extended summary.
- LastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- MigratedCount int
- Gets or sets the count of entities migrated.
- RefreshSummary stringState 
- Gets or sets the state of refresh summary.
- ReplicatingCount int
- Gets or sets the count of entities being replicated.
- TestMigrated intCount 
- Gets or sets the count of entities test migrated.
- assessedCount Integer
- Gets or sets the count of entities assessed.
- discoveredCount Integer
- Gets or sets the count of entities discovered.
- extendedSummary Map<String,String>
- Gets or sets the extended summary.
- lastSummary StringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- migratedCount Integer
- Gets or sets the count of entities migrated.
- refreshSummary StringState 
- Gets or sets the state of refresh summary.
- replicatingCount Integer
- Gets or sets the count of entities being replicated.
- testMigrated IntegerCount 
- Gets or sets the count of entities test migrated.
- assessedCount number
- Gets or sets the count of entities assessed.
- discoveredCount number
- Gets or sets the count of entities discovered.
- extendedSummary {[key: string]: string}
- Gets or sets the extended summary.
- lastSummary stringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- migratedCount number
- Gets or sets the count of entities migrated.
- refreshSummary stringState 
- Gets or sets the state of refresh summary.
- replicatingCount number
- Gets or sets the count of entities being replicated.
- testMigrated numberCount 
- Gets or sets the count of entities test migrated.
- assessed_count int
- Gets or sets the count of entities assessed.
- discovered_count int
- Gets or sets the count of entities discovered.
- extended_summary Mapping[str, str]
- Gets or sets the extended summary.
- last_summary_ strrefreshed_ time 
- Gets or sets the time when summary was last refreshed.
- migrated_count int
- Gets or sets the count of entities migrated.
- refresh_summary_ strstate 
- Gets or sets the state of refresh summary.
- replicating_count int
- Gets or sets the count of entities being replicated.
- test_migrated_ intcount 
- Gets or sets the count of entities test migrated.
- assessedCount Number
- Gets or sets the count of entities assessed.
- discoveredCount Number
- Gets or sets the count of entities discovered.
- extendedSummary Map<String>
- Gets or sets the extended summary.
- lastSummary StringRefreshed Time 
- Gets or sets the time when summary was last refreshed.
- migratedCount Number
- Gets or sets the count of entities migrated.
- refreshSummary StringState 
- Gets or sets the state of refresh summary.
- replicatingCount Number
- Gets or sets the count of entities being replicated.
- testMigrated NumberCount 
- Gets or sets the count of entities test migrated.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:migrate:MigrateProjectsControllerMigrateProject proj90 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Migrate/migrateProjects/{migrateProjectName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0