azure-native.mysqldiscovery.MySQLSite
Explore with Pulumi AI
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:
- Extended
Location Pulumi.Azure Native. My SQLDiscovery. Inputs. Extended Location - The extended location.
- Master
Site stringId - The mapped master Site Id.
- Migrate
Project stringId - The mapped migrate project Id.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Provisioning
State string | Pulumi.Azure Native. My SQLDiscovery. Provisioning State - Gets or sets the provisioning state.
- Site
Name string - The name of Site
- Dictionary<string, string>
- Resource tags.
- Extended
Location ExtendedLocation Args - The extended location.
- Master
Site stringId - The mapped master Site Id.
- Migrate
Project stringId - The mapped migrate project Id.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Provisioning
State string | ProvisioningState - Gets or sets the provisioning state.
- Site
Name string - The name of Site
- map[string]string
- Resource tags.
- extended
Location ExtendedLocation - The extended location.
- master
Site StringId - The mapped master Site Id.
- migrate
Project StringId - The mapped migrate project Id.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- provisioning
State String | ProvisioningState - Gets or sets the provisioning state.
- site
Name String - The name of Site
- Map<String,String>
- Resource tags.
- extended
Location ExtendedLocation - The extended location.
- master
Site stringId - The mapped master Site Id.
- migrate
Project stringId - The mapped migrate project Id.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- provisioning
State string | ProvisioningState - Gets or sets the provisioning state.
- site
Name string - The name of Site
- {[key: string]: string}
- Resource tags.
- extended_
location ExtendedLocation Args - The extended location.
- master_
site_ strid - The mapped master Site Id.
- migrate_
project_ strid - The mapped migrate project Id.
- resource_
group_ strname - 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
- Mapping[str, str]
- Resource tags.
- extended
Location Property Map - The extended location.
- master
Site StringId - The mapped master Site Id.
- migrate
Project StringId - The mapped migrate project Id.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- provisioning
State String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Creating" | "Deleting" | "Updating" - Gets or sets the provisioning state.
- site
Name String - The name of Site
- 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
- System
Data Pulumi.Azure Native. My SQLDiscovery. Outputs. System Data Response - 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
- System
Data SystemData Response - 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
- system
Data SystemData Response - 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
- system
Data SystemData Response - 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 SystemData Response - 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
- system
Data 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
ExtendedLocationResponse, ExtendedLocationResponseArgs
ProvisioningState, ProvisioningStateArgs
- Unknown
- Unknown
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Creating
- Creating
- Deleting
- Deleting
- Updating
- Updating
- Provisioning
State Unknown - Unknown
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Failed - Failed
- Provisioning
State Canceled - Canceled
- Provisioning
State Creating - Creating
- Provisioning
State Deleting - Deleting
- Provisioning
State 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
- "Unknown"
- Unknown
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Canceled"
- Canceled
- "Creating"
- Creating
- "Deleting"
- Deleting
- "Updating"
- Updating
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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