azure-native.workloads.Monitor
Explore with Pulumi AI
SAP monitor info on Azure (ARM properties and SAP monitor properties) API Version: 2021-12-01-preview.
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",
Location = "westus",
LogAnalyticsWorkspaceArmId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
ManagedResourceGroupConfiguration = new AzureNative.Workloads.Inputs.ManagedRGConfigurationArgs
{
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" },
},
});
});
package main
import (
workloads "github.com/pulumi/pulumi-azure-native-sdk/workloads"
"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"),
Location: pulumi.String("westus"),
LogAnalyticsWorkspaceArmId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace"),
ManagedResourceGroupConfiguration: &workloads.ManagedRGConfigurationArgs{
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("RouteAll"),
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 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")
.location("westus")
.logAnalyticsWorkspaceArmId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace")
.managedResourceGroupConfiguration(Map.of("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(Map.of("key", "value"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.workloads.Monitor("monitor",
app_location="westus",
location="westus",
log_analytics_workspace_arm_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/myResourceGroup/providers/microsoft.operationalinsights/workspaces/myWorkspace",
managed_resource_group_configuration=azure_native.workloads.ManagedRGConfigurationArgs(
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="RouteAll",
tags={
"key": "value",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const monitor = new azure_native.workloads.Monitor("monitor", {
appLocation: "westus",
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",
},
});
resources:
monitor:
type: azure-native:workloads:monitor
properties:
appLocation: westus
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,
identity: Optional[UserAssignedServiceIdentityArgs] = None,
location: Optional[str] = None,
log_analytics_workspace_arm_id: Optional[str] = None,
managed_resource_group_configuration: Optional[ManagedRGConfigurationArgs] = 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 azure_nativemonitorResource = new AzureNative.Workloads.Monitor("azure-nativemonitorResource", new()
{
ResourceGroupName = "string",
AppLocation = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
Location = "string",
LogAnalyticsWorkspaceArmId = "string",
ManagedResourceGroupConfiguration =
{
{ "name", "string" },
},
MonitorName = "string",
MonitorSubnet = "string",
RoutingPreference = "string",
Tags =
{
{ "string", "string" },
},
ZoneRedundancyPreference = "string",
});
example, err := workloads.NewMonitor(ctx, "azure-nativemonitorResource", &workloads.MonitorArgs{
ResourceGroupName: "string",
AppLocation: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
Location: "string",
LogAnalyticsWorkspaceArmId: "string",
ManagedResourceGroupConfiguration: map[string]interface{}{
"name": "string",
},
MonitorName: "string",
MonitorSubnet: "string",
RoutingPreference: "string",
Tags: map[string]interface{}{
"string": "string",
},
ZoneRedundancyPreference: "string",
})
var azure_nativemonitorResource = new Monitor("azure-nativemonitorResource", MonitorArgs.builder()
.resourceGroupName("string")
.appLocation("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.logAnalyticsWorkspaceArmId("string")
.managedResourceGroupConfiguration(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.monitorName("string")
.monitorSubnet("string")
.routingPreference("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.zoneRedundancyPreference("string")
.build());
azure_nativemonitor_resource = azure_native.workloads.Monitor("azure-nativemonitorResource",
resource_group_name=string,
app_location=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
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 azure_nativemonitorResource = new azure_native.workloads.Monitor("azure-nativemonitorResource", {
resourceGroupName: "string",
appLocation: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
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
identity:
type: string
userAssignedIdentities:
string: any
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
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.
- Identity
Pulumi.
Azure Native. Workloads. Inputs. User Assigned Service Identity - Managed service identity (user assigned identities)
- 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 RGConfiguration - 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.
- Identity
User
Assigned Service Identity Args - Managed service identity (user assigned identities)
- 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 RGConfiguration 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.
- identity
User
Assigned Service Identity - Managed service identity (user assigned identities)
- 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 RGConfiguration - 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.
- identity
User
Assigned Service Identity - Managed service identity (user assigned identities)
- 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 RGConfiguration - 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.
- identity
User
Assigned Service Identity Args - Managed service identity (user assigned identities)
- 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 RGConfiguration 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.
- identity Property Map
- Managed service identity (user assigned identities)
- 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:
- Errors
Pulumi.
Azure Native. Workloads. Outputs. Monitor Properties Response Errors - 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"
- Errors
Monitor
Properties Response Errors - 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"
- errors
Monitor
Properties Response Errors - 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"
- errors
Monitor
Properties Response Errors - 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"
- errors
Monitor
Properties Response Errors - 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"
- 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
ErrorResponse, ErrorResponseArgs
- Code string
- Server-defined set of error codes.
- Details
List<Pulumi.
Azure Native. Workloads. Inputs. Error Response> - Array of details about specific errors that led to this reported error.
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response Inner Error - Object containing more specific information than the current object about the error.
- Message string
- Human-readable representation of the error.
- Target string
- Target of the error.
- Code string
- Server-defined set of error codes.
- Details
[]Error
Response - Array of details about specific errors that led to this reported error.
- Inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- Message string
- Human-readable representation of the error.
- Target string
- Target of the error.
- code String
- Server-defined set of error codes.
- details
List<Error
Response> - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message String
- Human-readable representation of the error.
- target String
- Target of the error.
- code string
- Server-defined set of error codes.
- details
Error
Response[] - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message string
- Human-readable representation of the error.
- target string
- Target of the error.
- code str
- Server-defined set of error codes.
- details
Sequence[Error
Response] - Array of details about specific errors that led to this reported error.
- inner_
error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message str
- Human-readable representation of the error.
- target str
- Target of the error.
- code String
- Server-defined set of error codes.
- details List<Property Map>
- Array of details about specific errors that led to this reported error.
- inner
Error Property Map - Object containing more specific information than the current object about the error.
- message String
- Human-readable representation of the error.
- target String
- Target of the error.
ErrorResponseInnerError, ErrorResponseInnerErrorArgs
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response - Standard error object.
- Inner
Error ErrorResponse - Standard error object.
- inner
Error ErrorResponse - Standard error object.
- inner
Error ErrorResponse - Standard error object.
- inner_
error ErrorResponse - Standard error object.
- inner
Error Property Map - Standard error object.
ManagedRGConfiguration, ManagedRGConfigurationArgs
- 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
ManagedRGConfigurationResponse, ManagedRGConfigurationResponseArgs
- 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
ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs
- None
- None
- User
Assigned - UserAssigned
- Managed
Service Identity Type None - None
- Managed
Service Identity Type User Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- None
- None
- User
Assigned - UserAssigned
- NONE
- None
- USER_ASSIGNED
- UserAssigned
- "None"
- None
- "User
Assigned" - UserAssigned
MonitorPropertiesResponseErrors, MonitorPropertiesResponseErrorsArgs
- Code string
- Server-defined set of error codes.
- Details
List<Pulumi.
Azure Native. Workloads. Inputs. Error Response> - Array of details about specific errors that led to this reported error.
- Inner
Error Pulumi.Azure Native. Workloads. Inputs. Error Response Inner Error - Object containing more specific information than the current object about the error.
- Message string
- Human-readable representation of the error.
- Target string
- Target of the error.
- Code string
- Server-defined set of error codes.
- Details
[]Error
Response - Array of details about specific errors that led to this reported error.
- Inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- Message string
- Human-readable representation of the error.
- Target string
- Target of the error.
- code String
- Server-defined set of error codes.
- details
List<Error
Response> - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message String
- Human-readable representation of the error.
- target String
- Target of the error.
- code string
- Server-defined set of error codes.
- details
Error
Response[] - Array of details about specific errors that led to this reported error.
- inner
Error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message string
- Human-readable representation of the error.
- target string
- Target of the error.
- code str
- Server-defined set of error codes.
- details
Sequence[Error
Response] - Array of details about specific errors that led to this reported error.
- inner_
error ErrorResponse Inner Error - Object containing more specific information than the current object about the error.
- message str
- Human-readable representation of the error.
- target str
- Target of the error.
- code String
- Server-defined set of error codes.
- details List<Property Map>
- Array of details about specific errors that led to this reported error.
- inner
Error Property Map - Object containing more specific information than the current object about the error.
- message String
- Human-readable representation of the error.
- target String
- Target of the error.
RoutingPreference, RoutingPreferenceArgs
- Default
- Default
- Route
All - RouteAll
- Routing
Preference Default - Default
- Routing
Preference Route All - RouteAll
- Default
- Default
- Route
All - RouteAll
- Default
- Default
- Route
All - RouteAll
- DEFAULT
- Default
- ROUTE_ALL
- RouteAll
- "Default"
- Default
- "Route
All" - RouteAll
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- Client
Id string - The client ID of the assigned identity.
- Principal
Id string - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
- client
Id string - The client ID of the assigned identity.
- principal
Id string - The principal ID of the assigned identity.
- client_
id str - The client ID of the assigned identity.
- principal_
id str - The principal ID of the assigned identity.
- client
Id String - The client ID of the assigned identity.
- principal
Id String - The principal ID of the assigned identity.
UserAssignedServiceIdentity, UserAssignedServiceIdentityArgs
- Type
string | Pulumi.
Azure Native. Workloads. Managed Service Identity Type - Type of manage identity
- User
Assigned Dictionary<string, object>Identities - User assigned identities dictionary
- Type
string | Managed
Service Identity Type - Type of manage identity
- User
Assigned map[string]interface{}Identities - User assigned identities dictionary
- type
String | Managed
Service Identity Type - Type of manage identity
- user
Assigned Map<String,Object>Identities - User assigned identities dictionary
- type
string | Managed
Service Identity Type - Type of manage identity
- user
Assigned {[key: string]: any}Identities - User assigned identities dictionary
- type
str | Managed
Service Identity Type - Type of manage identity
- user_
assigned_ Mapping[str, Any]identities - User assigned identities dictionary
- type
String | "None" | "User
Assigned" - Type of manage identity
- user
Assigned Map<Any>Identities - User assigned identities dictionary
UserAssignedServiceIdentityResponse, UserAssignedServiceIdentityResponseArgs
- Type string
- Type of manage identity
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Workloads. Inputs. User Assigned Identity Response> - User assigned identities dictionary
- Type string
- Type of manage identity
- User
Assigned map[string]UserIdentities Assigned Identity Response - User assigned identities dictionary
- type String
- Type of manage identity
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - User assigned identities dictionary
- type string
- Type of manage identity
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - User assigned identities dictionary
- type str
- Type of manage identity
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - User assigned identities dictionary
- type String
- Type of manage identity
- user
Assigned Map<Property Map>Identities - User assigned identities dictionary
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:workloads:monitor mySapMonitor /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Workloads/monitors/mySapMonitor
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0