azure-native.workloads.ProviderInstance
Explore with Pulumi AI
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, 2023-12-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 (
workloads "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.DB2ProviderInstancePropertiesArgs{
DbName: pulumi.String("dbName"),
DbPassword: pulumi.String("password"),
DbPasswordUri: pulumi.String(""),
DbPort: pulumi.String("dbPort"),
DbUsername: pulumi.String("username"),
Hostname: pulumi.String("hostname"),
ProviderType: pulumi.String("Db2"),
SapSid: pulumi.String("SID"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslPreference: pulumi.String(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 (
workloads "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.DB2ProviderInstancePropertiesArgs{
DbName: pulumi.String("dbName"),
DbPassword: pulumi.String("password"),
DbPasswordUri: pulumi.String(""),
DbPort: pulumi.String("dbPort"),
DbUsername: pulumi.String("username"),
Hostname: pulumi.String("hostname"),
ProviderType: pulumi.String("Db2"),
SapSid: pulumi.String("SID"),
SslPreference: pulumi.String(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 (
workloads "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.MsSqlServerProviderInstancePropertiesArgs{
DbPassword: pulumi.String("****"),
DbPasswordUri: pulumi.String(""),
DbPort: pulumi.String("5912"),
DbUsername: pulumi.String("user"),
Hostname: pulumi.String("hostname"),
ProviderType: pulumi.String("MsSqlServer"),
SapSid: pulumi.String("sid"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslPreference: pulumi.String(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 (
workloads "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.MsSqlServerProviderInstancePropertiesArgs{
DbPassword: pulumi.String("****"),
DbPasswordUri: pulumi.String(""),
DbPort: pulumi.String("5912"),
DbUsername: pulumi.String("user"),
Hostname: pulumi.String("hostname"),
ProviderType: pulumi.String("MsSqlServer"),
SapSid: pulumi.String("sid"),
SslPreference: pulumi.String(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 (
workloads "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.PrometheusOSProviderInstancePropertiesArgs{
PrometheusUrl: pulumi.String("http://192.168.0.0:9090/metrics"),
ProviderType: pulumi.String("PrometheusOS"),
SapSid: pulumi.String("SID"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslPreference: pulumi.String(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 (
workloads "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.PrometheusOSProviderInstancePropertiesArgs{
PrometheusUrl: pulumi.String("http://192.168.0.0:9090/metrics"),
ProviderType: pulumi.String("PrometheusOS"),
SapSid: pulumi.String("SID"),
SslPreference: pulumi.String(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 (
workloads "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.PrometheusHaClusterProviderInstancePropertiesArgs{
ClusterName: pulumi.String("clusterName"),
Hostname: pulumi.String("hostname"),
PrometheusUrl: pulumi.String("http://192.168.0.0:9090/metrics"),
ProviderType: pulumi.String("PrometheusHaCluster"),
Sid: pulumi.String("sid"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslPreference: pulumi.String(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 (
workloads "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.PrometheusHaClusterProviderInstancePropertiesArgs{
ClusterName: pulumi.String("clusterName"),
Hostname: pulumi.String("hostname"),
PrometheusUrl: pulumi.String("http://192.168.0.0:9090/metrics"),
ProviderType: pulumi.String("PrometheusHaCluster"),
Sid: pulumi.String("sid"),
SslPreference: pulumi.String(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 (
workloads "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.HanaDbProviderInstancePropertiesArgs{
DbName: pulumi.String("db"),
DbPassword: pulumi.String("****"),
DbPasswordUri: pulumi.String(""),
DbUsername: pulumi.String("user"),
Hostname: pulumi.String("name"),
InstanceNumber: pulumi.String("00"),
ProviderType: pulumi.String("SapHana"),
SapSid: pulumi.String("SID"),
SqlPort: pulumi.String("0000"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslHostNameInCertificate: pulumi.String("xyz.domain.com"),
SslPreference: pulumi.String(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 (
workloads "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.HanaDbProviderInstancePropertiesArgs{
DbName: pulumi.String("db"),
DbPassword: pulumi.String("****"),
DbPasswordUri: pulumi.String(""),
DbUsername: pulumi.String("user"),
Hostname: pulumi.String("name"),
InstanceNumber: pulumi.String("00"),
ProviderType: pulumi.String("SapHana"),
SapSid: pulumi.String("SID"),
SqlPort: pulumi.String("0000"),
SslHostNameInCertificate: pulumi.String("xyz.domain.com"),
SslPreference: pulumi.String(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 (
workloads "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.SapNetWeaverProviderInstancePropertiesArgs{
ProviderType: pulumi.String("SapNetWeaver"),
SapClientId: pulumi.String("111"),
SapHostFileEntries: pulumi.StringArray{
pulumi.String("127.0.0.1 name fqdn"),
},
SapHostname: pulumi.String("name"),
SapInstanceNr: pulumi.String("00"),
SapPassword: pulumi.String("****"),
SapPasswordUri: pulumi.String(""),
SapPortNumber: pulumi.String("1234"),
SapSid: pulumi.String("SID"),
SapUsername: pulumi.String("username"),
SslCertificateUri: pulumi.String("https://storageaccount.blob.core.windows.net/containername/filename"),
SslPreference: pulumi.String(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 (
workloads "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.SapNetWeaverProviderInstancePropertiesArgs{
ProviderType: pulumi.String("SapNetWeaver"),
SapClientId: pulumi.String("111"),
SapHostFileEntries: pulumi.StringArray{
pulumi.String("127.0.0.1 name fqdn"),
},
SapHostname: pulumi.String("name"),
SapInstanceNr: pulumi.String("00"),
SapPassword: pulumi.String("****"),
SapPasswordUri: pulumi.String(""),
SapPortNumber: pulumi.String("1234"),
SapSid: pulumi.String("SID"),
SapUsername: pulumi.String("username"),
SslPreference: pulumi.String(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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProviderInstance(name: string, args: ProviderInstanceArgs, opts?: CustomResourceOptions);
@overload
def ProviderInstance(resource_name: str,
args: ProviderInstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProviderInstance(resource_name: str,
opts: Optional[ResourceOptions] = None,
monitor_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
identity: Optional[UserAssignedServiceIdentityArgs] = None,
provider_instance_name: Optional[str] = None,
provider_settings: Optional[Union[DB2ProviderInstancePropertiesArgs, HanaDbProviderInstancePropertiesArgs, MsSqlServerProviderInstancePropertiesArgs, PrometheusHaClusterProviderInstancePropertiesArgs, PrometheusOSProviderInstancePropertiesArgs, SapNetWeaverProviderInstancePropertiesArgs]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var providerInstanceResource = new AzureNative.Workloads.ProviderInstance("providerInstanceResource", new()
{
MonitorName = "string",
ResourceGroupName = "string",
Identity = new AzureNative.Workloads.Inputs.UserAssignedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
ProviderInstanceName = "string",
ProviderSettings = new AzureNative.Workloads.Inputs.DB2ProviderInstancePropertiesArgs
{
ProviderType = "Db2",
DbName = "string",
DbPassword = "string",
DbPasswordUri = "string",
DbPort = "string",
DbUsername = "string",
Hostname = "string",
SapSid = "string",
SslCertificateUri = "string",
SslPreference = "string",
},
});
example, err := workloads.NewProviderInstance(ctx, "providerInstanceResource", &workloads.ProviderInstanceArgs{
MonitorName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Identity: &workloads.UserAssignedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
ProviderInstanceName: pulumi.String("string"),
ProviderSettings: &workloads.DB2ProviderInstancePropertiesArgs{
ProviderType: pulumi.String("Db2"),
DbName: pulumi.String("string"),
DbPassword: pulumi.String("string"),
DbPasswordUri: pulumi.String("string"),
DbPort: pulumi.String("string"),
DbUsername: pulumi.String("string"),
Hostname: pulumi.String("string"),
SapSid: pulumi.String("string"),
SslCertificateUri: pulumi.String("string"),
SslPreference: pulumi.String("string"),
},
})
var providerInstanceResource = new ProviderInstance("providerInstanceResource", ProviderInstanceArgs.builder()
.monitorName("string")
.resourceGroupName("string")
.identity(UserAssignedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.providerInstanceName("string")
.providerSettings(DB2ProviderInstancePropertiesArgs.builder()
.providerType("Db2")
.dbName("string")
.dbPassword("string")
.dbPasswordUri("string")
.dbPort("string")
.dbUsername("string")
.hostname("string")
.sapSid("string")
.sslCertificateUri("string")
.sslPreference("string")
.build())
.build());
provider_instance_resource = azure_native.workloads.ProviderInstance("providerInstanceResource",
monitor_name="string",
resource_group_name="string",
identity=azure_native.workloads.UserAssignedServiceIdentityArgs(
type="string",
user_assigned_identities=["string"],
),
provider_instance_name="string",
provider_settings=azure_native.workloads.DB2ProviderInstancePropertiesArgs(
provider_type="Db2",
db_name="string",
db_password="string",
db_password_uri="string",
db_port="string",
db_username="string",
hostname="string",
sap_sid="string",
ssl_certificate_uri="string",
ssl_preference="string",
))
const providerInstanceResource = new azure_native.workloads.ProviderInstance("providerInstanceResource", {
monitorName: "string",
resourceGroupName: "string",
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
providerInstanceName: "string",
providerSettings: {
providerType: "Db2",
dbName: "string",
dbPassword: "string",
dbPasswordUri: "string",
dbPort: "string",
dbUsername: "string",
hostname: "string",
sapSid: "string",
sslCertificateUri: "string",
sslPreference: "string",
},
});
type: azure-native:workloads:ProviderInstance
properties:
identity:
type: string
userAssignedIdentities:
- string
monitorName: string
providerInstanceName: string
providerSettings:
dbName: string
dbPassword: string
dbPasswordUri: string
dbPort: string
dbUsername: string
hostname: string
providerType: Db2
sapSid: string
sslCertificateUri: string
sslPreference: string
resourceGroupName: string
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:
- Monitor
Name string - Name of the SAP monitor resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Workloads. Inputs. User Assigned Service Identity - [currently not in use] Managed service identity(user assigned identities)
- Provider
Instance stringName - Name of the provider instance.
- Provider
Settings Pulumi.Azure | Pulumi.Native. Workloads. Inputs. DB2Provider Instance Properties Azure | Pulumi.Native. Workloads. Inputs. Hana Db Provider Instance Properties Azure | Pulumi.Native. Workloads. Inputs. Ms Sql Server Provider Instance Properties Azure | Pulumi.Native. Workloads. Inputs. Prometheus Ha Cluster Provider Instance Properties Azure | Pulumi.Native. Workloads. Inputs. Prometheus OSProvider Instance Properties Azure Native. Workloads. Inputs. Sap Net Weaver Provider Instance Properties - Defines the provider specific properties.
- Monitor
Name string - Name of the SAP monitor resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
User
Assigned Service Identity Args - [currently not in use] Managed service identity(user assigned identities)
- Provider
Instance stringName - Name of the provider instance.
- Provider
Settings DB2ProviderInstance | HanaProperties Args Db | MsProvider Instance Properties Args Sql | PrometheusServer Provider Instance Properties Args Ha | PrometheusCluster Provider Instance Properties Args OSProvider | SapInstance Properties Args Net Weaver Provider Instance Properties Args - Defines the provider specific properties.
- monitor
Name String - Name of the SAP monitor resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
User
Assigned Service Identity - [currently not in use] Managed service identity(user assigned identities)
- provider
Instance StringName - Name of the provider instance.
- provider
Settings DB2ProviderInstance | HanaProperties Db | MsProvider Instance Properties Sql | PrometheusServer Provider Instance Properties Ha | PrometheusCluster Provider Instance Properties OSProvider | SapInstance Properties Net Weaver Provider Instance Properties - Defines the provider specific properties.
- monitor
Name string - Name of the SAP monitor resource.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
User
Assigned Service Identity - [currently not in use] Managed service identity(user assigned identities)
- provider
Instance stringName - Name of the provider instance.
- provider
Settings DB2ProviderInstance | HanaProperties Db | MsProvider Instance Properties Sql | PrometheusServer Provider Instance Properties Ha | PrometheusCluster Provider Instance Properties OSProvider | SapInstance Properties Net Weaver Provider Instance Properties - Defines the provider specific properties.
- monitor_
name str - Name of the SAP monitor resource.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
User
Assigned Service Identity Args - [currently not in use] Managed service identity(user assigned identities)
- provider_
instance_ strname - Name of the provider instance.
- provider_
settings DB2ProviderInstance | HanaProperties Args Db | MsProvider Instance Properties Args Sql | PrometheusServer Provider Instance Properties Args Ha | PrometheusCluster Provider Instance Properties Args OSProvider | SapInstance Properties Args Net Weaver Provider Instance Properties Args - Defines the provider specific properties.
- monitor
Name String - Name of the SAP monitor resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity Property Map
- [currently not in use] Managed service identity(user assigned identities)
- provider
Instance StringName - Name of the provider instance.
- provider
Settings 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.
Azure Native. Workloads. Outputs. Provider Instance Properties Response Errors - Defines the provider instance errors.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - State of provisioning of the provider instance
- System
Data Pulumi.Azure Native. Workloads. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Errors
Provider
Instance Properties Response Errors - Defines the provider instance errors.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- Provisioning
State string - State of provisioning of the provider instance
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- errors
Provider
Instance Properties Response Errors - Defines the provider instance errors.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioning
State String - State of provisioning of the provider instance
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- errors
Provider
Instance Properties Response Errors - Defines the provider instance errors.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioning
State string - State of provisioning of the provider instance
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- errors
Provider
Instance Properties Response Errors - 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 SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- provisioning
State String - State of provisioning of the provider instance
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
DB2ProviderInstanceProperties, DB2ProviderInstancePropertiesArgs
- Db
Name string - Gets or sets the db2 database name.
- Db
Password string - Gets or sets the db2 database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the db2 database sql port.
- Db
Username string - Gets or sets the db2 database user name.
- Hostname string
- Gets or sets the target virtual machine name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Db
Name string - Gets or sets the db2 database name.
- Db
Password string - Gets or sets the db2 database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the db2 database sql port.
- Db
Username string - Gets or sets the db2 database user name.
- Hostname string
- Gets or sets the target virtual machine name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the db2 database name.
- db
Password String - Gets or sets the db2 database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the db2 database sql port.
- db
Username String - Gets or sets the db2 database user name.
- hostname String
- Gets or sets the target virtual machine name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Name string - Gets or sets the db2 database name.
- db
Password string - Gets or sets the db2 database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port string - Gets or sets the db2 database sql port.
- db
Username string - Gets or sets the db2 database user name.
- hostname string
- Gets or sets the target virtual machine name.
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference 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_ struri - 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_ struri - 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.
- db
Name String - Gets or sets the db2 database name.
- db
Password String - Gets or sets the db2 database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the db2 database sql port.
- db
Username String - Gets or sets the db2 database user name.
- hostname String
- Gets or sets the target virtual machine name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
DB2ProviderInstancePropertiesResponse, DB2ProviderInstancePropertiesResponseArgs
- Db
Name string - Gets or sets the db2 database name.
- Db
Password string - Gets or sets the db2 database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the db2 database sql port.
- Db
Username string - Gets or sets the db2 database user name.
- Hostname string
- Gets or sets the target virtual machine name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Db
Name string - Gets or sets the db2 database name.
- Db
Password string - Gets or sets the db2 database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the db2 database sql port.
- Db
Username string - Gets or sets the db2 database user name.
- Hostname string
- Gets or sets the target virtual machine name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the db2 database name.
- db
Password String - Gets or sets the db2 database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the db2 database sql port.
- db
Username String - Gets or sets the db2 database user name.
- hostname String
- Gets or sets the target virtual machine name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- db
Name string - Gets or sets the db2 database name.
- db
Password string - Gets or sets the db2 database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port string - Gets or sets the db2 database sql port.
- db
Username string - Gets or sets the db2 database user name.
- hostname string
- Gets or sets the target virtual machine name.
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference 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_ struri - 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_ struri - 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.
- db
Name String - Gets or sets the db2 database name.
- db
Password String - Gets or sets the db2 database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the db2 database sql port.
- db
Username String - Gets or sets the db2 database user name.
- hostname String
- Gets or sets the target virtual machine name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB2 Database.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
ErrorResponse, ErrorResponseArgs
- Code string
- Server-defined set of error codes.
- Details
List<Pulumi.
Azure Native. Workloads. Inputs. Error Response> - Array of details about specific errors that led to this reported error.
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response Inner Error - 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
[]Error
Response - Array of details about specific errors that led to this reported error.
- Inner
Error ErrorResponse Inner Error - 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<Error
Response> - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - 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
Error
Response[] - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - 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[Error
Response] - Array of details about specific errors that led to this reported error.
- inner_
error ErrorResponse Inner Error - 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.
- inner
Error 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
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response - Standard error object.
- Inner
Error ErrorResponse - Standard error object.
- inner
Error ErrorResponse - Standard error object.
- inner
Error ErrorResponse - Standard error object.
- inner_
error ErrorResponse - Standard error object.
- inner
Error Property Map - Standard error object.
HanaDbProviderInstanceProperties, HanaDbProviderInstancePropertiesArgs
- Db
Name string - Gets or sets the hana database name.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the target virtual machine size.
- Instance
Number string - Gets or sets the database instance number.
- Sap
Sid string - Gets or sets the SAP System Identifier.
- Sql
Port string - Gets or sets the database sql port.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- Ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Db
Name string - Gets or sets the hana database name.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the target virtual machine size.
- Instance
Number string - Gets or sets the database instance number.
- Sap
Sid string - Gets or sets the SAP System Identifier.
- Sql
Port string - Gets or sets the database sql port.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- Ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the hana database name.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the target virtual machine size.
- instance
Number String - Gets or sets the database instance number.
- sap
Sid String - Gets or sets the SAP System Identifier.
- sql
Port String - Gets or sets the database sql port.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host StringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Name string - Gets or sets the hana database name.
- db
Password string - Gets or sets the database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username string - Gets or sets the database user name.
- hostname string
- Gets or sets the target virtual machine size.
- instance
Number string - Gets or sets the database instance number.
- sap
Sid string - Gets or sets the SAP System Identifier.
- sql
Port string - Gets or sets the database sql port.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference 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_ struri - 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_ struri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl_
host_ strname_ in_ certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl_
preference str | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the hana database name.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the target virtual machine size.
- instance
Number String - Gets or sets the database instance number.
- sap
Sid String - Gets or sets the SAP System Identifier.
- sql
Port String - Gets or sets the database sql port.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host StringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
HanaDbProviderInstancePropertiesResponse, HanaDbProviderInstancePropertiesResponseArgs
- Db
Name string - Gets or sets the hana database name.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the target virtual machine size.
- Instance
Number string - Gets or sets the database instance number.
- Sap
Sid string - Gets or sets the SAP System Identifier.
- Sql
Port string - Gets or sets the database sql port.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- Ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Db
Name string - Gets or sets the hana database name.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the target virtual machine size.
- Instance
Number string - Gets or sets the database instance number.
- Sap
Sid string - Gets or sets the SAP System Identifier.
- Sql
Port string - Gets or sets the database sql port.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- Ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the hana database name.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the target virtual machine size.
- instance
Number String - Gets or sets the database instance number.
- sap
Sid String - Gets or sets the SAP System Identifier.
- sql
Port String - Gets or sets the database sql port.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host StringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- db
Name string - Gets or sets the hana database name.
- db
Password string - Gets or sets the database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username string - Gets or sets the database user name.
- hostname string
- Gets or sets the target virtual machine size.
- instance
Number string - Gets or sets the database instance number.
- sap
Sid string - Gets or sets the SAP System Identifier.
- sql
Port string - Gets or sets the database sql port.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host stringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference 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_ struri - 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_ struri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl_
host_ strname_ in_ certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl_
preference str - Gets or sets certificate preference if secure communication is enabled.
- db
Name String - Gets or sets the hana database name.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the target virtual machine size.
- instance
Number String - Gets or sets the database instance number.
- sap
Sid String - Gets or sets the SAP System Identifier.
- sql
Port String - Gets or sets the database sql port.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the DB.
- ssl
Host StringName In Certificate - Gets or sets the hostname(s) in the SSL certificate.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- User
Assigned - UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type User Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- NONE
- None
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "User
Assigned" - UserAssigned
MsSqlServerProviderInstanceProperties, MsSqlServerProviderInstancePropertiesArgs
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the database sql port.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the SQL server host name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the database sql port.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the SQL server host name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the database sql port.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the SQL server host name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db
Password string - Gets or sets the database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port string - Gets or sets the database sql port.
- db
Username string - Gets or sets the database user name.
- hostname string
- Gets or sets the SQL server host name.
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- db_
password str - Gets or sets the database password.
- db_
password_ struri - 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_ struri - 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.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the database sql port.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the SQL server host name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
MsSqlServerProviderInstancePropertiesResponse, MsSqlServerProviderInstancePropertiesResponseArgs
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the database sql port.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the SQL server host name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Db
Password string - Gets or sets the database password.
- Db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- Db
Port string - Gets or sets the database sql port.
- Db
Username string - Gets or sets the database user name.
- Hostname string
- Gets or sets the SQL server host name.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the database sql port.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the SQL server host name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- db
Password string - Gets or sets the database password.
- db
Password stringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port string - Gets or sets the database sql port.
- db
Username string - Gets or sets the database user name.
- hostname string
- Gets or sets the SQL server host name.
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- db_
password str - Gets or sets the database password.
- db_
password_ struri - 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_ struri - 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.
- db
Password String - Gets or sets the database password.
- db
Password StringUri - Gets or sets the key vault URI to secret with the database password.
- db
Port String - Gets or sets the database sql port.
- db
Username String - Gets or sets the database user name.
- hostname String
- Gets or sets the SQL server host name.
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SQL Database.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
PrometheusHaClusterProviderInstanceProperties, PrometheusHaClusterProviderInstancePropertiesArgs
- Cluster
Name string - Gets or sets the clusterName.
- Hostname string
- Gets or sets the target machine name.
- Prometheus
Url string - URL of the Node Exporter endpoint.
- Sid string
- Gets or sets the cluster sid.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Cluster
Name string - Gets or sets the clusterName.
- Hostname string
- Gets or sets the target machine name.
- Prometheus
Url string - URL of the Node Exporter endpoint.
- Sid string
- Gets or sets the cluster sid.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- cluster
Name String - Gets or sets the clusterName.
- hostname String
- Gets or sets the target machine name.
- prometheus
Url String - URL of the Node Exporter endpoint.
- sid String
- Gets or sets the cluster sid.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- cluster
Name string - Gets or sets the clusterName.
- hostname string
- Gets or sets the target machine name.
- prometheus
Url string - URL of the Node Exporter endpoint.
- sid string
- Gets or sets the cluster sid.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference 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_ struri - 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.
- cluster
Name String - Gets or sets the clusterName.
- hostname String
- Gets or sets the target machine name.
- prometheus
Url String - URL of the Node Exporter endpoint.
- sid String
- Gets or sets the cluster sid.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
PrometheusHaClusterProviderInstancePropertiesResponse, PrometheusHaClusterProviderInstancePropertiesResponseArgs
- Cluster
Name string - Gets or sets the clusterName.
- Hostname string
- Gets or sets the target machine name.
- Prometheus
Url string - URL of the Node Exporter endpoint.
- Sid string
- Gets or sets the cluster sid.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Cluster
Name string - Gets or sets the clusterName.
- Hostname string
- Gets or sets the target machine name.
- Prometheus
Url string - URL of the Node Exporter endpoint.
- Sid string
- Gets or sets the cluster sid.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- cluster
Name String - Gets or sets the clusterName.
- hostname String
- Gets or sets the target machine name.
- prometheus
Url String - URL of the Node Exporter endpoint.
- sid String
- Gets or sets the cluster sid.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- cluster
Name string - Gets or sets the clusterName.
- hostname string
- Gets or sets the target machine name.
- prometheus
Url string - URL of the Node Exporter endpoint.
- sid string
- Gets or sets the cluster sid.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference 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_ struri - 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.
- cluster
Name String - Gets or sets the clusterName.
- hostname String
- Gets or sets the target machine name.
- prometheus
Url String - URL of the Node Exporter endpoint.
- sid String
- Gets or sets the cluster sid.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the HA cluster exporter.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
PrometheusOSProviderInstanceProperties, PrometheusOSProviderInstancePropertiesArgs
- Prometheus
Url string - URL of the Node Exporter endpoint
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Prometheus
Url string - URL of the Node Exporter endpoint
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- prometheus
Url String - URL of the Node Exporter endpoint
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- prometheus
Url string - URL of the Node Exporter endpoint
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference 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_ struri - 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.
- prometheus
Url String - URL of the Node Exporter endpoint
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
PrometheusOSProviderInstancePropertiesResponse, PrometheusOSProviderInstancePropertiesResponseArgs
- Prometheus
Url string - URL of the Node Exporter endpoint
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Prometheus
Url string - URL of the Node Exporter endpoint
- Sap
Sid string - Gets or sets the SAP System Identifier
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- prometheus
Url String - URL of the Node Exporter endpoint
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- prometheus
Url string - URL of the Node Exporter endpoint
- sap
Sid string - Gets or sets the SAP System Identifier
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference 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_ struri - 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.
- prometheus
Url String - URL of the Node Exporter endpoint
- sap
Sid String - Gets or sets the SAP System Identifier
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the prometheus node exporter.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
ProviderInstancePropertiesResponseErrors, ProviderInstancePropertiesResponseErrorsArgs
- Code string
- Server-defined set of error codes.
- Details
List<Pulumi.
Azure Native. Workloads. Inputs. Error Response> - Array of details about specific errors that led to this reported error.
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response Inner Error - 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
[]Error
Response - Array of details about specific errors that led to this reported error.
- Inner
Error ErrorResponse Inner Error - 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<Error
Response> - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - 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
Error
Response[] - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - 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[Error
Response] - Array of details about specific errors that led to this reported error.
- inner_
error ErrorResponse Inner Error - 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.
- inner
Error 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
- Sap
Client stringId - Gets or sets the SAP Client ID.
- Sap
Host List<string>File Entries - Gets or sets the list of HostFile Entries
- Sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- Sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- Sap
Password string - Sets the SAP password.
- Sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- Sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Sap
Username string - Gets or sets the SAP user name.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- Ssl
Preference string | Pulumi.Azure Native. Workloads. Ssl Preference - Gets or sets certificate preference if secure communication is enabled.
- Sap
Client stringId - Gets or sets the SAP Client ID.
- Sap
Host []stringFile Entries - Gets or sets the list of HostFile Entries
- Sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- Sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- Sap
Password string - Sets the SAP password.
- Sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- Sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Sap
Username string - Gets or sets the SAP user name.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- Ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- sap
Client StringId - Gets or sets the SAP Client ID.
- sap
Host List<String>File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname String - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance StringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password String - Sets the SAP password.
- sap
Password StringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port StringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid String - Gets or sets the SAP System Identifier
- sap
Username String - Gets or sets the SAP user name.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference String | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- sap
Client stringId - Gets or sets the SAP Client ID.
- sap
Host string[]File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password string - Sets the SAP password.
- sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid string - Gets or sets the SAP System Identifier
- sap
Username string - Gets or sets the SAP user name.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference string | SslPreference - Gets or sets certificate preference if secure communication is enabled.
- sap_
client_ strid - Gets or sets the SAP Client ID.
- sap_
host_ Sequence[str]file_ entries - Gets or sets the list of HostFile Entries
- sap_
hostname str - Gets or sets the target virtual machine IP Address/FQDN.
- sap_
instance_ strnr - Gets or sets the instance number of SAP NetWeaver.
- sap_
password str - Sets the SAP password.
- sap_
password_ struri - Gets or sets the key vault URI to secret with the SAP password.
- sap_
port_ strnumber - 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_ struri - 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.
- sap
Client StringId - Gets or sets the SAP Client ID.
- sap
Host List<String>File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname String - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance StringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password String - Sets the SAP password.
- sap
Password StringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port StringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid String - Gets or sets the SAP System Identifier
- sap
Username String - Gets or sets the SAP user name.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference String | "Disabled" | "RootCertificate" | "Server Certificate" - Gets or sets certificate preference if secure communication is enabled.
SapNetWeaverProviderInstancePropertiesResponse, SapNetWeaverProviderInstancePropertiesResponseArgs
- Sap
Client stringId - Gets or sets the SAP Client ID.
- Sap
Host List<string>File Entries - Gets or sets the list of HostFile Entries
- Sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- Sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- Sap
Password string - Sets the SAP password.
- Sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- Sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Sap
Username string - Gets or sets the SAP user name.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- Sap
Client stringId - Gets or sets the SAP Client ID.
- Sap
Host []stringFile Entries - Gets or sets the list of HostFile Entries
- Sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- Sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- Sap
Password string - Sets the SAP password.
- Sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- Sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- Sap
Sid string - Gets or sets the SAP System Identifier
- Sap
Username string - Gets or sets the SAP user name.
- Ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- Ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- sap
Client StringId - Gets or sets the SAP Client ID.
- sap
Host List<String>File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname String - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance StringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password String - Sets the SAP password.
- sap
Password StringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port StringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid String - Gets or sets the SAP System Identifier
- sap
Username String - Gets or sets the SAP user name.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
- sap
Client stringId - Gets or sets the SAP Client ID.
- sap
Host string[]File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname string - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance stringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password string - Sets the SAP password.
- sap
Password stringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port stringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid string - Gets or sets the SAP System Identifier
- sap
Username string - Gets or sets the SAP user name.
- ssl
Certificate stringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference string - Gets or sets certificate preference if secure communication is enabled.
- sap_
client_ strid - Gets or sets the SAP Client ID.
- sap_
host_ Sequence[str]file_ entries - Gets or sets the list of HostFile Entries
- sap_
hostname str - Gets or sets the target virtual machine IP Address/FQDN.
- sap_
instance_ strnr - Gets or sets the instance number of SAP NetWeaver.
- sap_
password str - Sets the SAP password.
- sap_
password_ struri - Gets or sets the key vault URI to secret with the SAP password.
- sap_
port_ strnumber - 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_ struri - 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.
- sap
Client StringId - Gets or sets the SAP Client ID.
- sap
Host List<String>File Entries - Gets or sets the list of HostFile Entries
- sap
Hostname String - Gets or sets the target virtual machine IP Address/FQDN.
- sap
Instance StringNr - Gets or sets the instance number of SAP NetWeaver.
- sap
Password String - Sets the SAP password.
- sap
Password StringUri - Gets or sets the key vault URI to secret with the SAP password.
- sap
Port StringNumber - Gets or sets the SAP HTTP port number.
- sap
Sid String - Gets or sets the SAP System Identifier
- sap
Username String - Gets or sets the SAP user name.
- ssl
Certificate StringUri - Gets or sets the blob URI to SSL certificate for the SAP system.
- ssl
Preference String - Gets or sets certificate preference if secure communication is enabled.
SslPreference, SslPreferenceArgs
- Disabled
- Disabled
- Root
Certificate - RootCertificate
- Server
Certificate - ServerCertificate
- Ssl
Preference Disabled - Disabled
- Ssl
Preference Root Certificate - RootCertificate
- Ssl
Preference Server Certificate - ServerCertificate
- Disabled
- Disabled
- Root
Certificate - RootCertificate
- Server
Certificate - ServerCertificate
- Disabled
- Disabled
- Root
Certificate - RootCertificate
- Server
Certificate - ServerCertificate
- DISABLED
- Disabled
- ROOT_CERTIFICATE
- RootCertificate
- SERVER_CERTIFICATE
- ServerCertificate
- "Disabled"
- Disabled
- "Root
Certificate" - RootCertificate
- "Server
Certificate" - ServerCertificate
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id 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.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
UserAssignedServiceIdentity, UserAssignedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Workloads. Managed Service Identity Type - Type of manage identity
- User
Assigned List<string>Identities - User assigned identities dictionary
- Type
string | Managed
Service Identity Type - Type of manage identity
- User
Assigned []stringIdentities - User assigned identities dictionary
- type
String | Managed
Service Identity Type - Type of manage identity
- user
Assigned List<String>Identities - User assigned identities dictionary
- type
string | Managed
Service Identity Type - Type of manage identity
- user
Assigned string[]Identities - User assigned identities dictionary
- type
str | Managed
Service Identity Type - Type of manage identity
- user_
assigned_ Sequence[str]identities - User assigned identities dictionary
- type
String | "None" | "User
Assigned" - Type of manage identity
- user
Assigned List<String>Identities - User assigned identities dictionary
UserAssignedServiceIdentityResponse, UserAssignedServiceIdentityResponseArgs
- Type string
- Type of manage identity
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Workloads. Inputs. User Assigned Identity Response> - User assigned identities dictionary
- Type string
- Type of manage identity
- User
Assigned map[string]UserIdentities Assigned Identity Response - User assigned identities dictionary
- type String
- Type of manage identity
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - User assigned identities dictionary
- type string
- Type of manage identity
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - User assigned identities dictionary
- type str
- Type of manage identity
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - User assigned identities dictionary
- type String
- Type of manage identity
- user
Assigned Map<Property Map>Identities - 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0