azure-native.datamigration.Project
Explore with Pulumi AI
A project resource
Uses Azure REST API version 2023-07-15-preview. In version 2.x of the Azure Native provider, it used API version 2021-06-30.
Other available API versions: 2021-06-30, 2021-10-30-preview, 2022-01-30-preview, 2022-03-30-preview, 2025-03-15-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native datamigration [ApiVersion]
. See the version guide for details.
Example Usage
Projects_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var project = new AzureNative.DataMigration.Project("project", new()
{
GroupName = "DmsSdkRg",
Location = "southcentralus",
ProjectName = "DmsSdkProject",
ServiceName = "DmsSdkService",
SourcePlatform = AzureNative.DataMigration.ProjectSourcePlatform.SQL,
TargetPlatform = AzureNative.DataMigration.ProjectTargetPlatform.SQLDB,
});
});
package main
import (
datamigration "github.com/pulumi/pulumi-azure-native-sdk/datamigration/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datamigration.NewProject(ctx, "project", &datamigration.ProjectArgs{
GroupName: pulumi.String("DmsSdkRg"),
Location: pulumi.String("southcentralus"),
ProjectName: pulumi.String("DmsSdkProject"),
ServiceName: pulumi.String("DmsSdkService"),
SourcePlatform: pulumi.String(datamigration.ProjectSourcePlatformSQL),
TargetPlatform: pulumi.String(datamigration.ProjectTargetPlatformSQLDB),
})
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.datamigration.Project;
import com.pulumi.azurenative.datamigration.ProjectArgs;
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 project = new Project("project", ProjectArgs.builder()
.groupName("DmsSdkRg")
.location("southcentralus")
.projectName("DmsSdkProject")
.serviceName("DmsSdkService")
.sourcePlatform("SQL")
.targetPlatform("SQLDB")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const project = new azure_native.datamigration.Project("project", {
groupName: "DmsSdkRg",
location: "southcentralus",
projectName: "DmsSdkProject",
serviceName: "DmsSdkService",
sourcePlatform: azure_native.datamigration.ProjectSourcePlatform.SQL,
targetPlatform: azure_native.datamigration.ProjectTargetPlatform.SQLDB,
});
import pulumi
import pulumi_azure_native as azure_native
project = azure_native.datamigration.Project("project",
group_name="DmsSdkRg",
location="southcentralus",
project_name="DmsSdkProject",
service_name="DmsSdkService",
source_platform=azure_native.datamigration.ProjectSourcePlatform.SQL,
target_platform=azure_native.datamigration.ProjectTargetPlatform.SQLDB)
resources:
project:
type: azure-native:datamigration:Project
properties:
groupName: DmsSdkRg
location: southcentralus
projectName: DmsSdkProject
serviceName: DmsSdkService
sourcePlatform: SQL
targetPlatform: SQLDB
Create Project Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
@overload
def Project(resource_name: str,
args: ProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Project(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_name: Optional[str] = None,
service_name: Optional[str] = None,
source_platform: Optional[Union[str, ProjectSourcePlatform]] = None,
target_platform: Optional[Union[str, ProjectTargetPlatform]] = None,
azure_authentication_info: Optional[AzureActiveDirectoryAppArgs] = None,
databases_info: Optional[Sequence[DatabaseInfoArgs]] = None,
location: Optional[str] = None,
project_name: Optional[str] = None,
source_connection_info: Optional[Union[MiSqlConnectionInfoArgs, MongoDbConnectionInfoArgs, MySqlConnectionInfoArgs, OracleConnectionInfoArgs, PostgreSqlConnectionInfoArgs, SqlConnectionInfoArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
target_connection_info: Optional[Union[MiSqlConnectionInfoArgs, MongoDbConnectionInfoArgs, MySqlConnectionInfoArgs, OracleConnectionInfoArgs, PostgreSqlConnectionInfoArgs, SqlConnectionInfoArgs]] = None)
func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: azure-native:datamigration:Project
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 ProjectArgs
- 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 ProjectArgs
- 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 ProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeProjectResource = new AzureNative.DataMigration.Project("azure-nativeProjectResource", new()
{
GroupName = "string",
ServiceName = "string",
SourcePlatform = "string",
TargetPlatform = "string",
AzureAuthenticationInfo = new AzureNative.DataMigration.Inputs.AzureActiveDirectoryAppArgs
{
AppKey = "string",
ApplicationId = "string",
IgnoreAzurePermissions = false,
TenantId = "string",
},
DatabasesInfo = new[]
{
new AzureNative.DataMigration.Inputs.DatabaseInfoArgs
{
SourceDatabaseName = "string",
},
},
Location = "string",
ProjectName = "string",
SourceConnectionInfo = new AzureNative.DataMigration.Inputs.MiSqlConnectionInfoArgs
{
ManagedInstanceResourceId = "string",
Type = "MiSqlConnectionInfo",
Password = "string",
UserName = "string",
},
Tags =
{
{ "string", "string" },
},
TargetConnectionInfo = new AzureNative.DataMigration.Inputs.MiSqlConnectionInfoArgs
{
ManagedInstanceResourceId = "string",
Type = "MiSqlConnectionInfo",
Password = "string",
UserName = "string",
},
});
example, err := datamigration.NewProject(ctx, "azure-nativeProjectResource", &datamigration.ProjectArgs{
GroupName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
SourcePlatform: pulumi.String("string"),
TargetPlatform: pulumi.String("string"),
AzureAuthenticationInfo: &datamigration.AzureActiveDirectoryAppArgs{
AppKey: pulumi.String("string"),
ApplicationId: pulumi.String("string"),
IgnoreAzurePermissions: pulumi.Bool(false),
TenantId: pulumi.String("string"),
},
DatabasesInfo: datamigration.DatabaseInfoArray{
&datamigration.DatabaseInfoArgs{
SourceDatabaseName: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
ProjectName: pulumi.String("string"),
SourceConnectionInfo: &datamigration.MiSqlConnectionInfoArgs{
ManagedInstanceResourceId: pulumi.String("string"),
Type: pulumi.String("MiSqlConnectionInfo"),
Password: pulumi.String("string"),
UserName: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TargetConnectionInfo: &datamigration.MiSqlConnectionInfoArgs{
ManagedInstanceResourceId: pulumi.String("string"),
Type: pulumi.String("MiSqlConnectionInfo"),
Password: pulumi.String("string"),
UserName: pulumi.String("string"),
},
})
var azure_nativeProjectResource = new com.pulumi.azurenative.datamigration.Project("azure-nativeProjectResource", com.pulumi.azurenative.datamigration.ProjectArgs.builder()
.groupName("string")
.serviceName("string")
.sourcePlatform("string")
.targetPlatform("string")
.azureAuthenticationInfo(AzureActiveDirectoryAppArgs.builder()
.appKey("string")
.applicationId("string")
.ignoreAzurePermissions(false)
.tenantId("string")
.build())
.databasesInfo(DatabaseInfoArgs.builder()
.sourceDatabaseName("string")
.build())
.location("string")
.projectName("string")
.sourceConnectionInfo(MiSqlConnectionInfoArgs.builder()
.managedInstanceResourceId("string")
.type("MiSqlConnectionInfo")
.password("string")
.userName("string")
.build())
.tags(Map.of("string", "string"))
.targetConnectionInfo(MiSqlConnectionInfoArgs.builder()
.managedInstanceResourceId("string")
.type("MiSqlConnectionInfo")
.password("string")
.userName("string")
.build())
.build());
azure_native_project_resource = azure_native.datamigration.Project("azure-nativeProjectResource",
group_name="string",
service_name="string",
source_platform="string",
target_platform="string",
azure_authentication_info={
"app_key": "string",
"application_id": "string",
"ignore_azure_permissions": False,
"tenant_id": "string",
},
databases_info=[{
"source_database_name": "string",
}],
location="string",
project_name="string",
source_connection_info={
"managed_instance_resource_id": "string",
"type": "MiSqlConnectionInfo",
"password": "string",
"user_name": "string",
},
tags={
"string": "string",
},
target_connection_info={
"managed_instance_resource_id": "string",
"type": "MiSqlConnectionInfo",
"password": "string",
"user_name": "string",
})
const azure_nativeProjectResource = new azure_native.datamigration.Project("azure-nativeProjectResource", {
groupName: "string",
serviceName: "string",
sourcePlatform: "string",
targetPlatform: "string",
azureAuthenticationInfo: {
appKey: "string",
applicationId: "string",
ignoreAzurePermissions: false,
tenantId: "string",
},
databasesInfo: [{
sourceDatabaseName: "string",
}],
location: "string",
projectName: "string",
sourceConnectionInfo: {
managedInstanceResourceId: "string",
type: "MiSqlConnectionInfo",
password: "string",
userName: "string",
},
tags: {
string: "string",
},
targetConnectionInfo: {
managedInstanceResourceId: "string",
type: "MiSqlConnectionInfo",
password: "string",
userName: "string",
},
});
type: azure-native:datamigration:Project
properties:
azureAuthenticationInfo:
appKey: string
applicationId: string
ignoreAzurePermissions: false
tenantId: string
databasesInfo:
- sourceDatabaseName: string
groupName: string
location: string
projectName: string
serviceName: string
sourceConnectionInfo:
managedInstanceResourceId: string
password: string
type: MiSqlConnectionInfo
userName: string
sourcePlatform: string
tags:
string: string
targetConnectionInfo:
managedInstanceResourceId: string
password: string
type: MiSqlConnectionInfo
userName: string
targetPlatform: string
Project 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 Project resource accepts the following input properties:
- Group
Name string - Name of the resource group
- Service
Name string - Name of the service
- Source
Platform string | Pulumi.Azure Native. Data Migration. Project Source Platform - Source platform for the project
- Target
Platform string | Pulumi.Azure Native. Data Migration. Project Target Platform - Target platform for the project
- Azure
Authentication Pulumi.Info Azure Native. Data Migration. Inputs. Azure Active Directory App - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- Databases
Info List<Pulumi.Azure Native. Data Migration. Inputs. Database Info> - List of DatabaseInfo
- Location string
- Project
Name string - Name of the project
- Source
Connection Pulumi.Info Azure | Pulumi.Native. Data Migration. Inputs. Mi Sql Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Mongo Db Connection Info Azure | Pulumi.Native. Data Migration. Inputs. My Sql Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Oracle Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Postgre Sql Connection Info Azure Native. Data Migration. Inputs. Sql Connection Info - Information for connecting to source
- Dictionary<string, string>
- Target
Connection Pulumi.Info Azure | Pulumi.Native. Data Migration. Inputs. Mi Sql Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Mongo Db Connection Info Azure | Pulumi.Native. Data Migration. Inputs. My Sql Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Oracle Connection Info Azure | Pulumi.Native. Data Migration. Inputs. Postgre Sql Connection Info Azure Native. Data Migration. Inputs. Sql Connection Info - Information for connecting to target
- Group
Name string - Name of the resource group
- Service
Name string - Name of the service
- Source
Platform string | ProjectSource Platform - Source platform for the project
- Target
Platform string | ProjectTarget Platform - Target platform for the project
- Azure
Authentication AzureInfo Active Directory App Args - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- Databases
Info []DatabaseInfo Args - List of DatabaseInfo
- Location string
- Project
Name string - Name of the project
- Source
Connection MiInfo Sql | MongoConnection Info Args Db | MyConnection Info Args Sql | OracleConnection Info Args Connection | PostgreInfo Args Sql | SqlConnection Info Args Connection Info Args - Information for connecting to source
- map[string]string
- Target
Connection MiInfo Sql | MongoConnection Info Args Db | MyConnection Info Args Sql | OracleConnection Info Args Connection | PostgreInfo Args Sql | SqlConnection Info Args Connection Info Args - Information for connecting to target
- group
Name String - Name of the resource group
- service
Name String - Name of the service
- source
Platform String | ProjectSource Platform - Source platform for the project
- target
Platform String | ProjectTarget Platform - Target platform for the project
- azure
Authentication AzureInfo Active Directory App - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- databases
Info List<DatabaseInfo> - List of DatabaseInfo
- location String
- project
Name String - Name of the project
- source
Connection MiInfo Sql | MongoConnection Info Db | MyConnection Info Sql | OracleConnection Info Connection | PostgreInfo Sql | SqlConnection Info Connection Info - Information for connecting to source
- Map<String,String>
- target
Connection MiInfo Sql | MongoConnection Info Db | MyConnection Info Sql | OracleConnection Info Connection | PostgreInfo Sql | SqlConnection Info Connection Info - Information for connecting to target
- group
Name string - Name of the resource group
- service
Name string - Name of the service
- source
Platform string | ProjectSource Platform - Source platform for the project
- target
Platform string | ProjectTarget Platform - Target platform for the project
- azure
Authentication AzureInfo Active Directory App - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- databases
Info DatabaseInfo[] - List of DatabaseInfo
- location string
- project
Name string - Name of the project
- source
Connection MiInfo Sql | MongoConnection Info Db | MyConnection Info Sql | OracleConnection Info Connection | PostgreInfo Sql | SqlConnection Info Connection Info - Information for connecting to source
- {[key: string]: string}
- target
Connection MiInfo Sql | MongoConnection Info Db | MyConnection Info Sql | OracleConnection Info Connection | PostgreInfo Sql | SqlConnection Info Connection Info - Information for connecting to target
- group_
name str - Name of the resource group
- service_
name str - Name of the service
- source_
platform str | ProjectSource Platform - Source platform for the project
- target_
platform str | ProjectTarget Platform - Target platform for the project
- azure_
authentication_ Azureinfo Active Directory App Args - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- databases_
info Sequence[DatabaseInfo Args] - List of DatabaseInfo
- location str
- project_
name str - Name of the project
- source_
connection_ Miinfo Sql | MongoConnection Info Args Db | MyConnection Info Args Sql | OracleConnection Info Args Connection | PostgreInfo Args Sql | SqlConnection Info Args Connection Info Args - Information for connecting to source
- Mapping[str, str]
- target_
connection_ Miinfo Sql | MongoConnection Info Args Db | MyConnection Info Args Sql | OracleConnection Info Args Connection | PostgreInfo Args Sql | SqlConnection Info Args Connection Info Args - Information for connecting to target
- group
Name String - Name of the resource group
- service
Name String - Name of the service
- source
Platform String | "SQL" | "MySQL" | "Postgre Sql" | "Mongo Db" | "Unknown" - Source platform for the project
- target
Platform String | "SQLDB" | "SQLMI" | "AzureDb For My Sql" | "Azure Db For Postgre Sql" | "Mongo Db" | "Unknown" - Target platform for the project
- azure
Authentication Property MapInfo - Field that defines the Azure active directory application info, used to connect to the target Azure resource
- databases
Info List<Property Map> - List of DatabaseInfo
- location String
- project
Name String - Name of the project
- source
Connection Property Map | Property Map | Property Map | Property Map | Property Map | Property MapInfo - Information for connecting to source
- Map<String>
- target
Connection Property Map | Property Map | Property Map | Property Map | Property Map | Property MapInfo - Information for connecting to target
Outputs
All input properties are implicitly available as output properties. Additionally, the Project resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Creation
Time string - UTC Date and time when project was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Provisioning
State string - The project's provisioning state
- System
Data Pulumi.Azure Native. Data Migration. Outputs. System Data Response - Type string
- Etag string
- HTTP strong entity tag value. This is ignored if submitted.
- Azure
Api stringVersion - The Azure API version of the resource.
- Creation
Time string - UTC Date and time when project was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Provisioning
State string - The project's provisioning state
- System
Data SystemData Response - Type string
- Etag string
- HTTP strong entity tag value. This is ignored if submitted.
- azure
Api StringVersion - The Azure API version of the resource.
- creation
Time String - UTC Date and time when project was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- provisioning
State String - The project's provisioning state
- system
Data SystemData Response - type String
- etag String
- HTTP strong entity tag value. This is ignored if submitted.
- azure
Api stringVersion - The Azure API version of the resource.
- creation
Time string - UTC Date and time when project was created
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- provisioning
State string - The project's provisioning state
- system
Data SystemData Response - type string
- etag string
- HTTP strong entity tag value. This is ignored if submitted.
- azure_
api_ strversion - The Azure API version of the resource.
- creation_
time str - UTC Date and time when project was created
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- provisioning_
state str - The project's provisioning state
- system_
data SystemData Response - type str
- etag str
- HTTP strong entity tag value. This is ignored if submitted.
- azure
Api StringVersion - The Azure API version of the resource.
- creation
Time String - UTC Date and time when project was created
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- provisioning
State String - The project's provisioning state
- system
Data Property Map - type String
- etag String
- HTTP strong entity tag value. This is ignored if submitted.
Supporting Types
AuthenticationType, AuthenticationTypeArgs
- None
- None
- Windows
Authentication - WindowsAuthentication
- Sql
Authentication - SqlAuthentication
- Active
Directory Integrated - ActiveDirectoryIntegrated
- Active
Directory Password - ActiveDirectoryPassword
- Authentication
Type None - None
- Authentication
Type Windows Authentication - WindowsAuthentication
- Authentication
Type Sql Authentication - SqlAuthentication
- Authentication
Type Active Directory Integrated - ActiveDirectoryIntegrated
- Authentication
Type Active Directory Password - ActiveDirectoryPassword
- None
- None
- Windows
Authentication - WindowsAuthentication
- Sql
Authentication - SqlAuthentication
- Active
Directory Integrated - ActiveDirectoryIntegrated
- Active
Directory Password - ActiveDirectoryPassword
- None
- None
- Windows
Authentication - WindowsAuthentication
- Sql
Authentication - SqlAuthentication
- Active
Directory Integrated - ActiveDirectoryIntegrated
- Active
Directory Password - ActiveDirectoryPassword
- NONE
- None
- WINDOWS_AUTHENTICATION
- WindowsAuthentication
- SQL_AUTHENTICATION
- SqlAuthentication
- ACTIVE_DIRECTORY_INTEGRATED
- ActiveDirectoryIntegrated
- ACTIVE_DIRECTORY_PASSWORD
- ActiveDirectoryPassword
- "None"
- None
- "Windows
Authentication" - WindowsAuthentication
- "Sql
Authentication" - SqlAuthentication
- "Active
Directory Integrated" - ActiveDirectoryIntegrated
- "Active
Directory Password" - ActiveDirectoryPassword
AzureActiveDirectoryApp, AzureActiveDirectoryAppArgs
- App
Key string - Key used to authenticate to the Azure Active Directory Application
- Application
Id string - Application ID of the Azure Active Directory Application
- Ignore
Azure boolPermissions - Ignore checking azure permissions on the AAD app
- Tenant
Id string - Tenant id of the customer
- App
Key string - Key used to authenticate to the Azure Active Directory Application
- Application
Id string - Application ID of the Azure Active Directory Application
- Ignore
Azure boolPermissions - Ignore checking azure permissions on the AAD app
- Tenant
Id string - Tenant id of the customer
- app
Key String - Key used to authenticate to the Azure Active Directory Application
- application
Id String - Application ID of the Azure Active Directory Application
- ignore
Azure BooleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id String - Tenant id of the customer
- app
Key string - Key used to authenticate to the Azure Active Directory Application
- application
Id string - Application ID of the Azure Active Directory Application
- ignore
Azure booleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id string - Tenant id of the customer
- app_
key str - Key used to authenticate to the Azure Active Directory Application
- application_
id str - Application ID of the Azure Active Directory Application
- ignore_
azure_ boolpermissions - Ignore checking azure permissions on the AAD app
- tenant_
id str - Tenant id of the customer
- app
Key String - Key used to authenticate to the Azure Active Directory Application
- application
Id String - Application ID of the Azure Active Directory Application
- ignore
Azure BooleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id String - Tenant id of the customer
AzureActiveDirectoryAppResponse, AzureActiveDirectoryAppResponseArgs
- App
Key string - Key used to authenticate to the Azure Active Directory Application
- Application
Id string - Application ID of the Azure Active Directory Application
- Ignore
Azure boolPermissions - Ignore checking azure permissions on the AAD app
- Tenant
Id string - Tenant id of the customer
- App
Key string - Key used to authenticate to the Azure Active Directory Application
- Application
Id string - Application ID of the Azure Active Directory Application
- Ignore
Azure boolPermissions - Ignore checking azure permissions on the AAD app
- Tenant
Id string - Tenant id of the customer
- app
Key String - Key used to authenticate to the Azure Active Directory Application
- application
Id String - Application ID of the Azure Active Directory Application
- ignore
Azure BooleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id String - Tenant id of the customer
- app
Key string - Key used to authenticate to the Azure Active Directory Application
- application
Id string - Application ID of the Azure Active Directory Application
- ignore
Azure booleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id string - Tenant id of the customer
- app_
key str - Key used to authenticate to the Azure Active Directory Application
- application_
id str - Application ID of the Azure Active Directory Application
- ignore_
azure_ boolpermissions - Ignore checking azure permissions on the AAD app
- tenant_
id str - Tenant id of the customer
- app
Key String - Key used to authenticate to the Azure Active Directory Application
- application
Id String - Application ID of the Azure Active Directory Application
- ignore
Azure BooleanPermissions - Ignore checking azure permissions on the AAD app
- tenant
Id String - Tenant id of the customer
DatabaseInfo, DatabaseInfoArgs
- Source
Database stringName - Name of the database
- Source
Database stringName - Name of the database
- source
Database StringName - Name of the database
- source
Database stringName - Name of the database
- source_
database_ strname - Name of the database
- source
Database StringName - Name of the database
DatabaseInfoResponse, DatabaseInfoResponseArgs
- Source
Database stringName - Name of the database
- Source
Database stringName - Name of the database
- source
Database StringName - Name of the database
- source
Database stringName - Name of the database
- source_
database_ strname - Name of the database
- source
Database StringName - Name of the database
MiSqlConnectionInfo, MiSqlConnectionInfoArgs
- Managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- User
Name string - User name
- Managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- User
Name string - User name
- managed
Instance StringResource Id - Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- user
Name String - User name
- managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- password string
- Password credential.
- user
Name string - User name
- managed_
instance_ strresource_ id - Resource id for Azure SQL database Managed instance
- password str
- Password credential.
- user_
name str - User name
- managed
Instance StringResource Id - Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- user
Name String - User name
MiSqlConnectionInfoResponse, MiSqlConnectionInfoResponseArgs
- Managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- User
Name string - User name
- Managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- User
Name string - User name
- managed
Instance StringResource Id - Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- user
Name String - User name
- managed
Instance stringResource Id - Resource id for Azure SQL database Managed instance
- password string
- Password credential.
- user
Name string - User name
- managed_
instance_ strresource_ id - Resource id for Azure SQL database Managed instance
- password str
- Password credential.
- user_
name str - User name
- managed
Instance StringResource Id - Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- user
Name String - User name
MongoDbConnectionInfo, MongoDbConnectionInfoArgs
- Connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- Additional
Settings string - Additional connection settings
- Authentication
string | Pulumi.
Azure Native. Data Migration. Authentication Type - Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Enforce
SSL bool - Password string
- Password credential.
- Port int
- port for server
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- Additional
Settings string - Additional connection settings
- Authentication
string | Authentication
Type - Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Enforce
SSL bool - Password string
- Password credential.
- Port int
- port for server
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- connection
String String - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings String - Additional connection settings
- authentication
String | Authentication
Type - Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- enforce
SSL Boolean - password String
- Password credential.
- port Integer
- port for server
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings string - Additional connection settings
- authentication
string | Authentication
Type - Authentication type to use for connection
- data
Source string - Data source
- encrypt
Connection boolean - Whether to encrypt the connection
- enforce
SSL boolean - password string
- Password credential.
- port number
- port for server
- server
Brand stringVersion - server brand version
- server
Name string - name of the server
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- connection_
string str - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional_
settings str - Additional connection settings
- authentication
str | Authentication
Type - Authentication type to use for connection
- data_
source str - Data source
- encrypt_
connection bool - Whether to encrypt the connection
- enforce_
ssl bool - password str
- Password credential.
- port int
- port for server
- server_
brand_ strversion - server brand version
- server_
name str - name of the server
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- connection
String String - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings String - Additional connection settings
- authentication
String | "None" | "Windows
Authentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" - Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- enforce
SSL Boolean - password String
- Password credential.
- port Number
- port for server
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
MongoDbConnectionInfoResponse, MongoDbConnectionInfoResponseArgs
- Connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Enforce
SSL bool - Password string
- Password credential.
- Port int
- port for server
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Enforce
SSL bool - Password string
- Password credential.
- Port int
- port for server
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- connection
String String - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- enforce
SSL Boolean - password String
- Password credential.
- port Integer
- port for server
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- connection
String string - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings string - Additional connection settings
- authentication string
- Authentication type to use for connection
- data
Source string - Data source
- encrypt
Connection boolean - Whether to encrypt the connection
- enforce
SSL boolean - password string
- Password credential.
- port number
- port for server
- server
Brand stringVersion - server brand version
- server
Name string - name of the server
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- connection_
string str - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional_
settings str - Additional connection settings
- authentication str
- Authentication type to use for connection
- data_
source str - Data source
- encrypt_
connection bool - Whether to encrypt the connection
- enforce_
ssl bool - password str
- Password credential.
- port int
- port for server
- server_
brand_ strversion - server brand version
- server_
name str - name of the server
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- connection
String String - A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- enforce
SSL Boolean - password String
- Password credential.
- port Number
- port for server
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
MySqlConnectionInfo, MySqlConnectionInfoArgs
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication
string | Pulumi.
Azure Native. Data Migration. Authentication Type - Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- User
Name string - User name
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication
string | Authentication
Type - Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- User
Name string - User name
- port Integer
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication
String | Authentication
Type - Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- user
Name String - User name
- port number
- Port for Server
- server
Name string - Name of the server
- additional
Settings string - Additional connection settings
- authentication
string | Authentication
Type - Authentication type to use for connection
- data
Source string - Data source
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- user
Name string - User name
- port int
- Port for Server
- server_
name str - Name of the server
- additional_
settings str - Additional connection settings
- authentication
str | Authentication
Type - Authentication type to use for connection
- data_
source str - Data source
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- user_
name str - User name
- port Number
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication
String | "None" | "Windows
Authentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" - Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- user
Name String - User name
MySqlConnectionInfoResponse, MySqlConnectionInfoResponseArgs
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- User
Name string - User name
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- User
Name string - User name
- port Integer
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- user
Name String - User name
- port number
- Port for Server
- server
Name string - Name of the server
- additional
Settings string - Additional connection settings
- authentication string
- Authentication type to use for connection
- data
Source string - Data source
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- user
Name string - User name
- port int
- Port for Server
- server_
name str - Name of the server
- additional_
settings str - Additional connection settings
- authentication str
- Authentication type to use for connection
- data_
source str - Data source
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- user_
name str - User name
- port Number
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- user
Name String - User name
OracleConnectionInfo, OracleConnectionInfoArgs
- Data
Source string - EZConnect or TNSName connection string.
- Authentication
string | Pulumi.
Azure Native. Data Migration. Authentication Type - Authentication type to use for connection
- Password string
- Password credential.
- Port int
- port for server
- Server
Name string - name of the server
- Server
Version string - server version
- User
Name string - User name
- Data
Source string - EZConnect or TNSName connection string.
- Authentication
string | Authentication
Type - Authentication type to use for connection
- Password string
- Password credential.
- Port int
- port for server
- Server
Name string - name of the server
- Server
Version string - server version
- User
Name string - User name
- data
Source String - EZConnect or TNSName connection string.
- authentication
String | Authentication
Type - Authentication type to use for connection
- password String
- Password credential.
- port Integer
- port for server
- server
Name String - name of the server
- server
Version String - server version
- user
Name String - User name
- data
Source string - EZConnect or TNSName connection string.
- authentication
string | Authentication
Type - Authentication type to use for connection
- password string
- Password credential.
- port number
- port for server
- server
Name string - name of the server
- server
Version string - server version
- user
Name string - User name
- data_
source str - EZConnect or TNSName connection string.
- authentication
str | Authentication
Type - Authentication type to use for connection
- password str
- Password credential.
- port int
- port for server
- server_
name str - name of the server
- server_
version str - server version
- user_
name str - User name
- data
Source String - EZConnect or TNSName connection string.
- authentication
String | "None" | "Windows
Authentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" - Authentication type to use for connection
- password String
- Password credential.
- port Number
- port for server
- server
Name String - name of the server
- server
Version String - server version
- user
Name String - User name
OracleConnectionInfoResponse, OracleConnectionInfoResponseArgs
- Data
Source string - EZConnect or TNSName connection string.
- Authentication string
- Authentication type to use for connection
- Password string
- Password credential.
- Port int
- port for server
- Server
Name string - name of the server
- Server
Version string - server version
- User
Name string - User name
- Data
Source string - EZConnect or TNSName connection string.
- Authentication string
- Authentication type to use for connection
- Password string
- Password credential.
- Port int
- port for server
- Server
Name string - name of the server
- Server
Version string - server version
- User
Name string - User name
- data
Source String - EZConnect or TNSName connection string.
- authentication String
- Authentication type to use for connection
- password String
- Password credential.
- port Integer
- port for server
- server
Name String - name of the server
- server
Version String - server version
- user
Name String - User name
- data
Source string - EZConnect or TNSName connection string.
- authentication string
- Authentication type to use for connection
- password string
- Password credential.
- port number
- port for server
- server
Name string - name of the server
- server
Version string - server version
- user
Name string - User name
- data_
source str - EZConnect or TNSName connection string.
- authentication str
- Authentication type to use for connection
- password str
- Password credential.
- port int
- port for server
- server_
name str - name of the server
- server_
version str - server version
- user_
name str - User name
- data
Source String - EZConnect or TNSName connection string.
- authentication String
- Authentication type to use for connection
- password String
- Password credential.
- port Number
- port for server
- server
Name String - name of the server
- server
Version String - server version
- user
Name String - User name
PostgreSqlConnectionInfo, PostgreSqlConnectionInfoArgs
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication
string | Pulumi.
Azure Native. Data Migration. Authentication Type - Authentication type to use for connection
- Data
Source string - Data source
- Database
Name string - Name of the database
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Server
Brand stringVersion - server brand version
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication
string | Authentication
Type - Authentication type to use for connection
- Data
Source string - Data source
- Database
Name string - Name of the database
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Server
Brand stringVersion - server brand version
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- port Integer
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication
String | Authentication
Type - Authentication type to use for connection
- data
Source String - Data source
- database
Name String - Name of the database
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- server
Brand StringVersion - server brand version
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- port number
- Port for Server
- server
Name string - Name of the server
- additional
Settings string - Additional connection settings
- authentication
string | Authentication
Type - Authentication type to use for connection
- data
Source string - Data source
- database
Name string - Name of the database
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- server
Brand stringVersion - server brand version
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- port int
- Port for Server
- server_
name str - Name of the server
- additional_
settings str - Additional connection settings
- authentication
str | Authentication
Type - Authentication type to use for connection
- data_
source str - Data source
- database_
name str - Name of the database
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- server_
brand_ strversion - server brand version
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- port Number
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication
String | "None" | "Windows
Authentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" - Authentication type to use for connection
- data
Source String - Data source
- database
Name String - Name of the database
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- server
Brand StringVersion - server brand version
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
PostgreSqlConnectionInfoResponse, PostgreSqlConnectionInfoResponseArgs
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Database
Name string - Name of the database
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Server
Brand stringVersion - server brand version
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Port int
- Port for Server
- Server
Name string - Name of the server
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Data
Source string - Data source
- Database
Name string - Name of the database
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Server
Brand stringVersion - server brand version
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- port Integer
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- database
Name String - Name of the database
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- server
Brand StringVersion - server brand version
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- port number
- Port for Server
- server
Name string - Name of the server
- additional
Settings string - Additional connection settings
- authentication string
- Authentication type to use for connection
- data
Source string - Data source
- database
Name string - Name of the database
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- server
Brand stringVersion - server brand version
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- port int
- Port for Server
- server_
name str - Name of the server
- additional_
settings str - Additional connection settings
- authentication str
- Authentication type to use for connection
- data_
source str - Data source
- database_
name str - Name of the database
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- server_
brand_ strversion - server brand version
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- port Number
- Port for Server
- server
Name String - Name of the server
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- data
Source String - Data source
- database
Name String - Name of the database
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- server
Brand StringVersion - server brand version
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
ProjectSourcePlatform, ProjectSourcePlatformArgs
- SQL
- SQL
- My
SQL - MySQL
- Postgre
Sql - PostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- Project
Source Platform SQL - SQL
- Project
Source Platform My SQL - MySQL
- Project
Source Platform Postgre Sql - PostgreSql
- Project
Source Platform Mongo Db - MongoDb
- Project
Source Platform Unknown - Unknown
- SQL
- SQL
- My
SQL - MySQL
- Postgre
Sql - PostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- SQL
- SQL
- My
SQL - MySQL
- Postgre
Sql - PostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- SQL
- SQL
- MY_SQL
- MySQL
- POSTGRE_SQL
- PostgreSql
- MONGO_DB
- MongoDb
- UNKNOWN
- Unknown
- "SQL"
- SQL
- "My
SQL" - MySQL
- "Postgre
Sql" - PostgreSql
- "Mongo
Db" - MongoDb
- "Unknown"
- Unknown
ProjectTargetPlatform, ProjectTargetPlatformArgs
- SQLDB
- SQLDB
- SQLMI
- SQLMI
- Azure
Db For My Sql - AzureDbForMySql
- Azure
Db For Postgre Sql - AzureDbForPostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- Project
Target Platform SQLDB - SQLDB
- Project
Target Platform SQLMI - SQLMI
- Project
Target Platform Azure Db For My Sql - AzureDbForMySql
- Project
Target Platform Azure Db For Postgre Sql - AzureDbForPostgreSql
- Project
Target Platform Mongo Db - MongoDb
- Project
Target Platform Unknown - Unknown
- SQLDB
- SQLDB
- SQLMI
- SQLMI
- Azure
Db For My Sql - AzureDbForMySql
- Azure
Db For Postgre Sql - AzureDbForPostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- SQLDB
- SQLDB
- SQLMI
- SQLMI
- Azure
Db For My Sql - AzureDbForMySql
- Azure
Db For Postgre Sql - AzureDbForPostgreSql
- Mongo
Db - MongoDb
- Unknown
- Unknown
- SQLDB
- SQLDB
- SQLMI
- SQLMI
- AZURE_DB_FOR_MY_SQL
- AzureDbForMySql
- AZURE_DB_FOR_POSTGRE_SQL
- AzureDbForPostgreSql
- MONGO_DB
- MongoDb
- UNKNOWN
- Unknown
- "SQLDB"
- SQLDB
- "SQLMI"
- SQLMI
- "Azure
Db For My Sql" - AzureDbForMySql
- "Azure
Db For Postgre Sql" - AzureDbForPostgreSql
- "Mongo
Db" - MongoDb
- "Unknown"
- Unknown
SqlConnectionInfo, SqlConnectionInfoArgs
- Data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- Additional
Settings string - Additional connection settings
- Authentication
string | Pulumi.
Azure Native. Data Migration. Authentication Type - Authentication type to use for connection
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Platform
string | Pulumi.
Azure Native. Data Migration. Sql Source Platform - Server platform type for connection
- Port int
- Port for Server
- Resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- Additional
Settings string - Additional connection settings
- Authentication
string | Authentication
Type - Authentication type to use for connection
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Platform
string | Sql
Source Platform - Server platform type for connection
- Port int
- Port for Server
- Resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- data
Source String - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings String - Additional connection settings
- authentication
String | Authentication
Type - Authentication type to use for connection
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- platform
String | Sql
Source Platform - Server platform type for connection
- port Integer
- Port for Server
- resource
Id String - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings string - Additional connection settings
- authentication
string | Authentication
Type - Authentication type to use for connection
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- platform
string | Sql
Source Platform - Server platform type for connection
- port number
- Port for Server
- resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand stringVersion - server brand version
- server
Name string - name of the server
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- data_
source str - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional_
settings str - Additional connection settings
- authentication
str | Authentication
Type - Authentication type to use for connection
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- platform
str | Sql
Source Platform - Server platform type for connection
- port int
- Port for Server
- resource_
id str - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server_
brand_ strversion - server brand version
- server_
name str - name of the server
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- data
Source String - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings String - Additional connection settings
- authentication
String | "None" | "Windows
Authentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" - Authentication type to use for connection
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- platform
String | "Sql
On Prem" - Server platform type for connection
- port Number
- Port for Server
- resource
Id String - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
SqlConnectionInfoResponse, SqlConnectionInfoResponseArgs
- Data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Platform string
- Server platform type for connection
- Port int
- Port for Server
- Resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- Data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- Additional
Settings string - Additional connection settings
- Authentication string
- Authentication type to use for connection
- Encrypt
Connection bool - Whether to encrypt the connection
- Password string
- Password credential.
- Platform string
- Server platform type for connection
- Port int
- Port for Server
- Resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- Server
Brand stringVersion - server brand version
- Server
Name string - name of the server
- Server
Version string - server version
- Trust
Server boolCertificate - Whether to trust the server certificate
- User
Name string - User name
- data
Source String - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- platform String
- Server platform type for connection
- port Integer
- Port for Server
- resource
Id String - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
- data
Source string - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings string - Additional connection settings
- authentication string
- Authentication type to use for connection
- encrypt
Connection boolean - Whether to encrypt the connection
- password string
- Password credential.
- platform string
- Server platform type for connection
- port number
- Port for Server
- resource
Id string - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand stringVersion - server brand version
- server
Name string - name of the server
- server
Version string - server version
- trust
Server booleanCertificate - Whether to trust the server certificate
- user
Name string - User name
- data_
source str - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional_
settings str - Additional connection settings
- authentication str
- Authentication type to use for connection
- encrypt_
connection bool - Whether to encrypt the connection
- password str
- Password credential.
- platform str
- Server platform type for connection
- port int
- Port for Server
- resource_
id str - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server_
brand_ strversion - server brand version
- server_
name str - name of the server
- server_
version str - server version
- trust_
server_ boolcertificate - Whether to trust the server certificate
- user_
name str - User name
- data
Source String - Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional
Settings String - Additional connection settings
- authentication String
- Authentication type to use for connection
- encrypt
Connection Boolean - Whether to encrypt the connection
- password String
- Password credential.
- platform String
- Server platform type for connection
- port Number
- Port for Server
- resource
Id String - Represents the ID of an HTTP resource represented by an Azure resource provider.
- server
Brand StringVersion - server brand version
- server
Name String - name of the server
- server
Version String - server version
- trust
Server BooleanCertificate - Whether to trust the server certificate
- user
Name String - User name
SqlSourcePlatform, SqlSourcePlatformArgs
- Sql
On Prem - SqlOnPrem
- Sql
Source Platform Sql On Prem - SqlOnPrem
- Sql
On Prem - SqlOnPrem
- Sql
On Prem - SqlOnPrem
- SQL_ON_PREM
- SqlOnPrem
- "Sql
On Prem" - SqlOnPrem
SystemDataResponse, SystemDataResponseArgs
- Created
At string - Created
By string - Created
By stringType - Last
Modified stringAt - Last
Modified stringBy - Last
Modified stringBy Type
- Created
At string - Created
By string - Created
By stringType - Last
Modified stringAt - Last
Modified stringBy - Last
Modified stringBy Type
- created
At String - created
By String - created
By StringType - last
Modified StringAt - last
Modified StringBy - last
Modified StringBy Type
- created
At string - created
By string - created
By stringType - last
Modified stringAt - last
Modified stringBy - last
Modified stringBy Type
- created_
at str - created_
by str - created_
by_ strtype - last_
modified_ strat - last_
modified_ strby - last_
modified_ strby_ type
- created
At String - created
By String - created
By StringType - last
Modified StringAt - last
Modified StringBy - last
Modified StringBy Type
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datamigration:Project DmsSdkProject /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.DataMigration/services/{serviceName}/projects/{projectName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0