1. Packages
  2. Azure Native
  3. API Docs
  4. workloads
  5. ProviderInstance
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.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.workloads.ProviderInstance

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.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    A provider instance associated with SAP monitor. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-12-01-preview.

    Other available API versions: 2023-10-01-preview.

    Example Usage

    Create a Db2 provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.DB2ProviderInstancePropertiesArgs
            {
                DbName = "dbName",
                DbPassword = "password",
                DbPasswordUri = "",
                DbPort = "dbPort",
                DbUsername = "username",
                Hostname = "hostname",
                ProviderType = "Db2",
                SapSid = "SID",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.DB2ProviderInstanceProperties{
    				DbName:            "dbName",
    				DbPassword:        "password",
    				DbPasswordUri:     "",
    				DbPort:            "dbPort",
    				DbUsername:        "username",
    				Hostname:          "hostname",
    				ProviderType:      "Db2",
    				SapSid:            "SID",
    				SslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslPreference:     workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(DB2ProviderInstancePropertiesArgs.builder()
                    .dbName("dbName")
                    .dbPassword("password")
                    .dbPasswordUri("")
                    .dbPort("dbPort")
                    .dbUsername("username")
                    .hostname("hostname")
                    .providerType("Db2")
                    .sapSid("SID")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.DB2ProviderInstancePropertiesArgs(
            db_name="dbName",
            db_password="password",
            db_password_uri="",
            db_port="dbPort",
            db_username="username",
            hostname="hostname",
            provider_type="Db2",
            sap_sid="SID",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbName: "dbName",
            dbPassword: "password",
            dbPasswordUri: "",
            dbPort: "dbPort",
            dbUsername: "username",
            hostname: "hostname",
            providerType: "Db2",
            sapSid: "SID",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbName: dbName
            dbPassword: password
            dbPasswordUri:
            dbPort: dbPort
            dbUsername: username
            hostname: hostname
            providerType: Db2
            sapSid: SID
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a Db2 provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.DB2ProviderInstancePropertiesArgs
            {
                DbName = "dbName",
                DbPassword = "password",
                DbPasswordUri = "",
                DbPort = "dbPort",
                DbUsername = "username",
                Hostname = "hostname",
                ProviderType = "Db2",
                SapSid = "SID",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.DB2ProviderInstanceProperties{
    				DbName:        "dbName",
    				DbPassword:    "password",
    				DbPasswordUri: "",
    				DbPort:        "dbPort",
    				DbUsername:    "username",
    				Hostname:      "hostname",
    				ProviderType:  "Db2",
    				SapSid:        "SID",
    				SslPreference: workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(DB2ProviderInstancePropertiesArgs.builder()
                    .dbName("dbName")
                    .dbPassword("password")
                    .dbPasswordUri("")
                    .dbPort("dbPort")
                    .dbUsername("username")
                    .hostname("hostname")
                    .providerType("Db2")
                    .sapSid("SID")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.DB2ProviderInstancePropertiesArgs(
            db_name="dbName",
            db_password="password",
            db_password_uri="",
            db_port="dbPort",
            db_username="username",
            hostname="hostname",
            provider_type="Db2",
            sap_sid="SID",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbName: "dbName",
            dbPassword: "password",
            dbPasswordUri: "",
            dbPort: "dbPort",
            dbUsername: "username",
            hostname: "hostname",
            providerType: "Db2",
            sapSid: "SID",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbName: dbName
            dbPassword: password
            dbPasswordUri:
            dbPort: dbPort
            dbUsername: username
            hostname: hostname
            providerType: Db2
            sapSid: SID
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create a MsSqlServer provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.MsSqlServerProviderInstancePropertiesArgs
            {
                DbPassword = "****",
                DbPasswordUri = "",
                DbPort = "5912",
                DbUsername = "user",
                Hostname = "hostname",
                ProviderType = "MsSqlServer",
                SapSid = "sid",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.MsSqlServerProviderInstanceProperties{
    				DbPassword:        "****",
    				DbPasswordUri:     "",
    				DbPort:            "5912",
    				DbUsername:        "user",
    				Hostname:          "hostname",
    				ProviderType:      "MsSqlServer",
    				SapSid:            "sid",
    				SslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslPreference:     workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(MsSqlServerProviderInstancePropertiesArgs.builder()
                    .dbPassword("****")
                    .dbPasswordUri("")
                    .dbPort("5912")
                    .dbUsername("user")
                    .hostname("hostname")
                    .providerType("MsSqlServer")
                    .sapSid("sid")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.MsSqlServerProviderInstancePropertiesArgs(
            db_password="****",
            db_password_uri="",
            db_port="5912",
            db_username="user",
            hostname="hostname",
            provider_type="MsSqlServer",
            sap_sid="sid",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbPassword: "****",
            dbPasswordUri: "",
            dbPort: "5912",
            dbUsername: "user",
            hostname: "hostname",
            providerType: "MsSqlServer",
            sapSid: "sid",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbPassword: '****'
            dbPasswordUri:
            dbPort: '5912'
            dbUsername: user
            hostname: hostname
            providerType: MsSqlServer
            sapSid: sid
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a MsSqlServer provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.MsSqlServerProviderInstancePropertiesArgs
            {
                DbPassword = "****",
                DbPasswordUri = "",
                DbPort = "5912",
                DbUsername = "user",
                Hostname = "hostname",
                ProviderType = "MsSqlServer",
                SapSid = "sid",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.MsSqlServerProviderInstanceProperties{
    				DbPassword:    "****",
    				DbPasswordUri: "",
    				DbPort:        "5912",
    				DbUsername:    "user",
    				Hostname:      "hostname",
    				ProviderType:  "MsSqlServer",
    				SapSid:        "sid",
    				SslPreference: workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(MsSqlServerProviderInstancePropertiesArgs.builder()
                    .dbPassword("****")
                    .dbPasswordUri("")
                    .dbPort("5912")
                    .dbUsername("user")
                    .hostname("hostname")
                    .providerType("MsSqlServer")
                    .sapSid("sid")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.MsSqlServerProviderInstancePropertiesArgs(
            db_password="****",
            db_password_uri="",
            db_port="5912",
            db_username="user",
            hostname="hostname",
            provider_type="MsSqlServer",
            sap_sid="sid",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbPassword: "****",
            dbPasswordUri: "",
            dbPort: "5912",
            dbUsername: "user",
            hostname: "hostname",
            providerType: "MsSqlServer",
            sapSid: "sid",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbPassword: '****'
            dbPasswordUri:
            dbPort: '5912'
            dbUsername: user
            hostname: hostname
            providerType: MsSqlServer
            sapSid: sid
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create a OS provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.PrometheusOSProviderInstancePropertiesArgs
            {
                PrometheusUrl = "http://192.168.0.0:9090/metrics",
                ProviderType = "PrometheusOS",
                SapSid = "SID",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.PrometheusOSProviderInstanceProperties{
    				PrometheusUrl:     "http://192.168.0.0:9090/metrics",
    				ProviderType:      "PrometheusOS",
    				SapSid:            "SID",
    				SslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslPreference:     workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(PrometheusOSProviderInstancePropertiesArgs.builder()
                    .prometheusUrl("http://192.168.0.0:9090/metrics")
                    .providerType("PrometheusOS")
                    .sapSid("SID")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.PrometheusOSProviderInstancePropertiesArgs(
            prometheus_url="http://192.168.0.0:9090/metrics",
            provider_type="PrometheusOS",
            sap_sid="SID",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            prometheusUrl: "http://192.168.0.0:9090/metrics",
            providerType: "PrometheusOS",
            sapSid: "SID",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            prometheusUrl: http://192.168.0.0:9090/metrics
            providerType: PrometheusOS
            sapSid: SID
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a OS provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.PrometheusOSProviderInstancePropertiesArgs
            {
                PrometheusUrl = "http://192.168.0.0:9090/metrics",
                ProviderType = "PrometheusOS",
                SapSid = "SID",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.PrometheusOSProviderInstanceProperties{
    				PrometheusUrl: "http://192.168.0.0:9090/metrics",
    				ProviderType:  "PrometheusOS",
    				SapSid:        "SID",
    				SslPreference: workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(PrometheusOSProviderInstancePropertiesArgs.builder()
                    .prometheusUrl("http://192.168.0.0:9090/metrics")
                    .providerType("PrometheusOS")
                    .sapSid("SID")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.PrometheusOSProviderInstancePropertiesArgs(
            prometheus_url="http://192.168.0.0:9090/metrics",
            provider_type="PrometheusOS",
            sap_sid="SID",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            prometheusUrl: "http://192.168.0.0:9090/metrics",
            providerType: "PrometheusOS",
            sapSid: "SID",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            prometheusUrl: http://192.168.0.0:9090/metrics
            providerType: PrometheusOS
            sapSid: SID
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create a PrometheusHaCluster provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.PrometheusHaClusterProviderInstancePropertiesArgs
            {
                ClusterName = "clusterName",
                Hostname = "hostname",
                PrometheusUrl = "http://192.168.0.0:9090/metrics",
                ProviderType = "PrometheusHaCluster",
                Sid = "sid",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.PrometheusHaClusterProviderInstanceProperties{
    				ClusterName:       "clusterName",
    				Hostname:          "hostname",
    				PrometheusUrl:     "http://192.168.0.0:9090/metrics",
    				ProviderType:      "PrometheusHaCluster",
    				Sid:               "sid",
    				SslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslPreference:     workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(PrometheusHaClusterProviderInstancePropertiesArgs.builder()
                    .clusterName("clusterName")
                    .hostname("hostname")
                    .prometheusUrl("http://192.168.0.0:9090/metrics")
                    .providerType("PrometheusHaCluster")
                    .sid("sid")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.PrometheusHaClusterProviderInstancePropertiesArgs(
            cluster_name="clusterName",
            hostname="hostname",
            prometheus_url="http://192.168.0.0:9090/metrics",
            provider_type="PrometheusHaCluster",
            sid="sid",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            clusterName: "clusterName",
            hostname: "hostname",
            prometheusUrl: "http://192.168.0.0:9090/metrics",
            providerType: "PrometheusHaCluster",
            sid: "sid",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            clusterName: clusterName
            hostname: hostname
            prometheusUrl: http://192.168.0.0:9090/metrics
            providerType: PrometheusHaCluster
            sid: sid
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a PrometheusHaCluster provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.PrometheusHaClusterProviderInstancePropertiesArgs
            {
                ClusterName = "clusterName",
                Hostname = "hostname",
                PrometheusUrl = "http://192.168.0.0:9090/metrics",
                ProviderType = "PrometheusHaCluster",
                Sid = "sid",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.PrometheusHaClusterProviderInstanceProperties{
    				ClusterName:   "clusterName",
    				Hostname:      "hostname",
    				PrometheusUrl: "http://192.168.0.0:9090/metrics",
    				ProviderType:  "PrometheusHaCluster",
    				Sid:           "sid",
    				SslPreference: workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(PrometheusHaClusterProviderInstancePropertiesArgs.builder()
                    .clusterName("clusterName")
                    .hostname("hostname")
                    .prometheusUrl("http://192.168.0.0:9090/metrics")
                    .providerType("PrometheusHaCluster")
                    .sid("sid")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.PrometheusHaClusterProviderInstancePropertiesArgs(
            cluster_name="clusterName",
            hostname="hostname",
            prometheus_url="http://192.168.0.0:9090/metrics",
            provider_type="PrometheusHaCluster",
            sid="sid",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            clusterName: "clusterName",
            hostname: "hostname",
            prometheusUrl: "http://192.168.0.0:9090/metrics",
            providerType: "PrometheusHaCluster",
            sid: "sid",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            clusterName: clusterName
            hostname: hostname
            prometheusUrl: http://192.168.0.0:9090/metrics
            providerType: PrometheusHaCluster
            sid: sid
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create a SAP monitor Hana provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.HanaDbProviderInstancePropertiesArgs
            {
                DbName = "db",
                DbPassword = "****",
                DbPasswordUri = "",
                DbUsername = "user",
                Hostname = "name",
                InstanceNumber = "00",
                ProviderType = "SapHana",
                SapSid = "SID",
                SqlPort = "0000",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslHostNameInCertificate = "xyz.domain.com",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.HanaDbProviderInstanceProperties{
    				DbName:                   "db",
    				DbPassword:               "****",
    				DbPasswordUri:            "",
    				DbUsername:               "user",
    				Hostname:                 "name",
    				InstanceNumber:           "00",
    				ProviderType:             "SapHana",
    				SapSid:                   "SID",
    				SqlPort:                  "0000",
    				SslCertificateUri:        "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslHostNameInCertificate: "xyz.domain.com",
    				SslPreference:            workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(DB2ProviderInstancePropertiesArgs.builder()
                    .dbName("db")
                    .dbPassword("****")
                    .dbPasswordUri("")
                    .dbUsername("user")
                    .hostname("name")
                    .instanceNumber("00")
                    .providerType("SapHana")
                    .sapSid("SID")
                    .sqlPort("0000")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslHostNameInCertificate("xyz.domain.com")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.HanaDbProviderInstancePropertiesArgs(
            db_name="db",
            db_password="****",
            db_password_uri="",
            db_username="user",
            hostname="name",
            instance_number="00",
            provider_type="SapHana",
            sap_sid="SID",
            sql_port="0000",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_host_name_in_certificate="xyz.domain.com",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbName: "db",
            dbPassword: "****",
            dbPasswordUri: "",
            dbUsername: "user",
            hostname: "name",
            instanceNumber: "00",
            providerType: "SapHana",
            sapSid: "SID",
            sqlPort: "0000",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslHostNameInCertificate: "xyz.domain.com",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbName: db
            dbPassword: '****'
            dbPasswordUri:
            dbUsername: user
            hostname: name
            instanceNumber: '00'
            providerType: SapHana
            sapSid: SID
            sqlPort: '0000'
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslHostNameInCertificate: xyz.domain.com
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a SAP monitor Hana provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.HanaDbProviderInstancePropertiesArgs
            {
                DbName = "db",
                DbPassword = "****",
                DbPasswordUri = "",
                DbUsername = "user",
                Hostname = "name",
                InstanceNumber = "00",
                ProviderType = "SapHana",
                SapSid = "SID",
                SqlPort = "0000",
                SslHostNameInCertificate = "xyz.domain.com",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.HanaDbProviderInstanceProperties{
    				DbName:                   "db",
    				DbPassword:               "****",
    				DbPasswordUri:            "",
    				DbUsername:               "user",
    				Hostname:                 "name",
    				InstanceNumber:           "00",
    				ProviderType:             "SapHana",
    				SapSid:                   "SID",
    				SqlPort:                  "0000",
    				SslHostNameInCertificate: "xyz.domain.com",
    				SslPreference:            workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(DB2ProviderInstancePropertiesArgs.builder()
                    .dbName("db")
                    .dbPassword("****")
                    .dbPasswordUri("")
                    .dbUsername("user")
                    .hostname("name")
                    .instanceNumber("00")
                    .providerType("SapHana")
                    .sapSid("SID")
                    .sqlPort("0000")
                    .sslHostNameInCertificate("xyz.domain.com")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.HanaDbProviderInstancePropertiesArgs(
            db_name="db",
            db_password="****",
            db_password_uri="",
            db_username="user",
            hostname="name",
            instance_number="00",
            provider_type="SapHana",
            sap_sid="SID",
            sql_port="0000",
            ssl_host_name_in_certificate="xyz.domain.com",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            dbName: "db",
            dbPassword: "****",
            dbPasswordUri: "",
            dbUsername: "user",
            hostname: "name",
            instanceNumber: "00",
            providerType: "SapHana",
            sapSid: "SID",
            sqlPort: "0000",
            sslHostNameInCertificate: "xyz.domain.com",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            dbName: db
            dbPassword: '****'
            dbPasswordUri:
            dbUsername: user
            hostname: name
            instanceNumber: '00'
            providerType: SapHana
            sapSid: SID
            sqlPort: '0000'
            sslHostNameInCertificate: xyz.domain.com
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create a SAP monitor NetWeaver provider

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.SapNetWeaverProviderInstancePropertiesArgs
            {
                ProviderType = "SapNetWeaver",
                SapClientId = "111",
                SapHostFileEntries = new[]
                {
                    "127.0.0.1 name fqdn",
                },
                SapHostname = "name",
                SapInstanceNr = "00",
                SapPassword = "****",
                SapPasswordUri = "",
                SapPortNumber = "1234",
                SapSid = "SID",
                SapUsername = "username",
                SslCertificateUri = "https://storageaccount.blob.core.windows.net/containername/filename",
                SslPreference = AzureNative.Workloads.SslPreference.ServerCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.SapNetWeaverProviderInstanceProperties{
    				ProviderType: "SapNetWeaver",
    				SapClientId:  "111",
    				SapHostFileEntries: []string{
    					"127.0.0.1 name fqdn",
    				},
    				SapHostname:       "name",
    				SapInstanceNr:     "00",
    				SapPassword:       "****",
    				SapPasswordUri:    "",
    				SapPortNumber:     "1234",
    				SapSid:            "SID",
    				SapUsername:       "username",
    				SslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
    				SslPreference:     workloads.SslPreferenceServerCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(SapNetWeaverProviderInstancePropertiesArgs.builder()
                    .providerType("SapNetWeaver")
                    .sapClientId("111")
                    .sapHostFileEntries("127.0.0.1 name fqdn")
                    .sapHostname("name")
                    .sapInstanceNr("00")
                    .sapPassword("****")
                    .sapPasswordUri("")
                    .sapPortNumber("1234")
                    .sapSid("SID")
                    .sapUsername("username")
                    .sslCertificateUri("https://storageaccount.blob.core.windows.net/containername/filename")
                    .sslPreference("ServerCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.SapNetWeaverProviderInstancePropertiesArgs(
            provider_type="SapNetWeaver",
            sap_client_id="111",
            sap_host_file_entries=["127.0.0.1 name fqdn"],
            sap_hostname="name",
            sap_instance_nr="00",
            sap_password="****",
            sap_password_uri="",
            sap_port_number="1234",
            sap_sid="SID",
            sap_username="username",
            ssl_certificate_uri="https://storageaccount.blob.core.windows.net/containername/filename",
            ssl_preference=azure_native.workloads.SslPreference.SERVER_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            providerType: "SapNetWeaver",
            sapClientId: "111",
            sapHostFileEntries: ["127.0.0.1 name fqdn"],
            sapHostname: "name",
            sapInstanceNr: "00",
            sapPassword: "****",
            sapPasswordUri: "",
            sapPortNumber: "1234",
            sapSid: "SID",
            sapUsername: "username",
            sslCertificateUri: "https://storageaccount.blob.core.windows.net/containername/filename",
            sslPreference: azure_native.workloads.SslPreference.ServerCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            providerType: SapNetWeaver
            sapClientId: '111'
            sapHostFileEntries:
              - 127.0.0.1 name fqdn
            sapHostname: name
            sapInstanceNr: '00'
            sapPassword: '****'
            sapPasswordUri:
            sapPortNumber: '1234'
            sapSid: SID
            sapUsername: username
            sslCertificateUri: https://storageaccount.blob.core.windows.net/containername/filename
            sslPreference: ServerCertificate
          resourceGroupName: myResourceGroup
    

    Create a SAP monitor NetWeaver provider with Root Certificate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var providerInstance = new AzureNative.Workloads.ProviderInstance("providerInstance", new()
        {
            MonitorName = "mySapMonitor",
            ProviderInstanceName = "myProviderInstance",
            ProviderSettings = new AzureNative.Workloads.Inputs.SapNetWeaverProviderInstancePropertiesArgs
            {
                ProviderType = "SapNetWeaver",
                SapClientId = "111",
                SapHostFileEntries = new[]
                {
                    "127.0.0.1 name fqdn",
                },
                SapHostname = "name",
                SapInstanceNr = "00",
                SapPassword = "****",
                SapPasswordUri = "",
                SapPortNumber = "1234",
                SapSid = "SID",
                SapUsername = "username",
                SslPreference = AzureNative.Workloads.SslPreference.RootCertificate,
            },
            ResourceGroupName = "myResourceGroup",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.NewProviderInstance(ctx, "providerInstance", &workloads.ProviderInstanceArgs{
    			MonitorName:          pulumi.String("mySapMonitor"),
    			ProviderInstanceName: pulumi.String("myProviderInstance"),
    			ProviderSettings: workloads.SapNetWeaverProviderInstanceProperties{
    				ProviderType: "SapNetWeaver",
    				SapClientId:  "111",
    				SapHostFileEntries: []string{
    					"127.0.0.1 name fqdn",
    				},
    				SapHostname:    "name",
    				SapInstanceNr:  "00",
    				SapPassword:    "****",
    				SapPasswordUri: "",
    				SapPortNumber:  "1234",
    				SapSid:         "SID",
    				SapUsername:    "username",
    				SslPreference:  workloads.SslPreferenceRootCertificate,
    			},
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    		})
    		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.workloads.ProviderInstance;
    import com.pulumi.azurenative.workloads.ProviderInstanceArgs;
    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 providerInstance = new ProviderInstance("providerInstance", ProviderInstanceArgs.builder()        
                .monitorName("mySapMonitor")
                .providerInstanceName("myProviderInstance")
                .providerSettings(SapNetWeaverProviderInstancePropertiesArgs.builder()
                    .providerType("SapNetWeaver")
                    .sapClientId("111")
                    .sapHostFileEntries("127.0.0.1 name fqdn")
                    .sapHostname("name")
                    .sapInstanceNr("00")
                    .sapPassword("****")
                    .sapPasswordUri("")
                    .sapPortNumber("1234")
                    .sapSid("SID")
                    .sapUsername("username")
                    .sslPreference("RootCertificate")
                    .build())
                .resourceGroupName("myResourceGroup")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    provider_instance = azure_native.workloads.ProviderInstance("providerInstance",
        monitor_name="mySapMonitor",
        provider_instance_name="myProviderInstance",
        provider_settings=azure_native.workloads.SapNetWeaverProviderInstancePropertiesArgs(
            provider_type="SapNetWeaver",
            sap_client_id="111",
            sap_host_file_entries=["127.0.0.1 name fqdn"],
            sap_hostname="name",
            sap_instance_nr="00",
            sap_password="****",
            sap_password_uri="",
            sap_port_number="1234",
            sap_sid="SID",
            sap_username="username",
            ssl_preference=azure_native.workloads.SslPreference.ROOT_CERTIFICATE,
        ),
        resource_group_name="myResourceGroup")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const providerInstance = new azure_native.workloads.ProviderInstance("providerInstance", {
        monitorName: "mySapMonitor",
        providerInstanceName: "myProviderInstance",
        providerSettings: {
            providerType: "SapNetWeaver",
            sapClientId: "111",
            sapHostFileEntries: ["127.0.0.1 name fqdn"],
            sapHostname: "name",
            sapInstanceNr: "00",
            sapPassword: "****",
            sapPasswordUri: "",
            sapPortNumber: "1234",
            sapSid: "SID",
            sapUsername: "username",
            sslPreference: azure_native.workloads.SslPreference.RootCertificate,
        },
        resourceGroupName: "myResourceGroup",
    });
    
    resources:
      providerInstance:
        type: azure-native:workloads:ProviderInstance
        properties:
          monitorName: mySapMonitor
          providerInstanceName: myProviderInstance
          providerSettings:
            providerType: SapNetWeaver
            sapClientId: '111'
            sapHostFileEntries:
              - 127.0.0.1 name fqdn
            sapHostname: name
            sapInstanceNr: '00'
            sapPassword: '****'
            sapPasswordUri:
            sapPortNumber: '1234'
            sapSid: SID
            sapUsername: username
            sslPreference: RootCertificate
          resourceGroupName: myResourceGroup
    

    Create ProviderInstance Resource

    new ProviderInstance(name: string, args: ProviderInstanceArgs, opts?: CustomResourceOptions);
    @overload
    def ProviderInstance(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         identity: Optional[UserAssignedServiceIdentityArgs] = None,
                         monitor_name: Optional[str] = None,
                         provider_instance_name: Optional[str] = None,
                         provider_settings: Optional[Union[DB2ProviderInstancePropertiesArgs, HanaDbProviderInstancePropertiesArgs, MsSqlServerProviderInstancePropertiesArgs, PrometheusHaClusterProviderInstancePropertiesArgs, PrometheusOSProviderInstancePropertiesArgs, SapNetWeaverProviderInstancePropertiesArgs]] = None,
                         resource_group_name: Optional[str] = None)
    @overload
    def ProviderInstance(resource_name: str,
                         args: ProviderInstanceArgs,
                         opts: Optional[ResourceOptions] = None)
    func NewProviderInstance(ctx *Context, name string, args ProviderInstanceArgs, opts ...ResourceOption) (*ProviderInstance, error)
    public ProviderInstance(string name, ProviderInstanceArgs args, CustomResourceOptions? opts = null)
    public ProviderInstance(String name, ProviderInstanceArgs args)
    public ProviderInstance(String name, ProviderInstanceArgs args, CustomResourceOptions options)
    
    type: azure-native:workloads:ProviderInstance
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ProviderInstanceArgs
    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 ProviderInstanceArgs
    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 ProviderInstanceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProviderInstanceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProviderInstanceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ProviderInstance Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ProviderInstance resource accepts the following input properties:

    MonitorName string
    Name of the SAP monitor resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity Pulumi.AzureNative.Workloads.Inputs.UserAssignedServiceIdentity
    [currently not in use] Managed service identity(user assigned identities)
    ProviderInstanceName string
    Name of the provider instance.
    ProviderSettings Pulumi.AzureNative.Workloads.Inputs.DB2ProviderInstanceProperties | Pulumi.AzureNative.Workloads.Inputs.HanaDbProviderInstanceProperties | Pulumi.AzureNative.Workloads.Inputs.MsSqlServerProviderInstanceProperties | Pulumi.AzureNative.Workloads.Inputs.PrometheusHaClusterProviderInstanceProperties | Pulumi.AzureNative.Workloads.Inputs.PrometheusOSProviderInstanceProperties | Pulumi.AzureNative.Workloads.Inputs.SapNetWeaverProviderInstanceProperties
    Defines the provider specific properties.
    MonitorName string
    Name of the SAP monitor resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Identity UserAssignedServiceIdentityArgs
    [currently not in use] Managed service identity(user assigned identities)
    ProviderInstanceName string
    Name of the provider instance.
    ProviderSettings DB2ProviderInstancePropertiesArgs | HanaDbProviderInstancePropertiesArgs | MsSqlServerProviderInstancePropertiesArgs | PrometheusHaClusterProviderInstancePropertiesArgs | PrometheusOSProviderInstancePropertiesArgs | SapNetWeaverProviderInstancePropertiesArgs
    Defines the provider specific properties.
    monitorName String
    Name of the SAP monitor resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity UserAssignedServiceIdentity
    [currently not in use] Managed service identity(user assigned identities)
    providerInstanceName String
    Name of the provider instance.
    providerSettings DB2ProviderInstanceProperties | HanaDbProviderInstanceProperties | MsSqlServerProviderInstanceProperties | PrometheusHaClusterProviderInstanceProperties | PrometheusOSProviderInstanceProperties | SapNetWeaverProviderInstanceProperties
    Defines the provider specific properties.
    monitorName string
    Name of the SAP monitor resource.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    identity UserAssignedServiceIdentity
    [currently not in use] Managed service identity(user assigned identities)
    providerInstanceName string
    Name of the provider instance.
    providerSettings DB2ProviderInstanceProperties | HanaDbProviderInstanceProperties | MsSqlServerProviderInstanceProperties | PrometheusHaClusterProviderInstanceProperties | PrometheusOSProviderInstanceProperties | SapNetWeaverProviderInstanceProperties
    Defines the provider specific properties.
    monitor_name str
    Name of the SAP monitor resource.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    identity UserAssignedServiceIdentityArgs
    [currently not in use] Managed service identity(user assigned identities)
    provider_instance_name str
    Name of the provider instance.
    provider_settings DB2ProviderInstancePropertiesArgs | HanaDbProviderInstancePropertiesArgs | MsSqlServerProviderInstancePropertiesArgs | PrometheusHaClusterProviderInstancePropertiesArgs | PrometheusOSProviderInstancePropertiesArgs | SapNetWeaverProviderInstancePropertiesArgs
    Defines the provider specific properties.
    monitorName String
    Name of the SAP monitor resource.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    identity Property Map
    [currently not in use] Managed service identity(user assigned identities)
    providerInstanceName String
    Name of the provider instance.
    providerSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Defines the provider specific properties.

    Outputs

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

    Errors Pulumi.AzureNative.Workloads.Outputs.ProviderInstancePropertiesResponseErrors
    Defines the provider instance errors.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of provisioning of the provider instance
    SystemData Pulumi.AzureNative.Workloads.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"
    Errors ProviderInstancePropertiesResponseErrors
    Defines the provider instance errors.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of provisioning of the provider instance
    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"
    errors ProviderInstancePropertiesResponseErrors
    Defines the provider instance errors.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of provisioning of the provider instance
    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"
    errors ProviderInstancePropertiesResponseErrors
    Defines the provider instance errors.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    State of provisioning of the provider instance
    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"
    errors ProviderInstancePropertiesResponseErrors
    Defines the provider instance errors.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    State of provisioning of the provider instance
    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"
    errors Property Map
    Defines the provider instance errors.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of provisioning of the provider instance
    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

    DB2ProviderInstanceProperties, DB2ProviderInstancePropertiesArgs

    DbName string
    Gets or sets the db2 database name.
    DbPassword string
    Gets or sets the db2 database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the db2 database sql port.
    DbUsername string
    Gets or sets the db2 database user name.
    Hostname string
    Gets or sets the target virtual machine name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    DbName string
    Gets or sets the db2 database name.
    DbPassword string
    Gets or sets the db2 database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the db2 database sql port.
    DbUsername string
    Gets or sets the db2 database user name.
    Hostname string
    Gets or sets the target virtual machine name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the db2 database name.
    dbPassword String
    Gets or sets the db2 database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the db2 database sql port.
    dbUsername String
    Gets or sets the db2 database user name.
    hostname String
    Gets or sets the target virtual machine name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName string
    Gets or sets the db2 database name.
    dbPassword string
    Gets or sets the db2 database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbPort string
    Gets or sets the db2 database sql port.
    dbUsername string
    Gets or sets the db2 database user name.
    hostname string
    Gets or sets the target virtual machine name.
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    db_name str
    Gets or sets the db2 database name.
    db_password str
    Gets or sets the db2 database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_port str
    Gets or sets the db2 database sql port.
    db_username str
    Gets or sets the db2 database user name.
    hostname str
    Gets or sets the target virtual machine name.
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the db2 database name.
    dbPassword String
    Gets or sets the db2 database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the db2 database sql port.
    dbUsername String
    Gets or sets the db2 database user name.
    hostname String
    Gets or sets the target virtual machine name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    DB2ProviderInstancePropertiesResponse, DB2ProviderInstancePropertiesResponseArgs

    DbName string
    Gets or sets the db2 database name.
    DbPassword string
    Gets or sets the db2 database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the db2 database sql port.
    DbUsername string
    Gets or sets the db2 database user name.
    Hostname string
    Gets or sets the target virtual machine name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    DbName string
    Gets or sets the db2 database name.
    DbPassword string
    Gets or sets the db2 database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the db2 database sql port.
    DbUsername string
    Gets or sets the db2 database user name.
    Hostname string
    Gets or sets the target virtual machine name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the db2 database name.
    dbPassword String
    Gets or sets the db2 database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the db2 database sql port.
    dbUsername String
    Gets or sets the db2 database user name.
    hostname String
    Gets or sets the target virtual machine name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    dbName string
    Gets or sets the db2 database name.
    dbPassword string
    Gets or sets the db2 database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbPort string
    Gets or sets the db2 database sql port.
    dbUsername string
    Gets or sets the db2 database user name.
    hostname string
    Gets or sets the target virtual machine name.
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    db_name str
    Gets or sets the db2 database name.
    db_password str
    Gets or sets the db2 database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_port str
    Gets or sets the db2 database sql port.
    db_username str
    Gets or sets the db2 database user name.
    hostname str
    Gets or sets the target virtual machine name.
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the db2 database name.
    dbPassword String
    Gets or sets the db2 database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the db2 database sql port.
    dbUsername String
    Gets or sets the db2 database user name.
    hostname String
    Gets or sets the target virtual machine name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB2 Database.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    ErrorResponse, ErrorResponseArgs

    Code string
    Server-defined set of error codes.
    Details List<Pulumi.AzureNative.Workloads.Inputs.ErrorResponse>
    Array of details about specific errors that led to this reported error.
    InnerError Pulumi.AzureNative.Workloads.Inputs.ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    Message string
    Human-readable representation of the error.
    Target string
    Target of the error.
    Code string
    Server-defined set of error codes.
    Details []ErrorResponse
    Array of details about specific errors that led to this reported error.
    InnerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    Message string
    Human-readable representation of the error.
    Target string
    Target of the error.
    code String
    Server-defined set of error codes.
    details List<ErrorResponse>
    Array of details about specific errors that led to this reported error.
    innerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message String
    Human-readable representation of the error.
    target String
    Target of the error.
    code string
    Server-defined set of error codes.
    details ErrorResponse[]
    Array of details about specific errors that led to this reported error.
    innerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message string
    Human-readable representation of the error.
    target string
    Target of the error.
    code str
    Server-defined set of error codes.
    details Sequence[ErrorResponse]
    Array of details about specific errors that led to this reported error.
    inner_error ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message str
    Human-readable representation of the error.
    target str
    Target of the error.
    code String
    Server-defined set of error codes.
    details List<Property Map>
    Array of details about specific errors that led to this reported error.
    innerError Property Map
    Object containing more specific information than the current object about the error.
    message String
    Human-readable representation of the error.
    target String
    Target of the error.

    ErrorResponseInnerError, ErrorResponseInnerErrorArgs

    InnerError ErrorResponse
    Standard error object.
    innerError ErrorResponse
    Standard error object.
    innerError ErrorResponse
    Standard error object.
    inner_error ErrorResponse
    Standard error object.
    innerError Property Map
    Standard error object.

    HanaDbProviderInstanceProperties, HanaDbProviderInstancePropertiesArgs

    DbName string
    Gets or sets the hana database name.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the target virtual machine size.
    InstanceNumber string
    Gets or sets the database instance number.
    SapSid string
    Gets or sets the SAP System Identifier.
    SqlPort string
    Gets or sets the database sql port.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    SslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    DbName string
    Gets or sets the hana database name.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the target virtual machine size.
    InstanceNumber string
    Gets or sets the database instance number.
    SapSid string
    Gets or sets the SAP System Identifier.
    SqlPort string
    Gets or sets the database sql port.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    SslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the hana database name.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the target virtual machine size.
    instanceNumber String
    Gets or sets the database instance number.
    sapSid String
    Gets or sets the SAP System Identifier.
    sqlPort String
    Gets or sets the database sql port.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate String
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName string
    Gets or sets the hana database name.
    dbPassword string
    Gets or sets the database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbUsername string
    Gets or sets the database user name.
    hostname string
    Gets or sets the target virtual machine size.
    instanceNumber string
    Gets or sets the database instance number.
    sapSid string
    Gets or sets the SAP System Identifier.
    sqlPort string
    Gets or sets the database sql port.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    db_name str
    Gets or sets the hana database name.
    db_password str
    Gets or sets the database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_username str
    Gets or sets the database user name.
    hostname str
    Gets or sets the target virtual machine size.
    instance_number str
    Gets or sets the database instance number.
    sap_sid str
    Gets or sets the SAP System Identifier.
    sql_port str
    Gets or sets the database sql port.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the DB.
    ssl_host_name_in_certificate str
    Gets or sets the hostname(s) in the SSL certificate.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the hana database name.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the target virtual machine size.
    instanceNumber String
    Gets or sets the database instance number.
    sapSid String
    Gets or sets the SAP System Identifier.
    sqlPort String
    Gets or sets the database sql port.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate String
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    HanaDbProviderInstancePropertiesResponse, HanaDbProviderInstancePropertiesResponseArgs

    DbName string
    Gets or sets the hana database name.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the target virtual machine size.
    InstanceNumber string
    Gets or sets the database instance number.
    SapSid string
    Gets or sets the SAP System Identifier.
    SqlPort string
    Gets or sets the database sql port.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    SslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    DbName string
    Gets or sets the hana database name.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the target virtual machine size.
    InstanceNumber string
    Gets or sets the database instance number.
    SapSid string
    Gets or sets the SAP System Identifier.
    SqlPort string
    Gets or sets the database sql port.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    SslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the hana database name.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the target virtual machine size.
    instanceNumber String
    Gets or sets the database instance number.
    sapSid String
    Gets or sets the SAP System Identifier.
    sqlPort String
    Gets or sets the database sql port.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate String
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    dbName string
    Gets or sets the hana database name.
    dbPassword string
    Gets or sets the database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbUsername string
    Gets or sets the database user name.
    hostname string
    Gets or sets the target virtual machine size.
    instanceNumber string
    Gets or sets the database instance number.
    sapSid string
    Gets or sets the SAP System Identifier.
    sqlPort string
    Gets or sets the database sql port.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate string
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    db_name str
    Gets or sets the hana database name.
    db_password str
    Gets or sets the database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_username str
    Gets or sets the database user name.
    hostname str
    Gets or sets the target virtual machine size.
    instance_number str
    Gets or sets the database instance number.
    sap_sid str
    Gets or sets the SAP System Identifier.
    sql_port str
    Gets or sets the database sql port.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the DB.
    ssl_host_name_in_certificate str
    Gets or sets the hostname(s) in the SSL certificate.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    dbName String
    Gets or sets the hana database name.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the target virtual machine size.
    instanceNumber String
    Gets or sets the database instance number.
    sapSid String
    Gets or sets the SAP System Identifier.
    sqlPort String
    Gets or sets the database sql port.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the DB.
    sslHostNameInCertificate String
    Gets or sets the hostname(s) in the SSL certificate.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    UserAssigned
    UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    None
    None
    UserAssigned
    UserAssigned
    None
    None
    UserAssigned
    UserAssigned
    NONE
    None
    USER_ASSIGNED
    UserAssigned
    "None"
    None
    "UserAssigned"
    UserAssigned

    MsSqlServerProviderInstanceProperties, MsSqlServerProviderInstancePropertiesArgs

    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the database sql port.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the SQL server host name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the database sql port.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the SQL server host name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the database sql port.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the SQL server host name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword string
    Gets or sets the database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbPort string
    Gets or sets the database sql port.
    dbUsername string
    Gets or sets the database user name.
    hostname string
    Gets or sets the SQL server host name.
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    db_password str
    Gets or sets the database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_port str
    Gets or sets the database sql port.
    db_username str
    Gets or sets the database user name.
    hostname str
    Gets or sets the SQL server host name.
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the database sql port.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the SQL server host name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    MsSqlServerProviderInstancePropertiesResponse, MsSqlServerProviderInstancePropertiesResponseArgs

    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the database sql port.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the SQL server host name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    DbPassword string
    Gets or sets the database password.
    DbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    DbPort string
    Gets or sets the database sql port.
    DbUsername string
    Gets or sets the database user name.
    Hostname string
    Gets or sets the SQL server host name.
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the database sql port.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the SQL server host name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword string
    Gets or sets the database password.
    dbPasswordUri string
    Gets or sets the key vault URI to secret with the database password.
    dbPort string
    Gets or sets the database sql port.
    dbUsername string
    Gets or sets the database user name.
    hostname string
    Gets or sets the SQL server host name.
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    db_password str
    Gets or sets the database password.
    db_password_uri str
    Gets or sets the key vault URI to secret with the database password.
    db_port str
    Gets or sets the database sql port.
    db_username str
    Gets or sets the database user name.
    hostname str
    Gets or sets the SQL server host name.
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    dbPassword String
    Gets or sets the database password.
    dbPasswordUri String
    Gets or sets the key vault URI to secret with the database password.
    dbPort String
    Gets or sets the database sql port.
    dbUsername String
    Gets or sets the database user name.
    hostname String
    Gets or sets the SQL server host name.
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SQL Database.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    PrometheusHaClusterProviderInstanceProperties, PrometheusHaClusterProviderInstancePropertiesArgs

    ClusterName string
    Gets or sets the clusterName.
    Hostname string
    Gets or sets the target machine name.
    PrometheusUrl string
    URL of the Node Exporter endpoint.
    Sid string
    Gets or sets the cluster sid.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    ClusterName string
    Gets or sets the clusterName.
    Hostname string
    Gets or sets the target machine name.
    PrometheusUrl string
    URL of the Node Exporter endpoint.
    Sid string
    Gets or sets the cluster sid.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    clusterName String
    Gets or sets the clusterName.
    hostname String
    Gets or sets the target machine name.
    prometheusUrl String
    URL of the Node Exporter endpoint.
    sid String
    Gets or sets the cluster sid.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    clusterName string
    Gets or sets the clusterName.
    hostname string
    Gets or sets the target machine name.
    prometheusUrl string
    URL of the Node Exporter endpoint.
    sid string
    Gets or sets the cluster sid.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    cluster_name str
    Gets or sets the clusterName.
    hostname str
    Gets or sets the target machine name.
    prometheus_url str
    URL of the Node Exporter endpoint.
    sid str
    Gets or sets the cluster sid.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    clusterName String
    Gets or sets the clusterName.
    hostname String
    Gets or sets the target machine name.
    prometheusUrl String
    URL of the Node Exporter endpoint.
    sid String
    Gets or sets the cluster sid.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    PrometheusHaClusterProviderInstancePropertiesResponse, PrometheusHaClusterProviderInstancePropertiesResponseArgs

    ClusterName string
    Gets or sets the clusterName.
    Hostname string
    Gets or sets the target machine name.
    PrometheusUrl string
    URL of the Node Exporter endpoint.
    Sid string
    Gets or sets the cluster sid.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    ClusterName string
    Gets or sets the clusterName.
    Hostname string
    Gets or sets the target machine name.
    PrometheusUrl string
    URL of the Node Exporter endpoint.
    Sid string
    Gets or sets the cluster sid.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    clusterName String
    Gets or sets the clusterName.
    hostname String
    Gets or sets the target machine name.
    prometheusUrl String
    URL of the Node Exporter endpoint.
    sid String
    Gets or sets the cluster sid.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    clusterName string
    Gets or sets the clusterName.
    hostname string
    Gets or sets the target machine name.
    prometheusUrl string
    URL of the Node Exporter endpoint.
    sid string
    Gets or sets the cluster sid.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    cluster_name str
    Gets or sets the clusterName.
    hostname str
    Gets or sets the target machine name.
    prometheus_url str
    URL of the Node Exporter endpoint.
    sid str
    Gets or sets the cluster sid.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    clusterName String
    Gets or sets the clusterName.
    hostname String
    Gets or sets the target machine name.
    prometheusUrl String
    URL of the Node Exporter endpoint.
    sid String
    Gets or sets the cluster sid.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    PrometheusOSProviderInstanceProperties, PrometheusOSProviderInstancePropertiesArgs

    PrometheusUrl string
    URL of the Node Exporter endpoint
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    PrometheusUrl string
    URL of the Node Exporter endpoint
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl String
    URL of the Node Exporter endpoint
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl string
    URL of the Node Exporter endpoint
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    prometheus_url str
    URL of the Node Exporter endpoint
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl String
    URL of the Node Exporter endpoint
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    PrometheusOSProviderInstancePropertiesResponse, PrometheusOSProviderInstancePropertiesResponseArgs

    PrometheusUrl string
    URL of the Node Exporter endpoint
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    PrometheusUrl string
    URL of the Node Exporter endpoint
    SapSid string
    Gets or sets the SAP System Identifier
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl String
    URL of the Node Exporter endpoint
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl string
    URL of the Node Exporter endpoint
    sapSid string
    Gets or sets the SAP System Identifier
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    prometheus_url str
    URL of the Node Exporter endpoint
    sap_sid str
    Gets or sets the SAP System Identifier
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    prometheusUrl String
    URL of the Node Exporter endpoint
    sapSid String
    Gets or sets the SAP System Identifier
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    ProviderInstancePropertiesResponseErrors, ProviderInstancePropertiesResponseErrorsArgs

    Code string
    Server-defined set of error codes.
    Details List<Pulumi.AzureNative.Workloads.Inputs.ErrorResponse>
    Array of details about specific errors that led to this reported error.
    InnerError Pulumi.AzureNative.Workloads.Inputs.ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    Message string
    Human-readable representation of the error.
    Target string
    Target of the error.
    Code string
    Server-defined set of error codes.
    Details []ErrorResponse
    Array of details about specific errors that led to this reported error.
    InnerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    Message string
    Human-readable representation of the error.
    Target string
    Target of the error.
    code String
    Server-defined set of error codes.
    details List<ErrorResponse>
    Array of details about specific errors that led to this reported error.
    innerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message String
    Human-readable representation of the error.
    target String
    Target of the error.
    code string
    Server-defined set of error codes.
    details ErrorResponse[]
    Array of details about specific errors that led to this reported error.
    innerError ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message string
    Human-readable representation of the error.
    target string
    Target of the error.
    code str
    Server-defined set of error codes.
    details Sequence[ErrorResponse]
    Array of details about specific errors that led to this reported error.
    inner_error ErrorResponseInnerError
    Object containing more specific information than the current object about the error.
    message str
    Human-readable representation of the error.
    target str
    Target of the error.
    code String
    Server-defined set of error codes.
    details List<Property Map>
    Array of details about specific errors that led to this reported error.
    innerError Property Map
    Object containing more specific information than the current object about the error.
    message String
    Human-readable representation of the error.
    target String
    Target of the error.

    SapNetWeaverProviderInstanceProperties, SapNetWeaverProviderInstancePropertiesArgs

    SapClientId string
    Gets or sets the SAP Client ID.
    SapHostFileEntries List<string>
    Gets or sets the list of HostFile Entries
    SapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    SapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    SapPassword string
    Sets the SAP password.
    SapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    SapPortNumber string
    Gets or sets the SAP HTTP port number.
    SapSid string
    Gets or sets the SAP System Identifier
    SapUsername string
    Gets or sets the SAP user name.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    SslPreference string | Pulumi.AzureNative.Workloads.SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    SapClientId string
    Gets or sets the SAP Client ID.
    SapHostFileEntries []string
    Gets or sets the list of HostFile Entries
    SapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    SapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    SapPassword string
    Sets the SAP password.
    SapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    SapPortNumber string
    Gets or sets the SAP HTTP port number.
    SapSid string
    Gets or sets the SAP System Identifier
    SapUsername string
    Gets or sets the SAP user name.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    SslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId String
    Gets or sets the SAP Client ID.
    sapHostFileEntries List<String>
    Gets or sets the list of HostFile Entries
    sapHostname String
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr String
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword String
    Sets the SAP password.
    sapPasswordUri String
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber String
    Gets or sets the SAP HTTP port number.
    sapSid String
    Gets or sets the SAP System Identifier
    sapUsername String
    Gets or sets the SAP user name.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference String | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId string
    Gets or sets the SAP Client ID.
    sapHostFileEntries string[]
    Gets or sets the list of HostFile Entries
    sapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword string
    Sets the SAP password.
    sapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber string
    Gets or sets the SAP HTTP port number.
    sapSid string
    Gets or sets the SAP System Identifier
    sapUsername string
    Gets or sets the SAP user name.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference string | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    sap_client_id str
    Gets or sets the SAP Client ID.
    sap_host_file_entries Sequence[str]
    Gets or sets the list of HostFile Entries
    sap_hostname str
    Gets or sets the target virtual machine IP Address/FQDN.
    sap_instance_nr str
    Gets or sets the instance number of SAP NetWeaver.
    sap_password str
    Sets the SAP password.
    sap_password_uri str
    Gets or sets the key vault URI to secret with the SAP password.
    sap_port_number str
    Gets or sets the SAP HTTP port number.
    sap_sid str
    Gets or sets the SAP System Identifier
    sap_username str
    Gets or sets the SAP user name.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the SAP system.
    ssl_preference str | SslPreference
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId String
    Gets or sets the SAP Client ID.
    sapHostFileEntries List<String>
    Gets or sets the list of HostFile Entries
    sapHostname String
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr String
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword String
    Sets the SAP password.
    sapPasswordUri String
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber String
    Gets or sets the SAP HTTP port number.
    sapSid String
    Gets or sets the SAP System Identifier
    sapUsername String
    Gets or sets the SAP user name.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference String | "Disabled" | "RootCertificate" | "ServerCertificate"
    Gets or sets certificate preference if secure communication is enabled.

    SapNetWeaverProviderInstancePropertiesResponse, SapNetWeaverProviderInstancePropertiesResponseArgs

    SapClientId string
    Gets or sets the SAP Client ID.
    SapHostFileEntries List<string>
    Gets or sets the list of HostFile Entries
    SapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    SapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    SapPassword string
    Sets the SAP password.
    SapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    SapPortNumber string
    Gets or sets the SAP HTTP port number.
    SapSid string
    Gets or sets the SAP System Identifier
    SapUsername string
    Gets or sets the SAP user name.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    SapClientId string
    Gets or sets the SAP Client ID.
    SapHostFileEntries []string
    Gets or sets the list of HostFile Entries
    SapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    SapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    SapPassword string
    Sets the SAP password.
    SapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    SapPortNumber string
    Gets or sets the SAP HTTP port number.
    SapSid string
    Gets or sets the SAP System Identifier
    SapUsername string
    Gets or sets the SAP user name.
    SslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    SslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId String
    Gets or sets the SAP Client ID.
    sapHostFileEntries List<String>
    Gets or sets the list of HostFile Entries
    sapHostname String
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr String
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword String
    Sets the SAP password.
    sapPasswordUri String
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber String
    Gets or sets the SAP HTTP port number.
    sapSid String
    Gets or sets the SAP System Identifier
    sapUsername String
    Gets or sets the SAP user name.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId string
    Gets or sets the SAP Client ID.
    sapHostFileEntries string[]
    Gets or sets the list of HostFile Entries
    sapHostname string
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr string
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword string
    Sets the SAP password.
    sapPasswordUri string
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber string
    Gets or sets the SAP HTTP port number.
    sapSid string
    Gets or sets the SAP System Identifier
    sapUsername string
    Gets or sets the SAP user name.
    sslCertificateUri string
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference string
    Gets or sets certificate preference if secure communication is enabled.
    sap_client_id str
    Gets or sets the SAP Client ID.
    sap_host_file_entries Sequence[str]
    Gets or sets the list of HostFile Entries
    sap_hostname str
    Gets or sets the target virtual machine IP Address/FQDN.
    sap_instance_nr str
    Gets or sets the instance number of SAP NetWeaver.
    sap_password str
    Sets the SAP password.
    sap_password_uri str
    Gets or sets the key vault URI to secret with the SAP password.
    sap_port_number str
    Gets or sets the SAP HTTP port number.
    sap_sid str
    Gets or sets the SAP System Identifier
    sap_username str
    Gets or sets the SAP user name.
    ssl_certificate_uri str
    Gets or sets the blob URI to SSL certificate for the SAP system.
    ssl_preference str
    Gets or sets certificate preference if secure communication is enabled.
    sapClientId String
    Gets or sets the SAP Client ID.
    sapHostFileEntries List<String>
    Gets or sets the list of HostFile Entries
    sapHostname String
    Gets or sets the target virtual machine IP Address/FQDN.
    sapInstanceNr String
    Gets or sets the instance number of SAP NetWeaver.
    sapPassword String
    Sets the SAP password.
    sapPasswordUri String
    Gets or sets the key vault URI to secret with the SAP password.
    sapPortNumber String
    Gets or sets the SAP HTTP port number.
    sapSid String
    Gets or sets the SAP System Identifier
    sapUsername String
    Gets or sets the SAP user name.
    sslCertificateUri String
    Gets or sets the blob URI to SSL certificate for the SAP system.
    sslPreference String
    Gets or sets certificate preference if secure communication is enabled.

    SslPreference, SslPreferenceArgs

    Disabled
    Disabled
    RootCertificate
    RootCertificate
    ServerCertificate
    ServerCertificate
    SslPreferenceDisabled
    Disabled
    SslPreferenceRootCertificate
    RootCertificate
    SslPreferenceServerCertificate
    ServerCertificate
    Disabled
    Disabled
    RootCertificate
    RootCertificate
    ServerCertificate
    ServerCertificate
    Disabled
    Disabled
    RootCertificate
    RootCertificate
    ServerCertificate
    ServerCertificate
    DISABLED
    Disabled
    ROOT_CERTIFICATE
    RootCertificate
    SERVER_CERTIFICATE
    ServerCertificate
    "Disabled"
    Disabled
    "RootCertificate"
    RootCertificate
    "ServerCertificate"
    ServerCertificate

    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.

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    UserAssignedServiceIdentity, UserAssignedServiceIdentityArgs

    Type string | Pulumi.AzureNative.Workloads.ManagedServiceIdentityType
    Type of manage identity
    UserAssignedIdentities List<string>
    User assigned identities dictionary
    Type string | ManagedServiceIdentityType
    Type of manage identity
    UserAssignedIdentities []string
    User assigned identities dictionary
    type String | ManagedServiceIdentityType
    Type of manage identity
    userAssignedIdentities List<String>
    User assigned identities dictionary
    type string | ManagedServiceIdentityType
    Type of manage identity
    userAssignedIdentities string[]
    User assigned identities dictionary
    type str | ManagedServiceIdentityType
    Type of manage identity
    user_assigned_identities Sequence[str]
    User assigned identities dictionary
    type String | "None" | "UserAssigned"
    Type of manage identity
    userAssignedIdentities List<String>
    User assigned identities dictionary

    UserAssignedServiceIdentityResponse, UserAssignedServiceIdentityResponseArgs

    Type string
    Type of manage identity
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.Workloads.Inputs.UserAssignedIdentityResponse>
    User assigned identities dictionary
    Type string
    Type of manage identity
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    User assigned identities dictionary
    type String
    Type of manage identity
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    User assigned identities dictionary
    type string
    Type of manage identity
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    User assigned identities dictionary
    type str
    Type of manage identity
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    User assigned identities dictionary
    type String
    Type of manage identity
    userAssignedIdentities Map<Property Map>
    User assigned identities dictionary

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:workloads:ProviderInstance myProviderInstance /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Workloads/monitors/{monitorName}/providerInstances/{providerInstanceName} 
    

    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.34.0 published on Thursday, Mar 28, 2024 by Pulumi