1. Packages
  2. Azure Native
  3. API Docs
  4. workloads
  5. SapLandscapeMonitor
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

azure-native.workloads.SapLandscapeMonitor

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi

    configuration associated with SAP Landscape Monitor Dashboard. Azure REST API version: 2023-04-01.

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

    Example Usage

    Create for SAP Landscape monitor Dashboard

    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,
                },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/workloads/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := workloads.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
    	})
    }
    
    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)
                    .name("Instance Availability")
                    .red(50)
                    .yellow(75)
                    .build())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sap_landscape_monitor = azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitor",
        grouping=azure_native.workloads.SapLandscapeMonitorPropertiesGroupingArgs(
            landscape=[azure_native.workloads.SapLandscapeMonitorSidMappingArgs(
                name="Prod",
                top_sid=[
                    "SID1",
                    "SID2",
                ],
            )],
            sap_application=[azure_native.workloads.SapLandscapeMonitorSidMappingArgs(
                name="ERP1",
                top_sid=[
                    "SID1",
                    "SID2",
                ],
            )],
        ),
        monitor_name="mySapMonitor",
        resource_group_name="myResourceGroup",
        top_metrics_thresholds=[azure_native.workloads.SapLandscapeMonitorMetricThresholdsArgs(
            green=90,
            name="Instance Availability",
            red=50,
            yellow=75,
        )])
    
    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,
        }],
    });
    
    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
    

    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 string
    The unique name of the resource.
    args SapLandscapeMonitorArgs
    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 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 string
    The unique name of the resource.
    args SapLandscapeMonitorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SapLandscapeMonitorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SapLandscapeMonitorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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,
            },
        },
    });
    
    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),
    },
    },
    })
    
    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());
    
    sap_landscape_monitor_resource = azure_native.workloads.SapLandscapeMonitor("sapLandscapeMonitorResource",
        monitor_name="string",
        resource_group_name="string",
        grouping=azure_native.workloads.SapLandscapeMonitorPropertiesGroupingArgs(
            landscape=[azure_native.workloads.SapLandscapeMonitorSidMappingArgs(
                name="string",
                top_sid=["string"],
            )],
            sap_application=[azure_native.workloads.SapLandscapeMonitorSidMappingArgs(
                name="string",
                top_sid=["string"],
            )],
        ),
        top_metrics_thresholds=[azure_native.workloads.SapLandscapeMonitorMetricThresholdsArgs(
            green=0,
            name="string",
            red=0,
            yellow=0,
        )])
    
    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,
        }],
    });
    
    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
    

    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

    The SapLandscapeMonitor resource accepts the following input properties:

    MonitorName string
    Name of the SAP monitor resource.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    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 string
    Name of the SAP monitor resource.
    ResourceGroupName 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 String
    Name of the SAP monitor resource.
    resourceGroupName 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 string
    Name of the SAP monitor resource.
    resourceGroupName 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 str
    Name of the SAP monitor resource.
    resource_group_name 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 String
    Name of the SAP monitor resource.
    resourceGroupName 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:

    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"
    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"
    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"
    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"
    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"
    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.

    SapLandscapeMonitorPropertiesResponseGrouping, SapLandscapeMonitorPropertiesResponseGroupingArgs

    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 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.39.0 published on Monday, Apr 29, 2024 by Pulumi