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.
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 pulumi
import pulumi_azure_native as azure_native
monitor = azure_native.elastic.Monitor("monitor",
monitor_name="myMonitor",
resource_group_name="myResourceGroup")
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",
});
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=azure_native.elastic.IdentityPropertiesArgs(
type="string",
),
location="string",
monitor_name="string",
properties=azure_native.elastic.MonitorPropertiesArgs(
generate_api_key=False,
monitoring_status="string",
provisioning_state="string",
user_info=azure_native.elastic.UserInfoArgs(
company_info=azure_native.elastic.CompanyInfoArgs(
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=azure_native.elastic.ResourceSkuArgs(
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
The Monitor resource accepts the following input properties:
- Resource
Group 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
- Monitor
Name 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.
- Resource
Group stringName - The name of the resource group to which the Elastic resource belongs.
- Identity
Identity
Properties Args - Identity properties of the monitor resource.
- Location string
- The location of the monitor resource
- Monitor
Name string - Monitor resource name
- Properties
Monitor
Properties Args - Properties of the monitor resource.
- Sku
Resource
Sku Args - SKU of the monitor resource.
- map[string]string
- The tags of the monitor resource.
- resource
Group StringName - The name of the resource group to which the Elastic resource belongs.
- identity
Identity
Properties - Identity properties of the monitor resource.
- location String
- The location of the monitor resource
- monitor
Name String - Monitor resource name
- properties
Monitor
Properties - Properties of the monitor resource.
- sku
Resource
Sku - SKU of the monitor resource.
- Map<String,String>
- The tags of the monitor resource.
- resource
Group stringName - The name of the resource group to which the Elastic resource belongs.
- identity
Identity
Properties - Identity properties of the monitor resource.
- location string
- The location of the monitor resource
- monitor
Name string - Monitor resource name
- properties
Monitor
Properties - Properties of the monitor resource.
- sku
Resource
Sku - 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
Identity
Properties Args - Identity properties of the monitor resource.
- location str
- The location of the monitor resource
- monitor_
name str - Monitor resource name
- properties
Monitor
Properties Args - Properties of the monitor resource.
- sku
Resource
Sku Args - SKU of the monitor resource.
- Mapping[str, str]
- The tags of the monitor resource.
- resource
Group 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
- monitor
Name 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.
- System
Data 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.
- System
Data 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.
- system
Data 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.
- system
Data 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.
- system
Data 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
- Employees
Number 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
- Employees
Number 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
- employees
Number 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
- employees
Number 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
- employees
Number String - Number of employees in the company
- state String
- State of the company location.
ElasticCloudDeploymentResponse, ElasticCloudDeploymentResponseArgs
- Azure
Subscription stringId - Associated Azure subscription Id for the elastic deployment.
- Deployment
Id string - Elastic deployment Id
- Elasticsearch
Region string - Region where Deployment at Elastic side took place.
- Elasticsearch
Service stringUrl - Elasticsearch ingestion endpoint of the Elastic deployment.
- Kibana
Service stringUrl - Kibana endpoint of the Elastic deployment.
- Kibana
Sso stringUrl - Kibana dashboard sso URL of the Elastic deployment.
- Name string
- Elastic deployment name
- Azure
Subscription stringId - Associated Azure subscription Id for the elastic deployment.
- Deployment
Id string - Elastic deployment Id
- Elasticsearch
Region string - Region where Deployment at Elastic side took place.
- Elasticsearch
Service stringUrl - Elasticsearch ingestion endpoint of the Elastic deployment.
- Kibana
Service stringUrl - Kibana endpoint of the Elastic deployment.
- Kibana
Sso stringUrl - Kibana dashboard sso URL of the Elastic deployment.
- Name string
- Elastic deployment name
- azure
Subscription StringId - Associated Azure subscription Id for the elastic deployment.
- deployment
Id String - Elastic deployment Id
- elasticsearch
Region String - Region where Deployment at Elastic side took place.
- elasticsearch
Service StringUrl - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service StringUrl - Kibana endpoint of the Elastic deployment.
- kibana
Sso StringUrl - Kibana dashboard sso URL of the Elastic deployment.
- name String
- Elastic deployment name
- azure
Subscription stringId - Associated Azure subscription Id for the elastic deployment.
- deployment
Id string - Elastic deployment Id
- elasticsearch
Region string - Region where Deployment at Elastic side took place.
- elasticsearch
Service stringUrl - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service stringUrl - Kibana endpoint of the Elastic deployment.
- kibana
Sso 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
- azure
Subscription StringId - Associated Azure subscription Id for the elastic deployment.
- deployment
Id String - Elastic deployment Id
- elasticsearch
Region String - Region where Deployment at Elastic side took place.
- elasticsearch
Service StringUrl - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service StringUrl - Kibana endpoint of the Elastic deployment.
- kibana
Sso StringUrl - Kibana dashboard sso URL of the Elastic deployment.
- name String
- Elastic deployment name
ElasticCloudUserResponse, ElasticCloudUserResponseArgs
- Elastic
Cloud stringSso Default Url - Elastic cloud default dashboard sso URL of the Elastic user account.
- Email
Address string - Email of the Elastic User Account.
- Id string
- User Id of the elastic account of the User.
- Elastic
Cloud stringSso Default Url - Elastic cloud default dashboard sso URL of the Elastic user account.
- Email
Address string - Email of the Elastic User Account.
- Id string
- User Id of the elastic account of the User.
- elastic
Cloud StringSso Default Url - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address String - Email of the Elastic User Account.
- id String
- User Id of the elastic account of the User.
- elastic
Cloud stringSso Default Url - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address 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.
- elastic
Cloud StringSso Default Url - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address String - Email of the Elastic User Account.
- id String
- User Id of the elastic account of the User.
ElasticPropertiesResponse, ElasticPropertiesResponseArgs
- Elastic
Cloud Pulumi.Deployment Azure Native. Elastic. Inputs. Elastic Cloud Deployment Response - Details of the elastic cloud deployment.
- Elastic
Cloud Pulumi.User Azure Native. Elastic. Inputs. Elastic 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.
- 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.
- 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.
- 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.
- elastic
Cloud Property MapDeployment - Details of the elastic cloud deployment.
- elastic
Cloud 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 | Managed
Identity Types - Managed identity type.
- type
String | Managed
Identity Types - Managed identity type.
- type
string | Managed
Identity Types - Managed identity type.
- type
str | Managed
Identity Types - Managed identity type.
- type
String | "System
Assigned" - Managed identity type.
IdentityPropertiesResponse, IdentityPropertiesResponseArgs
- Principal
Id string - The identity ID.
- Tenant
Id string - The tenant ID of resource.
- Type string
- Managed identity type.
- Principal
Id string - The identity ID.
- Tenant
Id string - The tenant ID of resource.
- Type string
- Managed identity type.
- principal
Id String - The identity ID.
- tenant
Id String - The tenant ID of resource.
- type String
- Managed identity type.
- principal
Id string - The identity ID.
- tenant
Id 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.
- principal
Id String - The identity ID.
- tenant
Id String - The tenant ID of resource.
- type String
- Managed identity type.
ManagedIdentityTypes, ManagedIdentityTypesArgs
- System
Assigned - SystemAssigned
- Managed
Identity Types System Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- System
Assigned - SystemAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- "System
Assigned" - SystemAssigned
MonitorProperties, MonitorPropertiesArgs
- Generate
Api boolKey - Flag to determine if User API Key has to be generated and shared.
- Monitoring
Status string | Pulumi.Azure Native. Elastic. Monitoring Status - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string | Pulumi.Azure Native. Elastic. Provisioning State - Provisioning state of the monitor resource.
- User
Info Pulumi.Azure Native. Elastic. Inputs. User Info - 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 string | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string | ProvisioningState - Provisioning state of the monitor resource.
- User
Info UserInfo - User information.
- Version string
- Version of elastic of the monitor resource
- generate
Api BooleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status String | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String | ProvisioningState - Provisioning state of the monitor resource.
- user
Info UserInfo - User information.
- version String
- Version of elastic of the monitor resource
- generate
Api booleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status string | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State string | ProvisioningState - Provisioning state of the monitor resource.
- user
Info 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
- generate
Api BooleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status String | "Enabled" | "Disabled" - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String | "Accepted" | "Creating" | "Updating" | "Deleting" | "Succeeded" | "Failed" | "Canceled" | "Deleted" | "NotSpecified" - Provisioning state of the monitor resource.
- user
Info Property Map - User information.
- version String
- Version of elastic of the monitor resource
MonitorPropertiesResponse, MonitorPropertiesResponseArgs
- Liftr
Resource stringCategory - Liftr
Resource intPreference - The priority of the resource.
- Elastic
Properties Pulumi.Azure Native. Elastic. Inputs. Elastic Properties Response - Elastic cloud properties.
- Generate
Api boolKey - Flag to determine if User API Key has to be generated and shared.
- Monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string - Provisioning state of the monitor resource.
- Version string
- Version of elastic of the monitor resource
- Liftr
Resource stringCategory - 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 string - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string - Provisioning state of the monitor resource.
- Version string
- Version of elastic of the monitor resource
- liftr
Resource StringCategory - liftr
Resource IntegerPreference - The priority of the resource.
- elastic
Properties ElasticProperties Response - Elastic cloud properties.
- generate
Api BooleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String - Provisioning state of the monitor resource.
- version String
- Version of elastic of the monitor resource
- liftr
Resource stringCategory - liftr
Resource numberPreference - The priority of the resource.
- elastic
Properties ElasticProperties Response - Elastic cloud properties.
- generate
Api booleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State 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
- liftr
Resource StringCategory - liftr
Resource NumberPreference - The priority of the resource.
- elastic
Properties Property Map - Elastic cloud properties.
- generate
Api BooleanKey - Flag to determine if User API Key has to be generated and shared.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String - Provisioning state of the monitor resource.
- version String
- Version of elastic of the monitor resource
MonitoringStatus, MonitoringStatusArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Monitoring
Status Enabled - Enabled
- Monitoring
Status 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
- Not
Specified - NotSpecified
- Provisioning
State Accepted - Accepted
- Provisioning
State Creating - Creating
- Provisioning
State Updating - Updating
- Provisioning
State Deleting - Deleting
- Provisioning
State Succeeded - Succeeded
- Provisioning
State Failed - Failed
- Provisioning
State Canceled - Canceled
- Provisioning
State Deleted - Deleted
- Provisioning
State Not Specified - 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
- Not
Specified - 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
- "Not
Specified" - 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
- 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.
UserInfo, UserInfoArgs
- Company
Info Pulumi.Azure Native. Elastic. Inputs. Company Info - Company information of the user to be passed to partners.
- Company
Name string - Company name of the user
- Email
Address string - Email of the user used by Elastic for contacting them if needed
- First
Name string - First name of the user
- Last
Name string - Last name of the user
- Company
Info CompanyInfo - Company information of the user to be passed to partners.
- Company
Name string - Company name of the user
- Email
Address string - Email of the user used by Elastic for contacting them if needed
- First
Name string - First name of the user
- Last
Name string - Last name of the user
- company
Info CompanyInfo - Company information of the user to be passed to partners.
- company
Name String - Company name of the user
- email
Address String - Email of the user used by Elastic for contacting them if needed
- first
Name String - First name of the user
- last
Name String - Last name of the user
- company
Info CompanyInfo - Company information of the user to be passed to partners.
- company
Name string - Company name of the user
- email
Address string - Email of the user used by Elastic for contacting them if needed
- first
Name string - First name of the user
- last
Name 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
- company
Info Property Map - Company information of the user to be passed to partners.
- company
Name String - Company name of the user
- email
Address String - Email of the user used by Elastic for contacting them if needed
- first
Name String - First name of the user
- last
Name 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