azure-native.elastic.Monitor
Explore with Pulumi AI
Monitor resource. API Version: 2020-07-01.
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
This property is required. string - The unique name of the resource.
- args
This property is required. MonitorArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. MonitorArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. MonitorArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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 =
{
{ "type", "string" },
},
Location = "string",
MonitorName = "string",
Properties =
{
{ "monitoringStatus", "string" },
{ "provisioningState", "string" },
{ "userInfo",
{
{ "companyInfo",
{
{ "business", "string" },
{ "country", "string" },
{ "domain", "string" },
{ "employeesNumber", "string" },
{ "state", "string" },
} },
{ "companyName", "string" },
{ "emailAddress", "string" },
{ "firstName", "string" },
{ "lastName", "string" },
} },
},
Sku =
{
{ "name", "string" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := elastic.NewMonitor(ctx, "azure-nativeMonitorResource", &elastic.MonitorArgs{
ResourceGroupName: "string",
Identity: map[string]interface{}{
"type": "string",
},
Location: "string",
MonitorName: "string",
Properties: map[string]interface{}{
"monitoringStatus": "string",
"provisioningState": "string",
"userInfo": map[string]interface{}{
"companyInfo": map[string]interface{}{
"business": "string",
"country": "string",
"domain": "string",
"employeesNumber": "string",
"state": "string",
},
"companyName": "string",
"emailAddress": "string",
"firstName": "string",
"lastName": "string",
},
},
Sku: map[string]interface{}{
"name": "string",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var azure_nativeMonitorResource = new Monitor("azure-nativeMonitorResource", MonitorArgs.builder()
.resourceGroupName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.location("string")
.monitorName("string")
.properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
azure_native_monitor_resource = azure_native.elastic.Monitor("azure-nativeMonitorResource",
resource_group_name=string,
identity={
type: string,
},
location=string,
monitor_name=string,
properties={
monitoringStatus: string,
provisioningState: string,
userInfo: {
companyInfo: {
business: string,
country: string,
domain: string,
employeesNumber: string,
state: string,
},
companyName: string,
emailAddress: string,
firstName: string,
lastName: 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: {
monitoringStatus: "string",
provisioningState: "string",
userInfo: {
companyInfo: {
business: "string",
country: "string",
domain: "string",
employeesNumber: "string",
state: "string",
},
companyName: "string",
emailAddress: "string",
firstName: "string",
lastName: "string",
},
},
sku: {
name: "string",
},
tags: {
string: "string",
},
});
type: azure-native:elastic:Monitor
properties:
identity:
type: string
location: string
monitorName: string
properties:
monitoringStatus: string
provisioningState: string
userInfo:
companyInfo:
business: string
country: string
domain: string
employeesNumber: string
state: string
companyName: string
emailAddress: string
firstName: string
lastName: 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:
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- 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
Changes to this property will trigger replacement.
- The location of the monitor resource
- Monitor
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group to which the Elastic resource belongs.
- Identity
Identity
Properties Args - Identity properties of the monitor resource.
- Location
Changes to this property will trigger replacement.
- The location of the monitor resource
- Monitor
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group to which the Elastic resource belongs.
- identity
Identity
Properties - Identity properties of the monitor resource.
- location
Changes to this property will trigger replacement.
- The location of the monitor resource
- monitor
Name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group to which the Elastic resource belongs.
- identity
Identity
Properties - Identity properties of the monitor resource.
- location
Changes to this property will trigger replacement.
- The location of the monitor resource
- monitor
Name Changes to this property will trigger replacement.
- 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_ name This property is required. Changes to this property will trigger replacement.
- The name of the resource group to which the Elastic resource belongs.
- identity
Identity
Properties Args - Identity properties of the monitor resource.
- location
Changes to this property will trigger replacement.
- The location of the monitor resource
- monitor_
name Changes to this property will trigger replacement.
- 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 Name This property is required. Changes to this property will trigger replacement.
- The name of the resource group to which the Elastic resource belongs.
- identity Property Map
- Identity properties of the monitor resource.
- location
Changes to this property will trigger replacement.
- The location of the monitor resource
- monitor
Name Changes to this property will trigger replacement.
- 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 Id This property is required. string - Associated Azure subscription Id for the elastic deployment.
- Deployment
Id This property is required. string - Elastic deployment Id
- Elasticsearch
Region This property is required. string - Region where Deployment at Elastic side took place.
- Elasticsearch
Service Url This property is required. string - Elasticsearch ingestion endpoint of the Elastic deployment.
- Kibana
Service Url This property is required. string - Kibana endpoint of the Elastic deployment.
- Kibana
Sso Url This property is required. string - Kibana dashboard sso URL of the Elastic deployment.
- Name
This property is required. string - Elastic deployment name
- Azure
Subscription Id This property is required. string - Associated Azure subscription Id for the elastic deployment.
- Deployment
Id This property is required. string - Elastic deployment Id
- Elasticsearch
Region This property is required. string - Region where Deployment at Elastic side took place.
- Elasticsearch
Service Url This property is required. string - Elasticsearch ingestion endpoint of the Elastic deployment.
- Kibana
Service Url This property is required. string - Kibana endpoint of the Elastic deployment.
- Kibana
Sso Url This property is required. string - Kibana dashboard sso URL of the Elastic deployment.
- Name
This property is required. string - Elastic deployment name
- azure
Subscription Id This property is required. String - Associated Azure subscription Id for the elastic deployment.
- deployment
Id This property is required. String - Elastic deployment Id
- elasticsearch
Region This property is required. String - Region where Deployment at Elastic side took place.
- elasticsearch
Service Url This property is required. String - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service Url This property is required. String - Kibana endpoint of the Elastic deployment.
- kibana
Sso Url This property is required. String - Kibana dashboard sso URL of the Elastic deployment.
- name
This property is required. String - Elastic deployment name
- azure
Subscription Id This property is required. string - Associated Azure subscription Id for the elastic deployment.
- deployment
Id This property is required. string - Elastic deployment Id
- elasticsearch
Region This property is required. string - Region where Deployment at Elastic side took place.
- elasticsearch
Service Url This property is required. string - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service Url This property is required. string - Kibana endpoint of the Elastic deployment.
- kibana
Sso Url This property is required. string - Kibana dashboard sso URL of the Elastic deployment.
- name
This property is required. string - Elastic deployment name
- azure_
subscription_ id This property is required. str - Associated Azure subscription Id for the elastic deployment.
- deployment_
id This property is required. str - Elastic deployment Id
- elasticsearch_
region This property is required. str - Region where Deployment at Elastic side took place.
- elasticsearch_
service_ url This property is required. str - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana_
service_ url This property is required. str - Kibana endpoint of the Elastic deployment.
- kibana_
sso_ url This property is required. str - Kibana dashboard sso URL of the Elastic deployment.
- name
This property is required. str - Elastic deployment name
- azure
Subscription Id This property is required. String - Associated Azure subscription Id for the elastic deployment.
- deployment
Id This property is required. String - Elastic deployment Id
- elasticsearch
Region This property is required. String - Region where Deployment at Elastic side took place.
- elasticsearch
Service Url This property is required. String - Elasticsearch ingestion endpoint of the Elastic deployment.
- kibana
Service Url This property is required. String - Kibana endpoint of the Elastic deployment.
- kibana
Sso Url This property is required. String - Kibana dashboard sso URL of the Elastic deployment.
- name
This property is required. String - Elastic deployment name
ElasticCloudUserResponse, ElasticCloudUserResponseArgs
- Elastic
Cloud Sso Default Url This property is required. string - Elastic cloud default dashboard sso URL of the Elastic user account.
- Email
Address This property is required. string - Email of the Elastic User Account.
- Id
This property is required. string - User Id of the elastic account of the User.
- Elastic
Cloud Sso Default Url This property is required. string - Elastic cloud default dashboard sso URL of the Elastic user account.
- Email
Address This property is required. string - Email of the Elastic User Account.
- Id
This property is required. string - User Id of the elastic account of the User.
- elastic
Cloud Sso Default Url This property is required. String - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address This property is required. String - Email of the Elastic User Account.
- id
This property is required. String - User Id of the elastic account of the User.
- elastic
Cloud Sso Default Url This property is required. string - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address This property is required. string - Email of the Elastic User Account.
- id
This property is required. string - User Id of the elastic account of the User.
- elastic_
cloud_ sso_ default_ url This property is required. str - Elastic cloud default dashboard sso URL of the Elastic user account.
- email_
address This property is required. str - Email of the Elastic User Account.
- id
This property is required. str - User Id of the elastic account of the User.
- elastic
Cloud Sso Default Url This property is required. String - Elastic cloud default dashboard sso URL of the Elastic user account.
- email
Address This property is required. String - Email of the Elastic User Account.
- id
This property is required. 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 This property is required. string - The identity ID.
- Tenant
Id This property is required. string - The tenant ID of resource.
- Type string
- Managed identity type.
- Principal
Id This property is required. string - The identity ID.
- Tenant
Id This property is required. string - The tenant ID of resource.
- Type string
- Managed identity type.
- principal
Id This property is required. String - The identity ID.
- tenant
Id This property is required. String - The tenant ID of resource.
- type String
- Managed identity type.
- principal
Id This property is required. string - The identity ID.
- tenant
Id This property is required. string - The tenant ID of resource.
- type string
- Managed identity type.
- principal_
id This property is required. str - The identity ID.
- tenant_
id This property is required. str - The tenant ID of resource.
- type str
- Managed identity type.
- principal
Id This property is required. String - The identity ID.
- tenant
Id This property is required. 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
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
MonitorPropertiesResponse, MonitorPropertiesResponseArgs
- Liftr
Resource Category This property is required. string - Liftr
Resource Preference This property is required. int - The priority of the resource.
- Elastic
Properties Pulumi.Azure Native. Elastic. Inputs. Elastic Properties Response - Elastic cloud properties.
- Monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string - Provisioning state of the monitor resource.
- Liftr
Resource Category This property is required. string - Liftr
Resource Preference This property is required. int - The priority of the resource.
- Elastic
Properties ElasticProperties Response - Elastic cloud properties.
- Monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- Provisioning
State string - Provisioning state of the monitor resource.
- liftr
Resource Category This property is required. String - liftr
Resource Preference This property is required. Integer - The priority of the resource.
- elastic
Properties ElasticProperties Response - Elastic cloud properties.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String - Provisioning state of the monitor resource.
- liftr
Resource Category This property is required. string - liftr
Resource Preference This property is required. number - The priority of the resource.
- elastic
Properties ElasticProperties Response - Elastic cloud properties.
- monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State string - Provisioning state of the monitor resource.
- liftr_
resource_ category This property is required. str - liftr_
resource_ preference This property is required. int - The priority of the resource.
- elastic_
properties ElasticProperties Response - Elastic cloud properties.
- monitoring_
status str - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning_
state str - Provisioning state of the monitor resource.
- liftr
Resource Category This property is required. String - liftr
Resource Preference This property is required. Number - The priority of the resource.
- elastic
Properties Property Map - Elastic cloud properties.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- provisioning
State String - Provisioning state 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
This property is required. string - Name of the SKU.
- Name
This property is required. string - Name of the SKU.
- name
This property is required. String - Name of the SKU.
- name
This property is required. string - Name of the SKU.
- name
This property is required. str - Name of the SKU.
- name
This property is required. String - Name of the SKU.
ResourceSkuResponse, ResourceSkuResponseArgs
- Name
This property is required. string - Name of the SKU.
- Name
This property is required. string - Name of the SKU.
- name
This property is required. String - Name of the SKU.
- name
This property is required. string - Name of the SKU.
- name
This property is required. str - Name of the SKU.
- name
This property is required. 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/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor
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