azure-native.mysqldiscovery.MySQLServer
Explore with Pulumi AI
The MySQLServer resource definition.
Uses Azure REST API version 2024-09-30-preview.
Example Usage
MySQLServers_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var mySQLServer = new AzureNative.MySQLDiscovery.MySQLServer("mySQLServer", new()
{
HostIp = new[]
{
"127.0.0.1",
"127.0.0.2",
},
HostName = "test.mysql.server",
MachineId = "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx",
MysqlVersion = "8.0",
NumberOfDatabase = 16,
PortNumber = "3306",
ResourceGroupName = "testrg",
ServerName = "testServerName",
SiteName = "testSite",
SupportStatus = AzureNative.MySQLDiscovery.SupportStatus.Mainstream,
});
});
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.NewMySQLServer(ctx, "mySQLServer", &mysqldiscovery.MySQLServerArgs{
HostIp: pulumi.StringArray{
pulumi.String("127.0.0.1"),
pulumi.String("127.0.0.2"),
},
HostName: pulumi.String("test.mysql.server"),
MachineId: pulumi.String("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx"),
MysqlVersion: pulumi.String("8.0"),
NumberOfDatabase: pulumi.Float64(16),
PortNumber: pulumi.String("3306"),
ResourceGroupName: pulumi.String("testrg"),
ServerName: pulumi.String("testServerName"),
SiteName: pulumi.String("testSite"),
SupportStatus: pulumi.String(mysqldiscovery.SupportStatusMainstream),
})
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.MySQLServer;
import com.pulumi.azurenative.mysqldiscovery.MySQLServerArgs;
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 mySQLServer = new MySQLServer("mySQLServer", MySQLServerArgs.builder()
.hostIp(
"127.0.0.1",
"127.0.0.2")
.hostName("test.mysql.server")
.machineId("/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx")
.mysqlVersion("8.0")
.numberOfDatabase(16)
.portNumber("3306")
.resourceGroupName("testrg")
.serverName("testServerName")
.siteName("testSite")
.supportStatus("Mainstream")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const mySQLServer = new azure_native.mysqldiscovery.MySQLServer("mySQLServer", {
hostIp: [
"127.0.0.1",
"127.0.0.2",
],
hostName: "test.mysql.server",
machineId: "/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx",
mysqlVersion: "8.0",
numberOfDatabase: 16,
portNumber: "3306",
resourceGroupName: "testrg",
serverName: "testServerName",
siteName: "testSite",
supportStatus: azure_native.mysqldiscovery.SupportStatus.Mainstream,
});
import pulumi
import pulumi_azure_native as azure_native
my_sql_server = azure_native.mysqldiscovery.MySQLServer("mySQLServer",
host_ip=[
"127.0.0.1",
"127.0.0.2",
],
host_name="test.mysql.server",
machine_id="/subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx",
mysql_version="8.0",
number_of_database=16,
port_number="3306",
resource_group_name="testrg",
server_name="testServerName",
site_name="testSite",
support_status=azure_native.mysqldiscovery.SupportStatus.MAINSTREAM)
resources:
mySQLServer:
type: azure-native:mysqldiscovery:MySQLServer
properties:
hostIp:
- 127.0.0.1
- 127.0.0.2
hostName: test.mysql.server
machineId: /subscriptions/a5015e1c-867f-4533-8541-85cd470d0cfb/resourcegroups/demoRG/providers/Microsoft.OffAzure/serverSites/xxx/machines/xxx
mysqlVersion: '8.0'
numberOfDatabase: 16
portNumber: '3306'
resourceGroupName: testrg
serverName: testServerName
siteName: testSite
supportStatus: Mainstream
Create MySQLServer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MySQLServer(name: string, args: MySQLServerArgs, opts?: CustomResourceOptions);
@overload
def MySQLServer(resource_name: str,
args: MySQLServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MySQLServer(resource_name: str,
opts: Optional[ResourceOptions] = None,
site_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
port_number: Optional[str] = None,
host_name: Optional[str] = None,
host_ip: Optional[Sequence[str]] = None,
machine_id: Optional[str] = None,
errors: Optional[Sequence[ErrorArgs]] = None,
mysql_version: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
provisioning_state: Optional[Union[str, ProvisioningState]] = None,
number_of_database: Optional[float] = None,
server_name: Optional[str] = None,
edition: Optional[Union[str, Edition]] = None,
support_end_in: Optional[str] = None,
support_status: Optional[Union[str, SupportStatus]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewMySQLServer(ctx *Context, name string, args MySQLServerArgs, opts ...ResourceOption) (*MySQLServer, error)
public MySQLServer(string name, MySQLServerArgs args, CustomResourceOptions? opts = null)
public MySQLServer(String name, MySQLServerArgs args)
public MySQLServer(String name, MySQLServerArgs args, CustomResourceOptions options)
type: azure-native:mysqldiscovery:MySQLServer
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 MySQLServerArgs
- 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 MySQLServerArgs
- 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 MySQLServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MySQLServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MySQLServerArgs
- 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 mySQLServerResource = new AzureNative.MySQLDiscovery.MySQLServer("mySQLServerResource", new()
{
SiteName = "string",
ResourceGroupName = "string",
PortNumber = "string",
HostName = "string",
HostIp = new[]
{
"string",
},
MachineId = "string",
Errors = new[]
{
new AzureNative.MySQLDiscovery.Inputs.ErrorArgs
{
Code = "string",
Id = "string",
Message = "string",
PossibleCause = "string",
RecommendedAction = "string",
RunAsAccountId = "string",
Severity = "string",
SummaryMessage = "string",
UpdatedTimeStamp = "string",
},
},
MysqlVersion = "string",
Labels =
{
{ "string", "string" },
},
ProvisioningState = "string",
NumberOfDatabase = 0,
ServerName = "string",
Edition = "string",
SupportEndIn = "string",
SupportStatus = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := mysqldiscovery.NewMySQLServer(ctx, "mySQLServerResource", &mysqldiscovery.MySQLServerArgs{
SiteName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
PortNumber: pulumi.String("string"),
HostName: pulumi.String("string"),
HostIp: pulumi.StringArray{
pulumi.String("string"),
},
MachineId: pulumi.String("string"),
Errors: mysqldiscovery.ErrorArray{
&mysqldiscovery.ErrorArgs{
Code: pulumi.String("string"),
Id: pulumi.String("string"),
Message: pulumi.String("string"),
PossibleCause: pulumi.String("string"),
RecommendedAction: pulumi.String("string"),
RunAsAccountId: pulumi.String("string"),
Severity: pulumi.String("string"),
SummaryMessage: pulumi.String("string"),
UpdatedTimeStamp: pulumi.String("string"),
},
},
MysqlVersion: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
ProvisioningState: pulumi.String("string"),
NumberOfDatabase: pulumi.Float64(0),
ServerName: pulumi.String("string"),
Edition: pulumi.String("string"),
SupportEndIn: pulumi.String("string"),
SupportStatus: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var mySQLServerResource = new MySQLServer("mySQLServerResource", MySQLServerArgs.builder()
.siteName("string")
.resourceGroupName("string")
.portNumber("string")
.hostName("string")
.hostIp("string")
.machineId("string")
.errors(ErrorArgs.builder()
.code("string")
.id("string")
.message("string")
.possibleCause("string")
.recommendedAction("string")
.runAsAccountId("string")
.severity("string")
.summaryMessage("string")
.updatedTimeStamp("string")
.build())
.mysqlVersion("string")
.labels(Map.of("string", "string"))
.provisioningState("string")
.numberOfDatabase(0)
.serverName("string")
.edition("string")
.supportEndIn("string")
.supportStatus("string")
.tags(Map.of("string", "string"))
.build());
my_sql_server_resource = azure_native.mysqldiscovery.MySQLServer("mySQLServerResource",
site_name="string",
resource_group_name="string",
port_number="string",
host_name="string",
host_ip=["string"],
machine_id="string",
errors=[{
"code": "string",
"id": "string",
"message": "string",
"possible_cause": "string",
"recommended_action": "string",
"run_as_account_id": "string",
"severity": "string",
"summary_message": "string",
"updated_time_stamp": "string",
}],
mysql_version="string",
labels={
"string": "string",
},
provisioning_state="string",
number_of_database=0,
server_name="string",
edition="string",
support_end_in="string",
support_status="string",
tags={
"string": "string",
})
const mySQLServerResource = new azure_native.mysqldiscovery.MySQLServer("mySQLServerResource", {
siteName: "string",
resourceGroupName: "string",
portNumber: "string",
hostName: "string",
hostIp: ["string"],
machineId: "string",
errors: [{
code: "string",
id: "string",
message: "string",
possibleCause: "string",
recommendedAction: "string",
runAsAccountId: "string",
severity: "string",
summaryMessage: "string",
updatedTimeStamp: "string",
}],
mysqlVersion: "string",
labels: {
string: "string",
},
provisioningState: "string",
numberOfDatabase: 0,
serverName: "string",
edition: "string",
supportEndIn: "string",
supportStatus: "string",
tags: {
string: "string",
},
});
type: azure-native:mysqldiscovery:MySQLServer
properties:
edition: string
errors:
- code: string
id: string
message: string
possibleCause: string
recommendedAction: string
runAsAccountId: string
severity: string
summaryMessage: string
updatedTimeStamp: string
hostIp:
- string
hostName: string
labels:
string: string
machineId: string
mysqlVersion: string
numberOfDatabase: 0
portNumber: string
provisioningState: string
resourceGroupName: string
serverName: string
siteName: string
supportEndIn: string
supportStatus: string
tags:
string: string
MySQLServer 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 MySQLServer resource accepts the following input properties:
- Host
Name string - The Server IP/host name.
- Port
Number string - MySQL Server port number
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Site
Name string - The name of Site
- Edition
string | Pulumi.
Azure Native. My SQLDiscovery. Edition - mysql server edition.
- Errors
List<Pulumi.
Azure Native. My SQLDiscovery. Inputs. Error> - The list of errors.
- Host
Ip List<string> - The Server IP/host name.
- Labels Dictionary<string, string>
- Resource labels.
- Machine
Id string - discovery Machine Id
- Mysql
Version string - The mysql server version.
- Number
Of doubleDatabase - The number of database.
- Provisioning
State string | Pulumi.Azure Native. My SQLDiscovery. Provisioning State - Gets or sets the provisioning state.
- Server
Name string - The name of Server
- Support
End stringIn - Time when mysql version support end.
- Support
Status string | Pulumi.Azure Native. My SQLDiscovery. Support Status - mysql version support status.
- Dictionary<string, string>
- Resource tags
- Host
Name string - The Server IP/host name.
- Port
Number string - MySQL Server port number
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Site
Name string - The name of Site
- Edition string | Edition
- mysql server edition.
- Errors
[]Error
Args - The list of errors.
- Host
Ip []string - The Server IP/host name.
- Labels map[string]string
- Resource labels.
- Machine
Id string - discovery Machine Id
- Mysql
Version string - The mysql server version.
- Number
Of float64Database - The number of database.
- Provisioning
State string | ProvisioningState - Gets or sets the provisioning state.
- Server
Name string - The name of Server
- Support
End stringIn - Time when mysql version support end.
- Support
Status string | SupportStatus - mysql version support status.
- map[string]string
- Resource tags
- host
Name String - The Server IP/host name.
- port
Number String - MySQL Server port number
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- site
Name String - The name of Site
- edition String | Edition
- mysql server edition.
- errors List<Error>
- The list of errors.
- host
Ip List<String> - The Server IP/host name.
- labels Map<String,String>
- Resource labels.
- machine
Id String - discovery Machine Id
- mysql
Version String - The mysql server version.
- number
Of DoubleDatabase - The number of database.
- provisioning
State String | ProvisioningState - Gets or sets the provisioning state.
- server
Name String - The name of Server
- support
End StringIn - Time when mysql version support end.
- support
Status String | SupportStatus - mysql version support status.
- Map<String,String>
- Resource tags
- host
Name string - The Server IP/host name.
- port
Number string - MySQL Server port number
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- site
Name string - The name of Site
- edition string | Edition
- mysql server edition.
- errors Error[]
- The list of errors.
- host
Ip string[] - The Server IP/host name.
- labels {[key: string]: string}
- Resource labels.
- machine
Id string - discovery Machine Id
- mysql
Version string - The mysql server version.
- number
Of numberDatabase - The number of database.
- provisioning
State string | ProvisioningState - Gets or sets the provisioning state.
- server
Name string - The name of Server
- support
End stringIn - Time when mysql version support end.
- support
Status string | SupportStatus - mysql version support status.
- {[key: string]: string}
- Resource tags
- host_
name str - The Server IP/host name.
- port_
number str - MySQL Server port number
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- site_
name str - The name of Site
- edition str | Edition
- mysql server edition.
- errors
Sequence[Error
Args] - The list of errors.
- host_
ip Sequence[str] - The Server IP/host name.
- labels Mapping[str, str]
- Resource labels.
- machine_
id str - discovery Machine Id
- mysql_
version str - The mysql server version.
- number_
of_ floatdatabase - The number of database.
- provisioning_
state str | ProvisioningState - Gets or sets the provisioning state.
- server_
name str - The name of Server
- support_
end_ strin - Time when mysql version support end.
- support_
status str | SupportStatus - mysql version support status.
- Mapping[str, str]
- Resource tags
- host
Name String - The Server IP/host name.
- port
Number String - MySQL Server port number
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- site
Name String - The name of Site
- edition String | "Community" | "Enterprise"
- mysql server edition.
- errors List<Property Map>
- The list of errors.
- host
Ip List<String> - The Server IP/host name.
- labels Map<String>
- Resource labels.
- machine
Id String - discovery Machine Id
- mysql
Version String - The mysql server version.
- number
Of NumberDatabase - The number of database.
- provisioning
State String | "Unknown" | "Succeeded" | "Failed" | "Canceled" | "Creating" | "Deleting" | "Updating" - Gets or sets the provisioning state.
- server
Name String - The name of Server
- support
End StringIn - Time when mysql version support end.
- support
Status String | "OutOf Support" | "Extended" | "Mainstream" - mysql version support status.
- Map<String>
- Resource tags
Outputs
All input properties are implicitly available as output properties. Additionally, the MySQLServer 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
Edition, EditionArgs
- Community
- Community
- Enterprise
- Enterprise
- Edition
Community - Community
- Edition
Enterprise - Enterprise
- Community
- Community
- Enterprise
- Enterprise
- Community
- Community
- Enterprise
- Enterprise
- COMMUNITY
- Community
- ENTERPRISE
- Enterprise
- "Community"
- Community
- "Enterprise"
- Enterprise
Error, ErrorArgs
- Code string
- The error code.
- Id string
- The error ID.
- Message string
- The detailed error message.
- Possible
Cause string - The error possible cause.
- Recommended
Action string - Gets description of the checkpoint.
- Run
As stringAccount Id - The account ID used to login.
- Severity string
- Gets description of the severity.
- Summary
Message string - The summarized error message.
- Updated
Time stringStamp - Time when this error was last updated.
- Code string
- The error code.
- Id string
- The error ID.
- Message string
- The detailed error message.
- Possible
Cause string - The error possible cause.
- Recommended
Action string - Gets description of the checkpoint.
- Run
As stringAccount Id - The account ID used to login.
- Severity string
- Gets description of the severity.
- Summary
Message string - The summarized error message.
- Updated
Time stringStamp - Time when this error was last updated.
- code String
- The error code.
- id String
- The error ID.
- message String
- The detailed error message.
- possible
Cause String - The error possible cause.
- recommended
Action String - Gets description of the checkpoint.
- run
As StringAccount Id - The account ID used to login.
- severity String
- Gets description of the severity.
- summary
Message String - The summarized error message.
- updated
Time StringStamp - Time when this error was last updated.
- code string
- The error code.
- id string
- The error ID.
- message string
- The detailed error message.
- possible
Cause string - The error possible cause.
- recommended
Action string - Gets description of the checkpoint.
- run
As stringAccount Id - The account ID used to login.
- severity string
- Gets description of the severity.
- summary
Message string - The summarized error message.
- updated
Time stringStamp - Time when this error was last updated.
- code str
- The error code.
- id str
- The error ID.
- message str
- The detailed error message.
- possible_
cause str - The error possible cause.
- recommended_
action str - Gets description of the checkpoint.
- run_
as_ straccount_ id - The account ID used to login.
- severity str
- Gets description of the severity.
- summary_
message str - The summarized error message.
- updated_
time_ strstamp - Time when this error was last updated.
- code String
- The error code.
- id String
- The error ID.
- message String
- The detailed error message.
- possible
Cause String - The error possible cause.
- recommended
Action String - Gets description of the checkpoint.
- run
As StringAccount Id - The account ID used to login.
- severity String
- Gets description of the severity.
- summary
Message String - The summarized error message.
- updated
Time StringStamp - Time when this error was last updated.
ErrorResponse, ErrorResponseArgs
- Code string
- The error code.
- Id string
- The error ID.
- Message string
- The detailed error message.
- Possible
Cause string - The error possible cause.
- Recommended
Action string - Gets description of the checkpoint.
- Run
As stringAccount Id - The account ID used to login.
- Severity string
- Gets description of the severity.
- Summary
Message string - The summarized error message.
- Updated
Time stringStamp - Time when this error was last updated.
- Code string
- The error code.
- Id string
- The error ID.
- Message string
- The detailed error message.
- Possible
Cause string - The error possible cause.
- Recommended
Action string - Gets description of the checkpoint.
- Run
As stringAccount Id - The account ID used to login.
- Severity string
- Gets description of the severity.
- Summary
Message string - The summarized error message.
- Updated
Time stringStamp - Time when this error was last updated.
- code String
- The error code.
- id String
- The error ID.
- message String
- The detailed error message.
- possible
Cause String - The error possible cause.
- recommended
Action String - Gets description of the checkpoint.
- run
As StringAccount Id - The account ID used to login.
- severity String
- Gets description of the severity.
- summary
Message String - The summarized error message.
- updated
Time StringStamp - Time when this error was last updated.
- code string
- The error code.
- id string
- The error ID.
- message string
- The detailed error message.
- possible
Cause string - The error possible cause.
- recommended
Action string - Gets description of the checkpoint.
- run
As stringAccount Id - The account ID used to login.
- severity string
- Gets description of the severity.
- summary
Message string - The summarized error message.
- updated
Time stringStamp - Time when this error was last updated.
- code str
- The error code.
- id str
- The error ID.
- message str
- The detailed error message.
- possible_
cause str - The error possible cause.
- recommended_
action str - Gets description of the checkpoint.
- run_
as_ straccount_ id - The account ID used to login.
- severity str
- Gets description of the severity.
- summary_
message str - The summarized error message.
- updated_
time_ strstamp - Time when this error was last updated.
- code String
- The error code.
- id String
- The error ID.
- message String
- The detailed error message.
- possible
Cause String - The error possible cause.
- recommended
Action String - Gets description of the checkpoint.
- run
As StringAccount Id - The account ID used to login.
- severity String
- Gets description of the severity.
- summary
Message String - The summarized error message.
- updated
Time StringStamp - Time when this error was last updated.
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
SupportStatus, SupportStatusArgs
- Out
Of Support - OutOfSupport
- Extended
- Extended
- Mainstream
- Mainstream
- Support
Status Out Of Support - OutOfSupport
- Support
Status Extended - Extended
- Support
Status Mainstream - Mainstream
- Out
Of Support - OutOfSupport
- Extended
- Extended
- Mainstream
- Mainstream
- Out
Of Support - OutOfSupport
- Extended
- Extended
- Mainstream
- Mainstream
- OUT_OF_SUPPORT
- OutOfSupport
- EXTENDED
- Extended
- MAINSTREAM
- Mainstream
- "Out
Of Support" - OutOfSupport
- "Extended"
- Extended
- "Mainstream"
- Mainstream
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:MySQLServer testServerName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MySQLDiscovery/MySQLSites/{siteName}/MySQLServers/{serverName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0