1. Packages
  2. Azure Native
  3. API Docs
  4. workloads
  5. SapLandscapeMonitor
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.workloads.SapLandscapeMonitor

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

configuration associated with SAP Landscape Monitor Dashboard.

Uses Azure REST API version 2024-02-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-04-01.

Other available API versions: 2023-04-01, 2023-10-01-preview, 2023-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native workloads [ApiVersion]. See the version guide for details.

Example Usage

Create SAP landscape monitor

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var sapLandscapeMonitor = new AzureNative.Workloads.SapLandscapeMonitor("sapLandscapeMonitor", new()
    {
        Grouping = new AzureNative.Workloads.Inputs.SapLandscapeMonitorPropertiesGroupingArgs
        {
            Landscape = new[]
            {
                new AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMappingArgs
                {
                    Name = "Prod",
                    TopSid = new[]
                    {
                        "SID1",
                        "SID2",
                    },
                },
            },
            SapApplication = new[]
            {
                new AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMappingArgs
                {
                    Name = "ERP1",
                    TopSid = new[]
                    {
                        "SID1",
                        "SID2",
                    },
                },
            },
        },
        MonitorName = "mySapMonitor",
        ResourceGroupName = "myResourceGroup",
        TopMetricsThresholds = new[]
        {
            new AzureNative.Workloads.Inputs.SapLandscapeMonitorMetricThresholdsArgs
            {
                Green = 90,
                Name = "Instance Availability",
                Red = 50,
                Yellow = 75,
            },
        },
    });

});
Copy
package main

import (
	workloads "github.com/pulumi/pulumi-azure-native-sdk/workloads/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := workloads.NewSapLandscapeMonitor(ctx, "sapLandscapeMonitor", &workloads.SapLandscapeMonitorArgs{
			Grouping: &workloads.SapLandscapeMonitorPropertiesGroupingArgs{
				Landscape: workloads.SapLandscapeMonitorSidMappingArray{
					&workloads.SapLandscapeMonitorSidMappingArgs{
						Name: pulumi.String("Prod"),
						TopSid: pulumi.StringArray{
							pulumi.String("SID1"),
							pulumi.String("SID2"),
						},
					},
				},
				SapApplication: workloads.SapLandscapeMonitorSidMappingArray{
					&workloads.SapLandscapeMonitorSidMappingArgs{
						Name: pulumi.String("ERP1"),
						TopSid: pulumi.StringArray{
							pulumi.String("SID1"),
							pulumi.String("SID2"),
						},
					},
				},
			},
			MonitorName:       pulumi.String("mySapMonitor"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
			TopMetricsThresholds: workloads.SapLandscapeMonitorMetricThresholdsArray{
				&workloads.SapLandscapeMonitorMetricThresholdsArgs{
					Green:  pulumi.Float64(90),
					Name:   pulumi.String("Instance Availability"),
					Red:    pulumi.Float64(50),
					Yellow: pulumi.Float64(75),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.workloads.SapLandscapeMonitor;
import com.pulumi.azurenative.workloads.SapLandscapeMonitorArgs;
import com.pulumi.azurenative.workloads.inputs.SapLandscapeMonitorPropertiesGroupingArgs;
import com.pulumi.azurenative.workloads.inputs.SapLandscapeMonitorMetricThresholdsArgs;
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 sapLandscapeMonitor = new SapLandscapeMonitor("sapLandscapeMonitor", SapLandscapeMonitorArgs.builder()
            .grouping(SapLandscapeMonitorPropertiesGroupingArgs.builder()
                .landscape(SapLandscapeMonitorSidMappingArgs.builder()
                    .name("Prod")
                    .topSid(                    
                        "SID1",
                        "SID2")
                    .build())
                .sapApplication(SapLandscapeMonitorSidMappingArgs.builder()
                    .name("ERP1")
                    .topSid(                    
                        "SID1",
                        "SID2")
                    .build())
                .build())
            .monitorName("mySapMonitor")
            .resourceGroupName("myResourceGroup")
            .topMetricsThresholds(SapLandscapeMonitorMetricThresholdsArgs.builder()
                .green(90.0)
                .name("Instance Availability")
                .red(50.0)
                .yellow(75.0)
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const sapLandscapeMonitor = new azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitor", {
    grouping: {
        landscape: [{
            name: "Prod",
            topSid: [
                "SID1",
                "SID2",
            ],
        }],
        sapApplication: [{
            name: "ERP1",
            topSid: [
                "SID1",
                "SID2",
            ],
        }],
    },
    monitorName: "mySapMonitor",
    resourceGroupName: "myResourceGroup",
    topMetricsThresholds: [{
        green: 90,
        name: "Instance Availability",
        red: 50,
        yellow: 75,
    }],
});
Copy
import pulumi
import pulumi_azure_native as azure_native

sap_landscape_monitor = azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitor",
    grouping={
        "landscape": [{
            "name": "Prod",
            "top_sid": [
                "SID1",
                "SID2",
            ],
        }],
        "sap_application": [{
            "name": "ERP1",
            "top_sid": [
                "SID1",
                "SID2",
            ],
        }],
    },
    monitor_name="mySapMonitor",
    resource_group_name="myResourceGroup",
    top_metrics_thresholds=[{
        "green": 90,
        "name": "Instance Availability",
        "red": 50,
        "yellow": 75,
    }])
Copy
resources:
  sapLandscapeMonitor:
    type: azure-native:workloads:SapLandscapeMonitor
    properties:
      grouping:
        landscape:
          - name: Prod
            topSid:
              - SID1
              - SID2
        sapApplication:
          - name: ERP1
            topSid:
              - SID1
              - SID2
      monitorName: mySapMonitor
      resourceGroupName: myResourceGroup
      topMetricsThresholds:
        - green: 90
          name: Instance Availability
          red: 50
          yellow: 75
Copy

Create SapLandscapeMonitor Resource

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

Constructor syntax

new SapLandscapeMonitor(name: string, args: SapLandscapeMonitorArgs, opts?: CustomResourceOptions);
@overload
def SapLandscapeMonitor(resource_name: str,
                        args: SapLandscapeMonitorArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def SapLandscapeMonitor(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        monitor_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        grouping: Optional[SapLandscapeMonitorPropertiesGroupingArgs] = None,
                        top_metrics_thresholds: Optional[Sequence[SapLandscapeMonitorMetricThresholdsArgs]] = None)
func NewSapLandscapeMonitor(ctx *Context, name string, args SapLandscapeMonitorArgs, opts ...ResourceOption) (*SapLandscapeMonitor, error)
public SapLandscapeMonitor(string name, SapLandscapeMonitorArgs args, CustomResourceOptions? opts = null)
public SapLandscapeMonitor(String name, SapLandscapeMonitorArgs args)
public SapLandscapeMonitor(String name, SapLandscapeMonitorArgs args, CustomResourceOptions options)
type: azure-native:workloads:SapLandscapeMonitor
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SapLandscapeMonitorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SapLandscapeMonitorArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SapLandscapeMonitorArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SapLandscapeMonitorArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SapLandscapeMonitorArgs
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 sapLandscapeMonitorResource = new AzureNative.Workloads.SapLandscapeMonitor("sapLandscapeMonitorResource", new()
{
    MonitorName = "string",
    ResourceGroupName = "string",
    Grouping = new AzureNative.Workloads.Inputs.SapLandscapeMonitorPropertiesGroupingArgs
    {
        Landscape = new[]
        {
            new AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMappingArgs
            {
                Name = "string",
                TopSid = new[]
                {
                    "string",
                },
            },
        },
        SapApplication = new[]
        {
            new AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMappingArgs
            {
                Name = "string",
                TopSid = new[]
                {
                    "string",
                },
            },
        },
    },
    TopMetricsThresholds = new[]
    {
        new AzureNative.Workloads.Inputs.SapLandscapeMonitorMetricThresholdsArgs
        {
            Green = 0,
            Name = "string",
            Red = 0,
            Yellow = 0,
        },
    },
});
Copy
example, err := workloads.NewSapLandscapeMonitor(ctx, "sapLandscapeMonitorResource", &workloads.SapLandscapeMonitorArgs{
	MonitorName:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	Grouping: &workloads.SapLandscapeMonitorPropertiesGroupingArgs{
		Landscape: workloads.SapLandscapeMonitorSidMappingArray{
			&workloads.SapLandscapeMonitorSidMappingArgs{
				Name: pulumi.String("string"),
				TopSid: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
		SapApplication: workloads.SapLandscapeMonitorSidMappingArray{
			&workloads.SapLandscapeMonitorSidMappingArgs{
				Name: pulumi.String("string"),
				TopSid: pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	TopMetricsThresholds: workloads.SapLandscapeMonitorMetricThresholdsArray{
		&workloads.SapLandscapeMonitorMetricThresholdsArgs{
			Green:  pulumi.Float64(0),
			Name:   pulumi.String("string"),
			Red:    pulumi.Float64(0),
			Yellow: pulumi.Float64(0),
		},
	},
})
Copy
var sapLandscapeMonitorResource = new SapLandscapeMonitor("sapLandscapeMonitorResource", SapLandscapeMonitorArgs.builder()
    .monitorName("string")
    .resourceGroupName("string")
    .grouping(SapLandscapeMonitorPropertiesGroupingArgs.builder()
        .landscape(SapLandscapeMonitorSidMappingArgs.builder()
            .name("string")
            .topSid("string")
            .build())
        .sapApplication(SapLandscapeMonitorSidMappingArgs.builder()
            .name("string")
            .topSid("string")
            .build())
        .build())
    .topMetricsThresholds(SapLandscapeMonitorMetricThresholdsArgs.builder()
        .green(0)
        .name("string")
        .red(0)
        .yellow(0)
        .build())
    .build());
Copy
sap_landscape_monitor_resource = azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitorResource",
    monitor_name="string",
    resource_group_name="string",
    grouping={
        "landscape": [{
            "name": "string",
            "top_sid": ["string"],
        }],
        "sap_application": [{
            "name": "string",
            "top_sid": ["string"],
        }],
    },
    top_metrics_thresholds=[{
        "green": 0,
        "name": "string",
        "red": 0,
        "yellow": 0,
    }])
Copy
const sapLandscapeMonitorResource = new azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitorResource", {
    monitorName: "string",
    resourceGroupName: "string",
    grouping: {
        landscape: [{
            name: "string",
            topSid: ["string"],
        }],
        sapApplication: [{
            name: "string",
            topSid: ["string"],
        }],
    },
    topMetricsThresholds: [{
        green: 0,
        name: "string",
        red: 0,
        yellow: 0,
    }],
});
Copy
type: azure-native:workloads:SapLandscapeMonitor
properties:
    grouping:
        landscape:
            - name: string
              topSid:
                - string
        sapApplication:
            - name: string
              topSid:
                - string
    monitorName: string
    resourceGroupName: string
    topMetricsThresholds:
        - green: 0
          name: string
          red: 0
          yellow: 0
Copy

SapLandscapeMonitor Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SapLandscapeMonitor resource accepts the following input properties:

MonitorName
This property is required.
Changes to this property will trigger replacement.
string
Name of the SAP monitor resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Grouping Pulumi.AzureNative.Workloads.Inputs.SapLandscapeMonitorPropertiesGrouping
Gets or sets the SID groupings by landscape and Environment.
TopMetricsThresholds List<Pulumi.AzureNative.Workloads.Inputs.SapLandscapeMonitorMetricThresholds>
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
MonitorName
This property is required.
Changes to this property will trigger replacement.
string
Name of the SAP monitor resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Grouping SapLandscapeMonitorPropertiesGroupingArgs
Gets or sets the SID groupings by landscape and Environment.
TopMetricsThresholds []SapLandscapeMonitorMetricThresholdsArgs
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
monitorName
This property is required.
Changes to this property will trigger replacement.
String
Name of the SAP monitor resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
grouping SapLandscapeMonitorPropertiesGrouping
Gets or sets the SID groupings by landscape and Environment.
topMetricsThresholds List<SapLandscapeMonitorMetricThresholds>
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
monitorName
This property is required.
Changes to this property will trigger replacement.
string
Name of the SAP monitor resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
grouping SapLandscapeMonitorPropertiesGrouping
Gets or sets the SID groupings by landscape and Environment.
topMetricsThresholds SapLandscapeMonitorMetricThresholds[]
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
monitor_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the SAP monitor resource.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
grouping SapLandscapeMonitorPropertiesGroupingArgs
Gets or sets the SID groupings by landscape and Environment.
top_metrics_thresholds Sequence[SapLandscapeMonitorMetricThresholdsArgs]
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
monitorName
This property is required.
Changes to this property will trigger replacement.
String
Name of the SAP monitor resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
grouping Property Map
Gets or sets the SID groupings by landscape and Environment.
topMetricsThresholds List<Property Map>
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
State of provisioning of the SAP monitor.
SystemData Pulumi.AzureNative.Workloads.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
State of provisioning of the SAP monitor.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
State of provisioning of the SAP monitor.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
State of provisioning of the SAP monitor.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
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 SAP monitor.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
State of provisioning of the SAP monitor.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

SapLandscapeMonitorMetricThresholds
, SapLandscapeMonitorMetricThresholdsArgs

Green double
Gets or sets the threshold value for Green.
Name string
Gets or sets the name of the threshold.
Red double
Gets or sets the threshold value for Red.
Yellow double
Gets or sets the threshold value for Yellow.
Green float64
Gets or sets the threshold value for Green.
Name string
Gets or sets the name of the threshold.
Red float64
Gets or sets the threshold value for Red.
Yellow float64
Gets or sets the threshold value for Yellow.
green Double
Gets or sets the threshold value for Green.
name String
Gets or sets the name of the threshold.
red Double
Gets or sets the threshold value for Red.
yellow Double
Gets or sets the threshold value for Yellow.
green number
Gets or sets the threshold value for Green.
name string
Gets or sets the name of the threshold.
red number
Gets or sets the threshold value for Red.
yellow number
Gets or sets the threshold value for Yellow.
green float
Gets or sets the threshold value for Green.
name str
Gets or sets the name of the threshold.
red float
Gets or sets the threshold value for Red.
yellow float
Gets or sets the threshold value for Yellow.
green Number
Gets or sets the threshold value for Green.
name String
Gets or sets the name of the threshold.
red Number
Gets or sets the threshold value for Red.
yellow Number
Gets or sets the threshold value for Yellow.

SapLandscapeMonitorMetricThresholdsResponse
, SapLandscapeMonitorMetricThresholdsResponseArgs

Green double
Gets or sets the threshold value for Green.
Name string
Gets or sets the name of the threshold.
Red double
Gets or sets the threshold value for Red.
Yellow double
Gets or sets the threshold value for Yellow.
Green float64
Gets or sets the threshold value for Green.
Name string
Gets or sets the name of the threshold.
Red float64
Gets or sets the threshold value for Red.
Yellow float64
Gets or sets the threshold value for Yellow.
green Double
Gets or sets the threshold value for Green.
name String
Gets or sets the name of the threshold.
red Double
Gets or sets the threshold value for Red.
yellow Double
Gets or sets the threshold value for Yellow.
green number
Gets or sets the threshold value for Green.
name string
Gets or sets the name of the threshold.
red number
Gets or sets the threshold value for Red.
yellow number
Gets or sets the threshold value for Yellow.
green float
Gets or sets the threshold value for Green.
name str
Gets or sets the name of the threshold.
red float
Gets or sets the threshold value for Red.
yellow float
Gets or sets the threshold value for Yellow.
green Number
Gets or sets the threshold value for Green.
name String
Gets or sets the name of the threshold.
red Number
Gets or sets the threshold value for Red.
yellow Number
Gets or sets the threshold value for Yellow.

SapLandscapeMonitorPropertiesGrouping
, SapLandscapeMonitorPropertiesGroupingArgs

Landscape List<Pulumi.AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMapping>
Gets or sets the list of landscape to SID mappings.
SapApplication List<Pulumi.AzureNative.Workloads.Inputs.SapLandscapeMonitorSidMapping>
Gets or sets the list of Sap Applications to SID mappings.
Landscape []SapLandscapeMonitorSidMapping
Gets or sets the list of landscape to SID mappings.
SapApplication []SapLandscapeMonitorSidMapping
Gets or sets the list of Sap Applications to SID mappings.
landscape List<SapLandscapeMonitorSidMapping>
Gets or sets the list of landscape to SID mappings.
sapApplication List<SapLandscapeMonitorSidMapping>
Gets or sets the list of Sap Applications to SID mappings.
landscape SapLandscapeMonitorSidMapping[]
Gets or sets the list of landscape to SID mappings.
sapApplication SapLandscapeMonitorSidMapping[]
Gets or sets the list of Sap Applications to SID mappings.
landscape Sequence[SapLandscapeMonitorSidMapping]
Gets or sets the list of landscape to SID mappings.
sap_application Sequence[SapLandscapeMonitorSidMapping]
Gets or sets the list of Sap Applications to SID mappings.
landscape List<Property Map>
Gets or sets the list of landscape to SID mappings.
sapApplication List<Property Map>
Gets or sets the list of Sap Applications to SID mappings.

SapLandscapeMonitorPropertiesGroupingResponse
, SapLandscapeMonitorPropertiesGroupingResponseArgs

Landscape []SapLandscapeMonitorSidMappingResponse
Gets or sets the list of landscape to SID mappings.
SapApplication []SapLandscapeMonitorSidMappingResponse
Gets or sets the list of Sap Applications to SID mappings.
landscape List<SapLandscapeMonitorSidMappingResponse>
Gets or sets the list of landscape to SID mappings.
sapApplication List<SapLandscapeMonitorSidMappingResponse>
Gets or sets the list of Sap Applications to SID mappings.
landscape SapLandscapeMonitorSidMappingResponse[]
Gets or sets the list of landscape to SID mappings.
sapApplication SapLandscapeMonitorSidMappingResponse[]
Gets or sets the list of Sap Applications to SID mappings.
landscape Sequence[SapLandscapeMonitorSidMappingResponse]
Gets or sets the list of landscape to SID mappings.
sap_application Sequence[SapLandscapeMonitorSidMappingResponse]
Gets or sets the list of Sap Applications to SID mappings.
landscape List<Property Map>
Gets or sets the list of landscape to SID mappings.
sapApplication List<Property Map>
Gets or sets the list of Sap Applications to SID mappings.

SapLandscapeMonitorSidMapping
, SapLandscapeMonitorSidMappingArgs

Name string
Gets or sets the name of the grouping.
TopSid List<string>
Gets or sets the list of SID's.
Name string
Gets or sets the name of the grouping.
TopSid []string
Gets or sets the list of SID's.
name String
Gets or sets the name of the grouping.
topSid List<String>
Gets or sets the list of SID's.
name string
Gets or sets the name of the grouping.
topSid string[]
Gets or sets the list of SID's.
name str
Gets or sets the name of the grouping.
top_sid Sequence[str]
Gets or sets the list of SID's.
name String
Gets or sets the name of the grouping.
topSid List<String>
Gets or sets the list of SID's.

SapLandscapeMonitorSidMappingResponse
, SapLandscapeMonitorSidMappingResponseArgs

Name string
Gets or sets the name of the grouping.
TopSid List<string>
Gets or sets the list of SID's.
Name string
Gets or sets the name of the grouping.
TopSid []string
Gets or sets the list of SID's.
name String
Gets or sets the name of the grouping.
topSid List<String>
Gets or sets the list of SID's.
name string
Gets or sets the name of the grouping.
topSid string[]
Gets or sets the list of SID's.
name str
Gets or sets the name of the grouping.
top_sid Sequence[str]
Gets or sets the list of SID's.
name String
Gets or sets the name of the grouping.
topSid List<String>
Gets or sets the list of SID's.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:workloads:SapLandscapeMonitor default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Workloads/monitors/{monitorName}/sapLandscapeMonitor/default 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi