1. Packages
  2. Azure Native
  3. API Docs
  4. mysqldiscovery
  5. MySQLSite
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.mysqldiscovery.MySQLSite

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

    The MySQLSite resource definition.

    Uses Azure REST API version 2024-09-30-preview.

    Example Usage

    MySQLSites_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var mySQLSite = new AzureNative.MySQLDiscovery.MySQLSite("mySQLSite", new()
        {
            ExtendedLocation = new AzureNative.MySQLDiscovery.Inputs.ExtendedLocationArgs
            {
                Name = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
                Type = "customLocation",
            },
            Location = "East US",
            MasterSiteId = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx",
            MigrateProjectId = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx",
            ResourceGroupName = "testrg",
            SiteName = "testSite",
        });
    
    });
    
    package main
    
    import (
    	mysqldiscovery "github.com/pulumi/pulumi-azure-native-sdk/mysqldiscovery/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mysqldiscovery.NewMySQLSite(ctx, "mySQLSite", &mysqldiscovery.MySQLSiteArgs{
    			ExtendedLocation: &mysqldiscovery.ExtendedLocationArgs{
    				Name: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso"),
    				Type: pulumi.String("customLocation"),
    			},
    			Location:          pulumi.String("East US"),
    			MasterSiteId:      pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx"),
    			MigrateProjectId:  pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx"),
    			ResourceGroupName: pulumi.String("testrg"),
    			SiteName:          pulumi.String("testSite"),
    		})
    		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.mysqldiscovery.MySQLSite;
    import com.pulumi.azurenative.mysqldiscovery.MySQLSiteArgs;
    import com.pulumi.azurenative.mysqldiscovery.inputs.ExtendedLocationArgs;
    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 mySQLSite = new MySQLSite("mySQLSite", MySQLSiteArgs.builder()
                .extendedLocation(ExtendedLocationArgs.builder()
                    .name("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso")
                    .type("customLocation")
                    .build())
                .location("East US")
                .masterSiteId("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx")
                .migrateProjectId("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx")
                .resourceGroupName("testrg")
                .siteName("testSite")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const mySQLSite = new azure_native.mysqldiscovery.MySQLSite("mySQLSite", {
        extendedLocation: {
            name: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
            type: "customLocation",
        },
        location: "East US",
        masterSiteId: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx",
        migrateProjectId: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx",
        resourceGroupName: "testrg",
        siteName: "testSite",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    my_sql_site = azure_native.mysqldiscovery.MySQLSite("mySQLSite",
        extended_location={
            "name": "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso",
            "type": "customLocation",
        },
        location="East US",
        master_site_id="/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx",
        migrate_project_id="/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx",
        resource_group_name="testrg",
        site_name="testSite")
    
    resources:
      mySQLSite:
        type: azure-native:mysqldiscovery:MySQLSite
        properties:
          extendedLocation:
            name: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.ExtendedLocation/customLocations/contoso
            type: customLocation
          location: East US
          masterSiteId: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourceGroups/demoRG/providers/Microsoft.OffAzure/MasterSites/xxx
          migrateProjectId: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/microsoft.migrate/migrateprojects/xxx
          resourceGroupName: testrg
          siteName: testSite
    

    Create MySQLSite Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new MySQLSite(name: string, args: MySQLSiteArgs, opts?: CustomResourceOptions);
    @overload
    def MySQLSite(resource_name: str,
                  args: MySQLSiteArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def MySQLSite(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  extended_location: Optional[ExtendedLocationArgs] = None,
                  master_site_id: Optional[str] = None,
                  migrate_project_id: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  location: Optional[str] = None,
                  provisioning_state: Optional[Union[str, ProvisioningState]] = None,
                  site_name: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None)
    func NewMySQLSite(ctx *Context, name string, args MySQLSiteArgs, opts ...ResourceOption) (*MySQLSite, error)
    public MySQLSite(string name, MySQLSiteArgs args, CustomResourceOptions? opts = null)
    public MySQLSite(String name, MySQLSiteArgs args)
    public MySQLSite(String name, MySQLSiteArgs args, CustomResourceOptions options)
    
    type: azure-native:mysqldiscovery:MySQLSite
    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 MySQLSiteArgs
    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 MySQLSiteArgs
    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 MySQLSiteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MySQLSiteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MySQLSiteArgs
    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 mySQLSiteResource = new AzureNative.MySQLDiscovery.MySQLSite("mySQLSiteResource", new()
    {
        ExtendedLocation = new AzureNative.MySQLDiscovery.Inputs.ExtendedLocationArgs
        {
            Name = "string",
            Type = "string",
        },
        MasterSiteId = "string",
        MigrateProjectId = "string",
        ResourceGroupName = "string",
        Location = "string",
        ProvisioningState = "string",
        SiteName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := mysqldiscovery.NewMySQLSite(ctx, "mySQLSiteResource", &mysqldiscovery.MySQLSiteArgs{
    	ExtendedLocation: &mysqldiscovery.ExtendedLocationArgs{
    		Name: pulumi.String("string"),
    		Type: pulumi.String("string"),
    	},
    	MasterSiteId:      pulumi.String("string"),
    	MigrateProjectId:  pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	ProvisioningState: pulumi.String("string"),
    	SiteName:          pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var mySQLSiteResource = new MySQLSite("mySQLSiteResource", MySQLSiteArgs.builder()
        .extendedLocation(ExtendedLocationArgs.builder()
            .name("string")
            .type("string")
            .build())
        .masterSiteId("string")
        .migrateProjectId("string")
        .resourceGroupName("string")
        .location("string")
        .provisioningState("string")
        .siteName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    my_sql_site_resource = azure_native.mysqldiscovery.MySQLSite("mySQLSiteResource",
        extended_location={
            "name": "string",
            "type": "string",
        },
        master_site_id="string",
        migrate_project_id="string",
        resource_group_name="string",
        location="string",
        provisioning_state="string",
        site_name="string",
        tags={
            "string": "string",
        })
    
    const mySQLSiteResource = new azure_native.mysqldiscovery.MySQLSite("mySQLSiteResource", {
        extendedLocation: {
            name: "string",
            type: "string",
        },
        masterSiteId: "string",
        migrateProjectId: "string",
        resourceGroupName: "string",
        location: "string",
        provisioningState: "string",
        siteName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:mysqldiscovery:MySQLSite
    properties:
        extendedLocation:
            name: string
            type: string
        location: string
        masterSiteId: string
        migrateProjectId: string
        provisioningState: string
        resourceGroupName: string
        siteName: string
        tags:
            string: string
    

    MySQLSite 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 MySQLSite resource accepts the following input properties:

    ExtendedLocation Pulumi.AzureNative.MySQLDiscovery.Inputs.ExtendedLocation
    The extended location.
    MasterSiteId string
    The mapped master Site Id.
    MigrateProjectId string
    The mapped migrate project Id.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    ProvisioningState string | Pulumi.AzureNative.MySQLDiscovery.ProvisioningState
    Gets or sets the provisioning state.
    SiteName string
    The name of Site
    Tags Dictionary<string, string>
    Resource tags.
    ExtendedLocation ExtendedLocationArgs
    The extended location.
    MasterSiteId string
    The mapped master Site Id.
    MigrateProjectId string
    The mapped migrate project Id.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    ProvisioningState string | ProvisioningState
    Gets or sets the provisioning state.
    SiteName string
    The name of Site
    Tags map[string]string
    Resource tags.
    extendedLocation ExtendedLocation
    The extended location.
    masterSiteId String
    The mapped master Site Id.
    migrateProjectId String
    The mapped migrate project Id.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    provisioningState String | ProvisioningState
    Gets or sets the provisioning state.
    siteName String
    The name of Site
    tags Map<String,String>
    Resource tags.
    extendedLocation ExtendedLocation
    The extended location.
    masterSiteId string
    The mapped master Site Id.
    migrateProjectId string
    The mapped migrate project Id.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    provisioningState string | ProvisioningState
    Gets or sets the provisioning state.
    siteName string
    The name of Site
    tags {[key: string]: string}
    Resource tags.
    extended_location ExtendedLocationArgs
    The extended location.
    master_site_id str
    The mapped master Site Id.
    migrate_project_id str
    The mapped migrate project Id.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    provisioning_state str | ProvisioningState
    Gets or sets the provisioning state.
    site_name str
    The name of Site
    tags Mapping[str, str]
    Resource tags.
    extendedLocation Property Map
    The extended location.
    masterSiteId String
    The mapped master Site Id.
    migrateProjectId String
    The mapped migrate project Id.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    provisioningState String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Creating" | "Deleting" | "Updating"
    Gets or sets the provisioning state.
    siteName String
    The name of Site
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the MySQLSite resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.MySQLDiscovery.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ExtendedLocation, ExtendedLocationArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string
    The extended location name.
    Type string
    The extended location type.
    Name string
    The extended location name.
    Type string
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.
    name string
    The extended location name.
    type string
    The extended location type.
    name str
    The extended location name.
    type str
    The extended location type.
    name String
    The extended location name.
    type String
    The extended location type.

    ProvisioningState, ProvisioningStateArgs

    Unknown
    Unknown
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    Creating
    Creating
    Deleting
    Deleting
    Updating
    Updating
    ProvisioningStateUnknown
    Unknown
    ProvisioningStateSucceeded
    Succeeded
    ProvisioningStateFailed
    Failed
    ProvisioningStateCanceled
    Canceled
    ProvisioningStateCreating
    Creating
    ProvisioningStateDeleting
    Deleting
    ProvisioningStateUpdating
    Updating
    Unknown
    Unknown
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    Creating
    Creating
    Deleting
    Deleting
    Updating
    Updating
    Unknown
    Unknown
    Succeeded
    Succeeded
    Failed
    Failed
    Canceled
    Canceled
    Creating
    Creating
    Deleting
    Deleting
    Updating
    Updating
    UNKNOWN
    Unknown
    SUCCEEDED
    Succeeded
    FAILED
    Failed
    CANCELED
    Canceled
    CREATING
    Creating
    DELETING
    Deleting
    UPDATING
    Updating
    "Unknown"
    Unknown
    "Succeeded"
    Succeeded
    "Failed"
    Failed
    "Canceled"
    Canceled
    "Creating"
    Creating
    "Deleting"
    Deleting
    "Updating"
    Updating

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    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_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    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:mysqldiscovery:MySQLSite testSite /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MySQLDiscovery/MySQLSites/{siteName} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi