azure-native.workloads.Monitor
Explore with Pulumi AI
SAP monitor info on Azure (ARM properties and SAP monitor properties)
Uses Azure REST API version 2024-02-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-12-01-preview.
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 a SAP monitor
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var monitor = new AzureNative.Workloads.Monitor("monitor", new()
{
AppLocation = "westus",
AppServicePlanConfiguration = new AzureNative.Workloads.Inputs.AppServicePlanConfigurationArgs
{
Capacity = 1,
Tier = AzureNative.Workloads.AppServicePlanTier.ElasticPremium,
},
Location = "westus",
LogAnalyticsWorkspaceArmId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
ManagedResourceGroupConfiguration = new AzureNative.Workloads.Inputs.ManagedResourceGroupConfigurationArgs
{
Name = "myManagedRg",
},
MonitorName = "mySapMonitor",
MonitorSubnet = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
ResourceGroupName = "myResourceGroup",
RoutingPreference = AzureNative.Workloads.RoutingPreference.RouteAll,
Tags =
{
{ "key", "value" },
},
});
});
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.NewMonitor(ctx, "monitor", &workloads.MonitorArgs{
AppLocation: pulumi.String("westus"),
AppServicePlanConfiguration: &workloads.AppServicePlanConfigurationArgs{
Capacity: pulumi.Int(1),
Tier: pulumi.String(workloads.AppServicePlanTierElasticPremium),
},
Location: pulumi.String("westus"),
LogAnalyticsWorkspaceArmId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace"),
ManagedResourceGroupConfiguration: &workloads.ManagedResourceGroupConfigurationArgs{
Name: pulumi.String("myManagedRg"),
},
MonitorName: pulumi.String("mySapMonitor"),
MonitorSubnet: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet"),
ResourceGroupName: pulumi.String("myResourceGroup"),
RoutingPreference: pulumi.String(workloads.RoutingPreferenceRouteAll),
Tags: pulumi.StringMap{
"key": pulumi.String("value"),
},
})
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.Monitor;
import com.pulumi.azurenative.workloads.MonitorArgs;
import com.pulumi.azurenative.workloads.inputs.AppServicePlanConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.ManagedResourceGroupConfigurationArgs;
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 monitor = new Monitor("monitor", MonitorArgs.builder()
.appLocation("westus")
.appServicePlanConfiguration(AppServicePlanConfigurationArgs.builder()
.capacity(1)
.tier("ElasticPremium")
.build())
.location("westus")
.logAnalyticsWorkspaceArmId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace")
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.name("myManagedRg")
.build())
.monitorName("mySapMonitor")
.monitorSubnet("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet")
.resourceGroupName("myResourceGroup")
.routingPreference("RouteAll")
.tags(Map.of("key", "value"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const monitor = new azure_native.workloads.Monitor("monitor", {
appLocation: "westus",
appServicePlanConfiguration: {
capacity: 1,
tier: azure_native.workloads.AppServicePlanTier.ElasticPremium,
},
location: "westus",
logAnalyticsWorkspaceArmId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
managedResourceGroupConfiguration: {
name: "myManagedRg",
},
monitorName: "mySapMonitor",
monitorSubnet: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
resourceGroupName: "myResourceGroup",
routingPreference: azure_native.workloads.RoutingPreference.RouteAll,
tags: {
key: "value",
},
});
import pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.workloads.Monitor("monitor",
app_location="westus",
app_service_plan_configuration={
"capacity": 1,
"tier": azure_native.workloads.AppServicePlanTier.ELASTIC_PREMIUM,
},
location="westus",
log_analytics_workspace_arm_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
managed_resource_group_configuration={
"name": "myManagedRg",
},
monitor_name="mySapMonitor",
monitor_subnet="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
resource_group_name="myResourceGroup",
routing_preference=azure_native.workloads.RoutingPreference.ROUTE_ALL,
tags={
"key": "value",
})
resources:
monitor:
type: azure-native:workloads:Monitor
properties:
appLocation: westus
appServicePlanConfiguration:
capacity: 1
tier: ElasticPremium
location: westus
logAnalyticsWorkspaceArmId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace
managedResourceGroupConfiguration:
name: myManagedRg
monitorName: mySapMonitor
monitorSubnet: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet
resourceGroupName: myResourceGroup
routingPreference: RouteAll
tags:
key: value
Create a SAP monitor with system assigned identity
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var monitor = new AzureNative.Workloads.Monitor("monitor", new()
{
AppLocation = "westus",
AppServicePlanConfiguration = new AzureNative.Workloads.Inputs.AppServicePlanConfigurationArgs
{
Capacity = 1,
Tier = AzureNative.Workloads.AppServicePlanTier.ElasticPremium,
},
Identity = new AzureNative.Workloads.Inputs.ManagedServiceIdentityArgs
{
Type = AzureNative.Workloads.ManagedServiceIdentityType.SystemAssigned,
},
Location = "westus",
LogAnalyticsWorkspaceArmId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
ManagedResourceGroupConfiguration = new AzureNative.Workloads.Inputs.ManagedResourceGroupConfigurationArgs
{
Name = "myManagedRg",
},
MonitorName = "mySapMonitor",
MonitorSubnet = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
ResourceGroupName = "myResourceGroup",
RoutingPreference = AzureNative.Workloads.RoutingPreference.RouteAll,
Tags =
{
{ "key", "value" },
},
});
});
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.NewMonitor(ctx, "monitor", &workloads.MonitorArgs{
AppLocation: pulumi.String("westus"),
AppServicePlanConfiguration: &workloads.AppServicePlanConfigurationArgs{
Capacity: pulumi.Int(1),
Tier: pulumi.String(workloads.AppServicePlanTierElasticPremium),
},
Identity: &workloads.ManagedServiceIdentityArgs{
Type: pulumi.String(workloads.ManagedServiceIdentityTypeSystemAssigned),
},
Location: pulumi.String("westus"),
LogAnalyticsWorkspaceArmId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace"),
ManagedResourceGroupConfiguration: &workloads.ManagedResourceGroupConfigurationArgs{
Name: pulumi.String("myManagedRg"),
},
MonitorName: pulumi.String("mySapMonitor"),
MonitorSubnet: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet"),
ResourceGroupName: pulumi.String("myResourceGroup"),
RoutingPreference: pulumi.String(workloads.RoutingPreferenceRouteAll),
Tags: pulumi.StringMap{
"key": pulumi.String("value"),
},
})
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.Monitor;
import com.pulumi.azurenative.workloads.MonitorArgs;
import com.pulumi.azurenative.workloads.inputs.AppServicePlanConfigurationArgs;
import com.pulumi.azurenative.workloads.inputs.ManagedServiceIdentityArgs;
import com.pulumi.azurenative.workloads.inputs.ManagedResourceGroupConfigurationArgs;
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 monitor = new Monitor("monitor", MonitorArgs.builder()
.appLocation("westus")
.appServicePlanConfiguration(AppServicePlanConfigurationArgs.builder()
.capacity(1)
.tier("ElasticPremium")
.build())
.identity(ManagedServiceIdentityArgs.builder()
.type("SystemAssigned")
.build())
.location("westus")
.logAnalyticsWorkspaceArmId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace")
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.name("myManagedRg")
.build())
.monitorName("mySapMonitor")
.monitorSubnet("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet")
.resourceGroupName("myResourceGroup")
.routingPreference("RouteAll")
.tags(Map.of("key", "value"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const monitor = new azure_native.workloads.Monitor("monitor", {
appLocation: "westus",
appServicePlanConfiguration: {
capacity: 1,
tier: azure_native.workloads.AppServicePlanTier.ElasticPremium,
},
identity: {
type: azure_native.workloads.ManagedServiceIdentityType.SystemAssigned,
},
location: "westus",
logAnalyticsWorkspaceArmId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
managedResourceGroupConfiguration: {
name: "myManagedRg",
},
monitorName: "mySapMonitor",
monitorSubnet: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
resourceGroupName: "myResourceGroup",
routingPreference: azure_native.workloads.RoutingPreference.RouteAll,
tags: {
key: "value",
},
});
import pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.workloads.Monitor("monitor",
app_location="westus",
app_service_plan_configuration={
"capacity": 1,
"tier": azure_native.workloads.AppServicePlanTier.ELASTIC_PREMIUM,
},
identity={
"type": azure_native.workloads.ManagedServiceIdentityType.SYSTEM_ASSIGNED,
},
location="westus",
log_analytics_workspace_arm_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
managed_resource_group_configuration={
"name": "myManagedRg",
},
monitor_name="mySapMonitor",
monitor_subnet="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet",
resource_group_name="myResourceGroup",
routing_preference=azure_native.workloads.RoutingPreference.ROUTE_ALL,
tags={
"key": "value",
})
resources:
monitor:
type: azure-native:workloads:Monitor
properties:
appLocation: westus
appServicePlanConfiguration:
capacity: 1
tier: ElasticPremium
identity:
type: SystemAssigned
location: westus
logAnalyticsWorkspaceArmId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace
managedResourceGroupConfiguration:
name: myManagedRg
monitorName: mySapMonitor
monitorSubnet: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/myVnet/subnets/mySubnet
resourceGroupName: myResourceGroup
routingPreference: RouteAll
tags:
key: value
Create Monitor Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Monitor(name: string, args: MonitorArgs, opts?: CustomResourceOptions);
@overload
def Monitor(resource_name: str,
args: MonitorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Monitor(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
app_location: Optional[str] = None,
app_service_plan_configuration: Optional[AppServicePlanConfigurationArgs] = None,
identity: Optional[ManagedServiceIdentityArgs] = None,
location: Optional[str] = None,
log_analytics_workspace_arm_id: Optional[str] = None,
managed_resource_group_configuration: Optional[ManagedResourceGroupConfigurationArgs] = None,
monitor_name: Optional[str] = None,
monitor_subnet: Optional[str] = None,
routing_preference: Optional[Union[str, RoutingPreference]] = None,
tags: Optional[Mapping[str, str]] = None,
zone_redundancy_preference: Optional[str] = None)
func NewMonitor(ctx *Context, name string, args MonitorArgs, opts ...ResourceOption) (*Monitor, error)
public Monitor(string name, MonitorArgs args, CustomResourceOptions? opts = null)
public Monitor(String name, MonitorArgs args)
public Monitor(String name, MonitorArgs args, CustomResourceOptions options)
type: azure-native:workloads:Monitor
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 MonitorArgs
- 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 MonitorArgs
- 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 MonitorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MonitorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MonitorArgs
- 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 examplemonitorResourceResourceFromWorkloads = new AzureNative.Workloads.Monitor("examplemonitorResourceResourceFromWorkloads", new()
{
ResourceGroupName = "string",
AppLocation = "string",
AppServicePlanConfiguration = new AzureNative.Workloads.Inputs.AppServicePlanConfigurationArgs
{
Capacity = 0,
Tier = "string",
},
Identity = new AzureNative.Workloads.Inputs.ManagedServiceIdentityArgs
{
Type = "string",
UserAssignedIdentities = new[]
{
"string",
},
},
Location = "string",
LogAnalyticsWorkspaceArmId = "string",
ManagedResourceGroupConfiguration = new AzureNative.Workloads.Inputs.ManagedResourceGroupConfigurationArgs
{
Name = "string",
},
MonitorName = "string",
MonitorSubnet = "string",
RoutingPreference = "string",
Tags =
{
{ "string", "string" },
},
ZoneRedundancyPreference = "string",
});
example, err := workloads.NewMonitor(ctx, "examplemonitorResourceResourceFromWorkloads", &workloads.MonitorArgs{
ResourceGroupName: pulumi.String("string"),
AppLocation: pulumi.String("string"),
AppServicePlanConfiguration: &workloads.AppServicePlanConfigurationArgs{
Capacity: pulumi.Int(0),
Tier: pulumi.String("string"),
},
Identity: &workloads.ManagedServiceIdentityArgs{
Type: pulumi.String("string"),
UserAssignedIdentities: pulumi.StringArray{
pulumi.String("string"),
},
},
Location: pulumi.String("string"),
LogAnalyticsWorkspaceArmId: pulumi.String("string"),
ManagedResourceGroupConfiguration: &workloads.ManagedResourceGroupConfigurationArgs{
Name: pulumi.String("string"),
},
MonitorName: pulumi.String("string"),
MonitorSubnet: pulumi.String("string"),
RoutingPreference: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ZoneRedundancyPreference: pulumi.String("string"),
})
var examplemonitorResourceResourceFromWorkloads = new com.pulumi.azurenative.workloads.Monitor("examplemonitorResourceResourceFromWorkloads", com.pulumi.azurenative.workloads.MonitorArgs.builder()
.resourceGroupName("string")
.appLocation("string")
.appServicePlanConfiguration(AppServicePlanConfigurationArgs.builder()
.capacity(0)
.tier("string")
.build())
.identity(ManagedServiceIdentityArgs.builder()
.type("string")
.userAssignedIdentities("string")
.build())
.location("string")
.logAnalyticsWorkspaceArmId("string")
.managedResourceGroupConfiguration(ManagedResourceGroupConfigurationArgs.builder()
.name("string")
.build())
.monitorName("string")
.monitorSubnet("string")
.routingPreference("string")
.tags(Map.of("string", "string"))
.zoneRedundancyPreference("string")
.build());
examplemonitor_resource_resource_from_workloads = azure_native.workloads.Monitor("examplemonitorResourceResourceFromWorkloads",
resource_group_name="string",
app_location="string",
app_service_plan_configuration={
"capacity": 0,
"tier": "string",
},
identity={
"type": "string",
"user_assigned_identities": ["string"],
},
location="string",
log_analytics_workspace_arm_id="string",
managed_resource_group_configuration={
"name": "string",
},
monitor_name="string",
monitor_subnet="string",
routing_preference="string",
tags={
"string": "string",
},
zone_redundancy_preference="string")
const examplemonitorResourceResourceFromWorkloads = new azure_native.workloads.Monitor("examplemonitorResourceResourceFromWorkloads", {
resourceGroupName: "string",
appLocation: "string",
appServicePlanConfiguration: {
capacity: 0,
tier: "string",
},
identity: {
type: "string",
userAssignedIdentities: ["string"],
},
location: "string",
logAnalyticsWorkspaceArmId: "string",
managedResourceGroupConfiguration: {
name: "string",
},
monitorName: "string",
monitorSubnet: "string",
routingPreference: "string",
tags: {
string: "string",
},
zoneRedundancyPreference: "string",
});
type: azure-native:workloads:Monitor
properties:
appLocation: string
appServicePlanConfiguration:
capacity: 0
tier: string
identity:
type: string
userAssignedIdentities:
- string
location: string
logAnalyticsWorkspaceArmId: string
managedResourceGroupConfiguration:
name: string
monitorName: string
monitorSubnet: string
resourceGroupName: string
routingPreference: string
tags:
string: string
zoneRedundancyPreference: string
Monitor 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 Monitor resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Location string - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- App
Service Pulumi.Plan Configuration Azure Native. Workloads. Inputs. App Service Plan Configuration - App service plan configuration
- Identity
Pulumi.
Azure Native. Workloads. Inputs. Managed Service Identity - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Log
Analytics stringWorkspace Arm Id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- Managed
Resource Pulumi.Group Configuration Azure Native. Workloads. Inputs. Managed Resource Group Configuration - Managed resource group configuration
- Monitor
Name string - Name of the SAP monitor resource.
- Monitor
Subnet string - The subnet which the SAP monitor will be deployed in
- Routing
Preference string | Pulumi.Azure Native. Workloads. Routing Preference - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- Dictionary<string, string>
- Resource tags.
- Zone
Redundancy stringPreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- App
Location string - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- App
Service AppPlan Configuration Service Plan Configuration Args - App service plan configuration
- Identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- Location string
- The geo-location where the resource lives
- Log
Analytics stringWorkspace Arm Id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- Managed
Resource ManagedGroup Configuration Resource Group Configuration Args - Managed resource group configuration
- Monitor
Name string - Name of the SAP monitor resource.
- Monitor
Subnet string - The subnet which the SAP monitor will be deployed in
- Routing
Preference string | RoutingPreference - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- map[string]string
- Resource tags.
- Zone
Redundancy stringPreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Location String - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- app
Service AppPlan Configuration Service Plan Configuration - App service plan configuration
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- log
Analytics StringWorkspace Arm Id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed resource group configuration
- monitor
Name String - Name of the SAP monitor resource.
- monitor
Subnet String - The subnet which the SAP monitor will be deployed in
- routing
Preference String | RoutingPreference - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- Map<String,String>
- Resource tags.
- zone
Redundancy StringPreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- app
Location string - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- app
Service AppPlan Configuration Service Plan Configuration - App service plan configuration
- identity
Managed
Service Identity - The managed service identities assigned to this resource.
- location string
- The geo-location where the resource lives
- log
Analytics stringWorkspace Arm Id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- managed
Resource ManagedGroup Configuration Resource Group Configuration - Managed resource group configuration
- monitor
Name string - Name of the SAP monitor resource.
- monitor
Subnet string - The subnet which the SAP monitor will be deployed in
- routing
Preference string | RoutingPreference - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- {[key: string]: string}
- Resource tags.
- zone
Redundancy stringPreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- app_
location str - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- app_
service_ Appplan_ configuration Service Plan Configuration Args - App service plan configuration
- identity
Managed
Service Identity Args - The managed service identities assigned to this resource.
- location str
- The geo-location where the resource lives
- log_
analytics_ strworkspace_ arm_ id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- managed_
resource_ Managedgroup_ configuration Resource Group Configuration Args - Managed resource group configuration
- monitor_
name str - Name of the SAP monitor resource.
- monitor_
subnet str - The subnet which the SAP monitor will be deployed in
- routing_
preference str | RoutingPreference - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- Mapping[str, str]
- Resource tags.
- zone_
redundancy_ strpreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- app
Location String - The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
- app
Service Property MapPlan Configuration - App service plan configuration
- identity Property Map
- The managed service identities assigned to this resource.
- location String
- The geo-location where the resource lives
- log
Analytics StringWorkspace Arm Id - The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
- managed
Resource Property MapGroup Configuration - Managed resource group configuration
- monitor
Name String - Name of the SAP monitor resource.
- monitor
Subnet String - The subnet which the SAP monitor will be deployed in
- routing
Preference String | "Default" | "RouteAll" - Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
- Map<String>
- Resource tags.
- zone
Redundancy StringPreference - Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
Outputs
All input properties are implicitly available as output properties. Additionally, the Monitor resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Errors
Pulumi.
Azure Native. Workloads. Outputs. Error Detail Response - Defines the SAP monitor errors.
- Id string
- The provider-assigned unique ID for this managed resource.
- Msi
Arm stringId - The ARM ID of the MSI used for SAP monitoring.
- Name string
- The name of the resource
- Provisioning
State string - State of provisioning of the SAP monitor.
- Storage
Account stringArm Id - The ARM ID of the Storage account used for SAP monitoring.
- 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Errors
Error
Detail Response - Defines the SAP monitor errors.
- Id string
- The provider-assigned unique ID for this managed resource.
- Msi
Arm stringId - The ARM ID of the MSI used for SAP monitoring.
- Name string
- The name of the resource
- Provisioning
State string - State of provisioning of the SAP monitor.
- Storage
Account stringArm Id - The ARM ID of the Storage account used for SAP monitoring.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- errors
Error
Detail Response - Defines the SAP monitor errors.
- id String
- The provider-assigned unique ID for this managed resource.
- msi
Arm StringId - The ARM ID of the MSI used for SAP monitoring.
- name String
- The name of the resource
- provisioning
State String - State of provisioning of the SAP monitor.
- storage
Account StringArm Id - The ARM ID of the Storage account used for SAP monitoring.
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- errors
Error
Detail Response - Defines the SAP monitor errors.
- id string
- The provider-assigned unique ID for this managed resource.
- msi
Arm stringId - The ARM ID of the MSI used for SAP monitoring.
- name string
- The name of the resource
- provisioning
State string - State of provisioning of the SAP monitor.
- storage
Account stringArm Id - The ARM ID of the Storage account used for SAP monitoring.
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- errors
Error
Detail Response - Defines the SAP monitor errors.
- id str
- The provider-assigned unique ID for this managed resource.
- msi_
arm_ strid - The ARM ID of the MSI used for SAP monitoring.
- name str
- The name of the resource
- provisioning_
state str - State of provisioning of the SAP monitor.
- storage_
account_ strarm_ id - The ARM ID of the Storage account used for SAP monitoring.
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- errors Property Map
- Defines the SAP monitor errors.
- id String
- The provider-assigned unique ID for this managed resource.
- msi
Arm StringId - The ARM ID of the MSI used for SAP monitoring.
- name String
- The name of the resource
- provisioning
State String - State of provisioning of the SAP monitor.
- storage
Account StringArm Id - The ARM ID of the Storage account used for SAP monitoring.
- 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
AppServicePlanConfiguration, AppServicePlanConfigurationArgs
- Capacity int
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- Tier
string | Pulumi.
Azure Native. Workloads. App Service Plan Tier - The App Service plan tier.
- Capacity int
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- Tier
string | App
Service Plan Tier - The App Service plan tier.
- capacity Integer
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- tier
String | App
Service Plan Tier - The App Service plan tier.
- capacity number
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- tier
string | App
Service Plan Tier - The App Service plan tier.
- capacity int
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- tier
str | App
Service Plan Tier - The App Service plan tier.
- capacity Number
- The number of workers in app service plan. If this is not set or set to 0, auto scale will be configured for the app service plan, otherwise, instance count is set to this number.
- tier
String | "Elastic
Premium" | "Premium V3" - The App Service plan tier.
AppServicePlanConfigurationResponse, AppServicePlanConfigurationResponseArgs
AppServicePlanTier, AppServicePlanTierArgs
- Elastic
Premium - ElasticPremiumElastic Premium plan
- Premium
V3 - PremiumV3Dedicated Premium V3 plan
- App
Service Plan Tier Elastic Premium - ElasticPremiumElastic Premium plan
- App
Service Plan Tier Premium V3 - PremiumV3Dedicated Premium V3 plan
- Elastic
Premium - ElasticPremiumElastic Premium plan
- Premium
V3 - PremiumV3Dedicated Premium V3 plan
- Elastic
Premium - ElasticPremiumElastic Premium plan
- Premium
V3 - PremiumV3Dedicated Premium V3 plan
- ELASTIC_PREMIUM
- ElasticPremiumElastic Premium plan
- PREMIUM_V3
- PremiumV3Dedicated Premium V3 plan
- "Elastic
Premium" - ElasticPremiumElastic Premium plan
- "Premium
V3" - PremiumV3Dedicated Premium V3 plan
ErrorAdditionalInfoResponse, ErrorAdditionalInfoResponseArgs
ErrorDetailResponse, ErrorDetailResponseArgs
- Additional
Info List<Pulumi.Azure Native. Workloads. Inputs. Error Additional Info Response> - The error additional info.
- Code string
- The error code.
- Details
List<Pulumi.
Azure Native. Workloads. Inputs. Error Detail Response> - The error details.
- Message string
- The error message.
- Target string
- The error target.
- Additional
Info []ErrorAdditional Info Response - The error additional info.
- Code string
- The error code.
- Details
[]Error
Detail Response - The error details.
- Message string
- The error message.
- Target string
- The error target.
- additional
Info List<ErrorAdditional Info Response> - The error additional info.
- code String
- The error code.
- details
List<Error
Detail Response> - The error details.
- message String
- The error message.
- target String
- The error target.
- additional
Info ErrorAdditional Info Response[] - The error additional info.
- code string
- The error code.
- details
Error
Detail Response[] - The error details.
- message string
- The error message.
- target string
- The error target.
- additional_
info Sequence[ErrorAdditional Info Response] - The error additional info.
- code str
- The error code.
- details
Sequence[Error
Detail Response] - The error details.
- message str
- The error message.
- target str
- The error target.
- additional
Info List<Property Map> - The error additional info.
- code String
- The error code.
- details List<Property Map>
- The error details.
- message String
- The error message.
- target String
- The error target.
ManagedResourceGroupConfiguration, ManagedResourceGroupConfigurationArgs
- Name string
- Managed resource group name
- Name string
- Managed resource group name
- name String
- Managed resource group name
- name string
- Managed resource group name
- name str
- Managed resource group name
- name String
- Managed resource group name
ManagedResourceGroupConfigurationResponse, ManagedResourceGroupConfigurationResponseArgs
- Name string
- Managed resource group name
- Name string
- Managed resource group name
- name String
- Managed resource group name
- name string
- Managed resource group name
- name str
- Managed resource group name
- name String
- Managed resource group name
ManagedServiceIdentity, ManagedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Workloads. Managed Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned List<string>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned []stringIdentities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
string | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned string[]Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
str | Managed
Service Identity Type - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Sequence[str]identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned List<String>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Workloads. Inputs. User Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- Principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- Type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- User
Assigned map[string]UserIdentities Assigned Identity Response - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id string - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id string - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type string
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal_
id str - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant_
id str - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type str
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
- principal
Id String - The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
- tenant
Id String - The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
- type String
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user
Assigned Map<Property Map>Identities - The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type System Assigned - SystemAssigned
- Managed
Service Identity Type User Assigned - UserAssigned
- Managed
Service Identity Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
RoutingPreference, RoutingPreferenceArgs
- Default
- DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- Route
All - RouteAllRoute all traffic to the customer VNET.
- Routing
Preference Default - DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- Routing
Preference Route All - RouteAllRoute all traffic to the customer VNET.
- Default
- DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- Route
All - RouteAllRoute all traffic to the customer VNET.
- Default
- DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- Route
All - RouteAllRoute all traffic to the customer VNET.
- DEFAULT
- DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- ROUTE_ALL
- RouteAllRoute all traffic to the customer VNET.
- "Default"
- DefaultDefault routing preference. Only RFC1918 traffic is routed to the customer VNET.
- "Route
All" - RouteAllRoute all traffic to the customer VNET.
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:workloads:Monitor mySapMonitor /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Workloads/monitors/{monitorName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0