azure-native.elastic.Monitor
Explore with Pulumi AI
Monitor resource. Azure REST API version: 2023-06-01. Prior API version in Azure Native 1.x: 2020-07-01.
Other available API versions: 2023-06-15-preview, 2023-07-01-preview, 2023-10-01-preview, 2023-11-01-preview, 2024-01-01-preview, 2024-03-01, 2024-05-01-preview, 2024-06-15-preview, 2024-10-01-preview.
Example Usage
Monitors_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var monitor = new AzureNative.Elastic.Monitor("monitor", new()
    {
        MonitorName = "myMonitor",
        ResourceGroupName = "myResourceGroup",
    });
});
package main
import (
	elastic "github.com/pulumi/pulumi-azure-native-sdk/elastic/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := elastic.NewMonitor(ctx, "monitor", &elastic.MonitorArgs{
			MonitorName:       pulumi.String("myMonitor"),
			ResourceGroupName: pulumi.String("myResourceGroup"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.elastic.Monitor;
import com.pulumi.azurenative.elastic.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()
            .monitorName("myMonitor")
            .resourceGroupName("myResourceGroup")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const monitor = new azure_native.elastic.Monitor("monitor", {
    monitorName: "myMonitor",
    resourceGroupName: "myResourceGroup",
});
import pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.elastic.Monitor("monitor",
    monitor_name="myMonitor",
    resource_group_name="myResourceGroup")
resources:
  monitor:
    type: azure-native:elastic:Monitor
    properties:
      monitorName: myMonitor
      resourceGroupName: myResourceGroup
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,
            identity: Optional[IdentityPropertiesArgs] = None,
            location: Optional[str] = None,
            monitor_name: Optional[str] = None,
            properties: Optional[MonitorPropertiesArgs] = None,
            sku: Optional[ResourceSkuArgs] = None,
            tags: Optional[Mapping[str, 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:elastic: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.Elastic.Monitor("azure-nativeMonitorResource", new()
{
    ResourceGroupName = "string",
    Identity = new AzureNative.Elastic.Inputs.IdentityPropertiesArgs
    {
        Type = "string",
    },
    Location = "string",
    MonitorName = "string",
    Properties = new AzureNative.Elastic.Inputs.MonitorPropertiesArgs
    {
        GenerateApiKey = false,
        MonitoringStatus = "string",
        ProvisioningState = "string",
        UserInfo = new AzureNative.Elastic.Inputs.UserInfoArgs
        {
            CompanyInfo = new AzureNative.Elastic.Inputs.CompanyInfoArgs
            {
                Business = "string",
                Country = "string",
                Domain = "string",
                EmployeesNumber = "string",
                State = "string",
            },
            CompanyName = "string",
            EmailAddress = "string",
            FirstName = "string",
            LastName = "string",
        },
        Version = "string",
    },
    Sku = new AzureNative.Elastic.Inputs.ResourceSkuArgs
    {
        Name = "string",
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := elastic.NewMonitor(ctx, "azure-nativeMonitorResource", &elastic.MonitorArgs{
	ResourceGroupName: pulumi.String("string"),
	Identity: &elastic.IdentityPropertiesArgs{
		Type: pulumi.String("string"),
	},
	Location:    pulumi.String("string"),
	MonitorName: pulumi.String("string"),
	Properties: &elastic.MonitorPropertiesArgs{
		GenerateApiKey:    pulumi.Bool(false),
		MonitoringStatus:  pulumi.String("string"),
		ProvisioningState: pulumi.String("string"),
		UserInfo: &elastic.UserInfoArgs{
			CompanyInfo: &elastic.CompanyInfoArgs{
				Business:        pulumi.String("string"),
				Country:         pulumi.String("string"),
				Domain:          pulumi.String("string"),
				EmployeesNumber: pulumi.String("string"),
				State:           pulumi.String("string"),
			},
			CompanyName:  pulumi.String("string"),
			EmailAddress: pulumi.String("string"),
			FirstName:    pulumi.String("string"),
			LastName:     pulumi.String("string"),
		},
		Version: pulumi.String("string"),
	},
	Sku: &elastic.ResourceSkuArgs{
		Name: pulumi.String("string"),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var azure_nativeMonitorResource = new Monitor("azure-nativeMonitorResource", MonitorArgs.builder()
    .resourceGroupName("string")
    .identity(IdentityPropertiesArgs.builder()
        .type("string")
        .build())
    .location("string")
    .monitorName("string")
    .properties(MonitorPropertiesArgs.builder()
        .generateApiKey(false)
        .monitoringStatus("string")
        .provisioningState("string")
        .userInfo(UserInfoArgs.builder()
            .companyInfo(CompanyInfoArgs.builder()
                .business("string")
                .country("string")
                .domain("string")
                .employeesNumber("string")
                .state("string")
                .build())
            .companyName("string")
            .emailAddress("string")
            .firstName("string")
            .lastName("string")
            .build())
        .version("string")
        .build())
    .sku(ResourceSkuArgs.builder()
        .name("string")
        .build())
    .tags(Map.of("string", "string"))
    .build());
azure_native_monitor_resource = azure_native.elastic.Monitor("azure-nativeMonitorResource",
    resource_group_name="string",
    identity={
        "type": "string",
    },
    location="string",
    monitor_name="string",
    properties={
        "generate_api_key": False,
        "monitoring_status": "string",
        "provisioning_state": "string",
        "user_info": {
            "company_info": {
                "business": "string",
                "country": "string",
                "domain": "string",
                "employees_number": "string",
                "state": "string",
            },
            "company_name": "string",
            "email_address": "string",
            "first_name": "string",
            "last_name": "string",
        },
        "version": "string",
    },
    sku={
        "name": "string",
    },
    tags={
        "string": "string",
    })
const azure_nativeMonitorResource = new azure_native.elastic.Monitor("azure-nativeMonitorResource", {
    resourceGroupName: "string",
    identity: {
        type: "string",
    },
    location: "string",
    monitorName: "string",
    properties: {
        generateApiKey: false,
        monitoringStatus: "string",
        provisioningState: "string",
        userInfo: {
            companyInfo: {
                business: "string",
                country: "string",
                domain: "string",
                employeesNumber: "string",
                state: "string",
            },
            companyName: "string",
            emailAddress: "string",
            firstName: "string",
            lastName: "string",
        },
        version: "string",
    },
    sku: {
        name: "string",
    },
    tags: {
        string: "string",
    },
});
type: azure-native:elastic:Monitor
properties:
    identity:
        type: string
    location: string
    monitorName: string
    properties:
        generateApiKey: false
        monitoringStatus: string
        provisioningState: string
        userInfo:
            companyInfo:
                business: string
                country: string
                domain: string
                employeesNumber: string
                state: string
            companyName: string
            emailAddress: string
            firstName: string
            lastName: string
        version: string
    resourceGroupName: string
    sku:
        name: string
    tags:
        string: 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:
- ResourceGroup stringName 
- The name of the resource group to which the Elastic resource belongs.
- Identity
Pulumi.Azure Native. Elastic. Inputs. Identity Properties 
- Identity properties of the monitor resource.
- Location string
- The location of the monitor resource
- MonitorName string
- Monitor resource name
- Properties
Pulumi.Azure Native. Elastic. Inputs. Monitor Properties 
- Properties of the monitor resource.
- Sku
Pulumi.Azure Native. Elastic. Inputs. Resource Sku 
- SKU of the monitor resource.
- Dictionary<string, string>
- The tags of the monitor resource.
- ResourceGroup stringName 
- The name of the resource group to which the Elastic resource belongs.
- Identity
IdentityProperties Args 
- Identity properties of the monitor resource.
- Location string
- The location of the monitor resource
- MonitorName string
- Monitor resource name
- Properties
MonitorProperties Args 
- Properties of the monitor resource.
- Sku
ResourceSku Args 
- SKU of the monitor resource.
- map[string]string
- The tags of the monitor resource.
- resourceGroup StringName 
- The name of the resource group to which the Elastic resource belongs.
- identity
IdentityProperties 
- Identity properties of the monitor resource.
- location String
- The location of the monitor resource
- monitorName String
- Monitor resource name
- properties
MonitorProperties 
- Properties of the monitor resource.
- sku
ResourceSku 
- SKU of the monitor resource.
- Map<String,String>
- The tags of the monitor resource.
- resourceGroup stringName 
- The name of the resource group to which the Elastic resource belongs.
- identity
IdentityProperties 
- Identity properties of the monitor resource.
- location string
- The location of the monitor resource
- monitorName string
- Monitor resource name
- properties
MonitorProperties 
- Properties of the monitor resource.
- sku
ResourceSku 
- SKU of the monitor resource.
- {[key: string]: string}
- The tags of the monitor resource.
- resource_group_ strname 
- The name of the resource group to which the Elastic resource belongs.
- identity
IdentityProperties Args 
- Identity properties of the monitor resource.
- location str
- The location of the monitor resource
- monitor_name str
- Monitor resource name
- properties
MonitorProperties Args 
- Properties of the monitor resource.
- sku
ResourceSku Args 
- SKU of the monitor resource.
- Mapping[str, str]
- The tags of the monitor resource.
- resourceGroup StringName 
- The name of the resource group to which the Elastic resource belongs.
- identity Property Map
- Identity properties of the monitor resource.
- location String
- The location of the monitor resource
- monitorName String
- Monitor resource name
- properties Property Map
- Properties of the monitor resource.
- sku Property Map
- SKU of the monitor resource.
- Map<String>
- The tags of the monitor resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Monitor resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the monitor resource.
- SystemData Pulumi.Azure Native. Elastic. Outputs. System Data Response 
- The system metadata relating to this resource
- Type string
- The type of the monitor resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the monitor resource.
- SystemData SystemData Response 
- The system metadata relating to this resource
- Type string
- The type of the monitor resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the monitor resource.
- systemData SystemData Response 
- The system metadata relating to this resource
- type String
- The type of the monitor resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the monitor resource.
- systemData SystemData Response 
- The system metadata relating to this resource
- type string
- The type of the monitor resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the monitor resource.
- system_data SystemData Response 
- The system metadata relating to this resource
- type str
- The type of the monitor resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the monitor resource.
- systemData Property Map
- The system metadata relating to this resource
- type String
- The type of the monitor resource.
Supporting Types
CompanyInfo, CompanyInfoArgs    
- Business string
- Business of the company
- Country string
- Country of the company location.
- Domain string
- Domain of the company
- EmployeesNumber string
- Number of employees in the company
- State string
- State of the company location.
- Business string
- Business of the company
- Country string
- Country of the company location.
- Domain string
- Domain of the company
- EmployeesNumber string
- Number of employees in the company
- State string
- State of the company location.
- business String
- Business of the company
- country String
- Country of the company location.
- domain String
- Domain of the company
- employeesNumber String
- Number of employees in the company
- state String
- State of the company location.
- business string
- Business of the company
- country string
- Country of the company location.
- domain string
- Domain of the company
- employeesNumber string
- Number of employees in the company
- state string
- State of the company location.
- business str
- Business of the company
- country str
- Country of the company location.
- domain str
- Domain of the company
- employees_number str
- Number of employees in the company
- state str
- State of the company location.
- business String
- Business of the company
- country String
- Country of the company location.
- domain String
- Domain of the company
- employeesNumber String
- Number of employees in the company
- state String
- State of the company location.
ElasticCloudDeploymentResponse, ElasticCloudDeploymentResponseArgs        
- AzureSubscription stringId 
- Associated Azure subscription Id for the elastic deployment.
- DeploymentId string
- Elastic deployment Id
- ElasticsearchRegion string
- Region where Deployment at Elastic side took place.
- ElasticsearchService stringUrl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- KibanaService stringUrl 
- Kibana endpoint of the Elastic deployment.
- KibanaSso stringUrl 
- Kibana dashboard sso URL of the Elastic deployment.
- Name string
- Elastic deployment name
- AzureSubscription stringId 
- Associated Azure subscription Id for the elastic deployment.
- DeploymentId string
- Elastic deployment Id
- ElasticsearchRegion string
- Region where Deployment at Elastic side took place.
- ElasticsearchService stringUrl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- KibanaService stringUrl 
- Kibana endpoint of the Elastic deployment.
- KibanaSso stringUrl 
- Kibana dashboard sso URL of the Elastic deployment.
- Name string
- Elastic deployment name
- azureSubscription StringId 
- Associated Azure subscription Id for the elastic deployment.
- deploymentId String
- Elastic deployment Id
- elasticsearchRegion String
- Region where Deployment at Elastic side took place.
- elasticsearchService StringUrl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- kibanaService StringUrl 
- Kibana endpoint of the Elastic deployment.
- kibanaSso StringUrl 
- Kibana dashboard sso URL of the Elastic deployment.
- name String
- Elastic deployment name
- azureSubscription stringId 
- Associated Azure subscription Id for the elastic deployment.
- deploymentId string
- Elastic deployment Id
- elasticsearchRegion string
- Region where Deployment at Elastic side took place.
- elasticsearchService stringUrl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- kibanaService stringUrl 
- Kibana endpoint of the Elastic deployment.
- kibanaSso stringUrl 
- Kibana dashboard sso URL of the Elastic deployment.
- name string
- Elastic deployment name
- azure_subscription_ strid 
- Associated Azure subscription Id for the elastic deployment.
- deployment_id str
- Elastic deployment Id
- elasticsearch_region str
- Region where Deployment at Elastic side took place.
- elasticsearch_service_ strurl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana_service_ strurl 
- Kibana endpoint of the Elastic deployment.
- kibana_sso_ strurl 
- Kibana dashboard sso URL of the Elastic deployment.
- name str
- Elastic deployment name
- azureSubscription StringId 
- Associated Azure subscription Id for the elastic deployment.
- deploymentId String
- Elastic deployment Id
- elasticsearchRegion String
- Region where Deployment at Elastic side took place.
- elasticsearchService StringUrl 
- Elasticsearch ingestion endpoint of the Elastic deployment.
- kibanaService StringUrl 
- Kibana endpoint of the Elastic deployment.
- kibanaSso StringUrl 
- Kibana dashboard sso URL of the Elastic deployment.
- name String
- Elastic deployment name
ElasticCloudUserResponse, ElasticCloudUserResponseArgs        
- ElasticCloud stringSso Default Url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- EmailAddress string
- Email of the Elastic User Account.
- Id string
- User Id of the elastic account of the User.
- ElasticCloud stringSso Default Url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- EmailAddress string
- Email of the Elastic User Account.
- Id string
- User Id of the elastic account of the User.
- elasticCloud StringSso Default Url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- emailAddress String
- Email of the Elastic User Account.
- id String
- User Id of the elastic account of the User.
- elasticCloud stringSso Default Url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- emailAddress string
- Email of the Elastic User Account.
- id string
- User Id of the elastic account of the User.
- elastic_cloud_ strsso_ default_ url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- email_address str
- Email of the Elastic User Account.
- id str
- User Id of the elastic account of the User.
- elasticCloud StringSso Default Url 
- Elastic cloud default dashboard sso URL of the Elastic user account.
- emailAddress String
- Email of the Elastic User Account.
- id String
- User Id of the elastic account of the User.
ElasticPropertiesResponse, ElasticPropertiesResponseArgs      
- ElasticCloud Pulumi.Deployment Azure Native. Elastic. Inputs. Elastic Cloud Deployment Response 
- Details of the elastic cloud deployment.
- ElasticCloud Pulumi.User Azure Native. Elastic. Inputs. Elastic Cloud User Response 
- Details of the user's elastic account.
- ElasticCloud ElasticDeployment Cloud Deployment Response 
- Details of the elastic cloud deployment.
- ElasticCloud ElasticUser Cloud User Response 
- Details of the user's elastic account.
- elasticCloud ElasticDeployment Cloud Deployment Response 
- Details of the elastic cloud deployment.
- elasticCloud ElasticUser Cloud User Response 
- Details of the user's elastic account.
- elasticCloud ElasticDeployment Cloud Deployment Response 
- Details of the elastic cloud deployment.
- elasticCloud ElasticUser Cloud User Response 
- Details of the user's elastic account.
- elastic_cloud_ Elasticdeployment Cloud Deployment Response 
- Details of the elastic cloud deployment.
- elastic_cloud_ Elasticuser Cloud User Response 
- Details of the user's elastic account.
- elasticCloud Property MapDeployment 
- Details of the elastic cloud deployment.
- elasticCloud Property MapUser 
- Details of the user's elastic account.
IdentityProperties, IdentityPropertiesArgs    
- Type
string | Pulumi.Azure Native. Elastic. Managed Identity Types 
- Managed identity type.
- Type
string | ManagedIdentity Types 
- Managed identity type.
- type
String | ManagedIdentity Types 
- Managed identity type.
- type
string | ManagedIdentity Types 
- Managed identity type.
- type
str | ManagedIdentity Types 
- Managed identity type.
- type
String | "SystemAssigned" 
- Managed identity type.
IdentityPropertiesResponse, IdentityPropertiesResponseArgs      
- PrincipalId string
- The identity ID.
- TenantId string
- The tenant ID of resource.
- Type string
- Managed identity type.
- PrincipalId string
- The identity ID.
- TenantId string
- The tenant ID of resource.
- Type string
- Managed identity type.
- principalId String
- The identity ID.
- tenantId String
- The tenant ID of resource.
- type String
- Managed identity type.
- principalId string
- The identity ID.
- tenantId string
- The tenant ID of resource.
- type string
- Managed identity type.
- principal_id str
- The identity ID.
- tenant_id str
- The tenant ID of resource.
- type str
- Managed identity type.
- principalId String
- The identity ID.
- tenantId String
- The tenant ID of resource.
- type String
- Managed identity type.
ManagedIdentityTypes, ManagedIdentityTypesArgs      
- SystemAssigned 
- SystemAssigned
- ManagedIdentity Types System Assigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SystemAssigned 
- SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "SystemAssigned" 
- SystemAssigned
MonitorProperties, MonitorPropertiesArgs    
- GenerateApi boolKey 
- Flag to determine if User API Key has to be generated and shared.
- MonitoringStatus string | Pulumi.Azure Native. Elastic. Monitoring Status 
- Flag specifying if the resource monitoring is enabled or disabled.
- ProvisioningState string | Pulumi.Azure Native. Elastic. Provisioning State 
- Provisioning state of the monitor resource.
- UserInfo Pulumi.Azure Native. Elastic. Inputs. User Info 
- User information.
- Version string
- Version of elastic of the monitor resource
- GenerateApi boolKey 
- Flag to determine if User API Key has to be generated and shared.
- MonitoringStatus string | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- ProvisioningState string | ProvisioningState 
- Provisioning state of the monitor resource.
- UserInfo UserInfo 
- User information.
- Version string
- Version of elastic of the monitor resource
- generateApi BooleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus String | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState String | ProvisioningState 
- Provisioning state of the monitor resource.
- userInfo UserInfo 
- User information.
- version String
- Version of elastic of the monitor resource
- generateApi booleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus string | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState string | ProvisioningState 
- Provisioning state of the monitor resource.
- userInfo UserInfo 
- User information.
- version string
- Version of elastic of the monitor resource
- generate_api_ boolkey 
- Flag to determine if User API Key has to be generated and shared.
- monitoring_status str | MonitoringStatus 
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioning_state str | ProvisioningState 
- Provisioning state of the monitor resource.
- user_info UserInfo 
- User information.
- version str
- Version of elastic of the monitor resource
- generateApi BooleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus String | "Enabled" | "Disabled"
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState String | "Accepted" | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Failed" | "Canceled" | "Deleted" | "NotSpecified" 
- Provisioning state of the monitor resource.
- userInfo Property Map
- User information.
- version String
- Version of elastic of the monitor resource
MonitorPropertiesResponse, MonitorPropertiesResponseArgs      
- LiftrResource stringCategory 
- LiftrResource intPreference 
- The priority of the resource.
- ElasticProperties Pulumi.Azure Native. Elastic. Inputs. Elastic Properties Response 
- Elastic cloud properties.
- GenerateApi boolKey 
- Flag to determine if User API Key has to be generated and shared.
- MonitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- ProvisioningState string
- Provisioning state of the monitor resource.
- Version string
- Version of elastic of the monitor resource
- LiftrResource stringCategory 
- LiftrResource intPreference 
- The priority of the resource.
- ElasticProperties ElasticProperties Response 
- Elastic cloud properties.
- GenerateApi boolKey 
- Flag to determine if User API Key has to be generated and shared.
- MonitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- ProvisioningState string
- Provisioning state of the monitor resource.
- Version string
- Version of elastic of the monitor resource
- liftrResource StringCategory 
- liftrResource IntegerPreference 
- The priority of the resource.
- elasticProperties ElasticProperties Response 
- Elastic cloud properties.
- generateApi BooleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus String
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState String
- Provisioning state of the monitor resource.
- version String
- Version of elastic of the monitor resource
- liftrResource stringCategory 
- liftrResource numberPreference 
- The priority of the resource.
- elasticProperties ElasticProperties Response 
- Elastic cloud properties.
- generateApi booleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus string
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState string
- Provisioning state of the monitor resource.
- version string
- Version of elastic of the monitor resource
- liftr_resource_ strcategory 
- liftr_resource_ intpreference 
- The priority of the resource.
- elastic_properties ElasticProperties Response 
- Elastic cloud properties.
- generate_api_ boolkey 
- Flag to determine if User API Key has to be generated and shared.
- monitoring_status str
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioning_state str
- Provisioning state of the monitor resource.
- version str
- Version of elastic of the monitor resource
- liftrResource StringCategory 
- liftrResource NumberPreference 
- The priority of the resource.
- elasticProperties Property Map
- Elastic cloud properties.
- generateApi BooleanKey 
- Flag to determine if User API Key has to be generated and shared.
- monitoringStatus String
- Flag specifying if the resource monitoring is enabled or disabled.
- provisioningState String
- Provisioning state of the monitor resource.
- version String
- Version of elastic of the monitor resource
MonitoringStatus, MonitoringStatusArgs    
- Enabled
- Enabled
- Disabled
- Disabled
- MonitoringStatus Enabled 
- Enabled
- MonitoringStatus Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
ProvisioningState, ProvisioningStateArgs    
- Accepted
- Accepted
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Deleted
- Deleted
- NotSpecified 
- NotSpecified
- ProvisioningState Accepted 
- Accepted
- ProvisioningState Creating 
- Creating
- ProvisioningState Updating 
- Updating
- ProvisioningState Deleting 
- Deleting
- ProvisioningState Succeeded 
- Succeeded
- ProvisioningState Failed 
- Failed
- ProvisioningState Canceled 
- Canceled
- ProvisioningState Deleted 
- Deleted
- ProvisioningState Not Specified 
- NotSpecified
- Accepted
- Accepted
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Deleted
- Deleted
- NotSpecified 
- NotSpecified
- Accepted
- Accepted
- Creating
- Creating
- Updating
- Updating
- Deleting
- Deleting
- Succeeded
- Succeeded
- Failed
- Failed
- Canceled
- Canceled
- Deleted
- Deleted
- NotSpecified 
- NotSpecified
- ACCEPTED
- Accepted
- CREATING
- Creating
- UPDATING
- Updating
- DELETING
- Deleting
- SUCCEEDED
- Succeeded
- FAILED
- Failed
- CANCELED
- Canceled
- DELETED
- Deleted
- NOT_SPECIFIED
- NotSpecified
- "Accepted"
- Accepted
- "Creating"
- Creating
- "Updating"
- Updating
- "Deleting"
- Deleting
- "Succeeded"
- Succeeded
- "Failed"
- Failed
- "Canceled"
- Canceled
- "Deleted"
- Deleted
- "NotSpecified" 
- NotSpecified
ResourceSku, ResourceSkuArgs    
- Name string
- Name of the SKU.
- Name string
- Name of the SKU.
- name String
- Name of the SKU.
- name string
- Name of the SKU.
- name str
- Name of the SKU.
- name String
- Name of the SKU.
ResourceSkuResponse, ResourceSkuResponseArgs      
- Name string
- Name of the SKU.
- Name string
- Name of the SKU.
- name String
- Name of the SKU.
- name string
- Name of the SKU.
- name str
- Name of the SKU.
- name String
- Name of the SKU.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
UserInfo, UserInfoArgs    
- CompanyInfo Pulumi.Azure Native. Elastic. Inputs. Company Info 
- Company information of the user to be passed to partners.
- CompanyName string
- Company name of the user
- EmailAddress string
- Email of the user used by Elastic for contacting them if needed
- FirstName string
- First name of the user
- LastName string
- Last name of the user
- CompanyInfo CompanyInfo 
- Company information of the user to be passed to partners.
- CompanyName string
- Company name of the user
- EmailAddress string
- Email of the user used by Elastic for contacting them if needed
- FirstName string
- First name of the user
- LastName string
- Last name of the user
- companyInfo CompanyInfo 
- Company information of the user to be passed to partners.
- companyName String
- Company name of the user
- emailAddress String
- Email of the user used by Elastic for contacting them if needed
- firstName String
- First name of the user
- lastName String
- Last name of the user
- companyInfo CompanyInfo 
- Company information of the user to be passed to partners.
- companyName string
- Company name of the user
- emailAddress string
- Email of the user used by Elastic for contacting them if needed
- firstName string
- First name of the user
- lastName string
- Last name of the user
- company_info CompanyInfo 
- Company information of the user to be passed to partners.
- company_name str
- Company name of the user
- email_address str
- Email of the user used by Elastic for contacting them if needed
- first_name str
- First name of the user
- last_name str
- Last name of the user
- companyInfo Property Map
- Company information of the user to be passed to partners.
- companyName String
- Company name of the user
- emailAddress String
- Email of the user used by Elastic for contacting them if needed
- firstName String
- First name of the user
- lastName String
- Last name of the user
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:elastic:Monitor myMonitor /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Elastic/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