These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi
azure-native.logz.Monitor
Explore with Pulumi AI
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi
API Version: 2020-10-01.
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.Logz.Monitor("monitor", new()
{
MonitorName = "myMonitor",
ResourceGroupName = "myResourceGroup",
});
});
package main
import (
logz "github.com/pulumi/pulumi-azure-native-sdk/logz"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := logz.NewMonitor(ctx, "monitor", &logz.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.logz.Monitor;
import com.pulumi.azurenative.logz.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.logz.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.logz.Monitor("monitor", {
monitorName: "myMonitor",
resourceGroupName: "myResourceGroup",
});
resources:
monitor:
type: azure-native:logz: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,
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:logz: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 examplemonitorResourceResourceFromLogz = new AzureNative.Logz.Monitor("examplemonitorResourceResourceFromLogz", new()
{
ResourceGroupName = "string",
Identity =
{
{ "type", "string" },
},
Location = "string",
MonitorName = "string",
Properties =
{
{ "logzOrganizationProperties",
{
{ "companyName", "string" },
{ "enterpriseAppId", "string" },
{ "singleSignOnUrl", "string" },
} },
{ "marketplaceSubscriptionStatus", "string" },
{ "monitoringStatus", "string" },
{ "planData",
{
{ "billingCycle", "string" },
{ "effectiveDate", "string" },
{ "planDetails", "string" },
{ "usageType", "string" },
} },
{ "userInfo",
{
{ "emailAddress", "string" },
{ "firstName", "string" },
{ "lastName", "string" },
{ "phoneNumber", "string" },
} },
},
Tags =
{
{ "string", "string" },
},
});
example, err := logz.NewMonitor(ctx, "examplemonitorResourceResourceFromLogz", &logz.MonitorArgs{
ResourceGroupName: "string",
Identity: map[string]interface{}{
"type": "string",
},
Location: "string",
MonitorName: "string",
Properties: map[string]interface{}{
"logzOrganizationProperties": map[string]interface{}{
"companyName": "string",
"enterpriseAppId": "string",
"singleSignOnUrl": "string",
},
"marketplaceSubscriptionStatus": "string",
"monitoringStatus": "string",
"planData": map[string]interface{}{
"billingCycle": "string",
"effectiveDate": "string",
"planDetails": "string",
"usageType": "string",
},
"userInfo": map[string]interface{}{
"emailAddress": "string",
"firstName": "string",
"lastName": "string",
"phoneNumber": "string",
},
},
Tags: map[string]interface{}{
"string": "string",
},
})
var examplemonitorResourceResourceFromLogz = new Monitor("examplemonitorResourceResourceFromLogz", 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))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
examplemonitor_resource_resource_from_logz = azure_native.logz.Monitor("examplemonitorResourceResourceFromLogz",
resource_group_name=string,
identity={
type: string,
},
location=string,
monitor_name=string,
properties={
logzOrganizationProperties: {
companyName: string,
enterpriseAppId: string,
singleSignOnUrl: string,
},
marketplaceSubscriptionStatus: string,
monitoringStatus: string,
planData: {
billingCycle: string,
effectiveDate: string,
planDetails: string,
usageType: string,
},
userInfo: {
emailAddress: string,
firstName: string,
lastName: string,
phoneNumber: string,
},
},
tags={
string: string,
})
const examplemonitorResourceResourceFromLogz = new azure_native.logz.Monitor("examplemonitorResourceResourceFromLogz", {
resourceGroupName: "string",
identity: {
type: "string",
},
location: "string",
monitorName: "string",
properties: {
logzOrganizationProperties: {
companyName: "string",
enterpriseAppId: "string",
singleSignOnUrl: "string",
},
marketplaceSubscriptionStatus: "string",
monitoringStatus: "string",
planData: {
billingCycle: "string",
effectiveDate: "string",
planDetails: "string",
usageType: "string",
},
userInfo: {
emailAddress: "string",
firstName: "string",
lastName: "string",
phoneNumber: "string",
},
},
tags: {
string: "string",
},
});
type: azure-native:logz:Monitor
properties:
identity:
type: string
location: string
monitorName: string
properties:
logzOrganizationProperties:
companyName: string
enterpriseAppId: string
singleSignOnUrl: string
marketplaceSubscriptionStatus: string
monitoringStatus: string
planData:
billingCycle: string
effectiveDate: string
planDetails: string
usageType: string
userInfo:
emailAddress: string
firstName: string
lastName: string
phoneNumber: string
resourceGroupName: 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. The name is case insensitive.
- Identity
Pulumi.
Azure Native. Logz. Inputs. Identity Properties - Location string
- Monitor
Name string - Monitor resource name
- Properties
Pulumi.
Azure Native. Logz. Inputs. Monitor Properties - Properties specific to the monitor resource.
- Dictionary<string, string>
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Identity
Identity
Properties Args - Location string
- Monitor
Name string - Monitor resource name
- Properties
Monitor
Properties Args - Properties specific to the monitor resource.
- map[string]string
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity
Identity
Properties - location String
- monitor
Name String - Monitor resource name
- properties
Monitor
Properties - Properties specific to the monitor resource.
- Map<String,String>
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- identity
Identity
Properties - location string
- monitor
Name string - Monitor resource name
- properties
Monitor
Properties - Properties specific to the monitor resource.
- {[key: string]: string}
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- identity
Identity
Properties Args - location str
- monitor_
name str - Monitor resource name
- properties
Monitor
Properties Args - Properties specific to the monitor resource.
- Mapping[str, str]
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- identity Property Map
- location String
- monitor
Name String - Monitor resource name
- properties Property Map
- Properties specific to the monitor resource.
- Map<String>
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. Logz. 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
IdentityProperties, IdentityPropertiesArgs
- Type
string | Managed
Identity Types
- type
String | Managed
Identity Types
- type
string | Managed
Identity Types
- type
str | Managed
Identity Types
- type
String | "System
Assigned" | "User Assigned"
IdentityPropertiesResponse, IdentityPropertiesResponseArgs
- Principal
Id string - The identity ID.
- Tenant
Id string - The tenant ID of resource.
- Type string
- Principal
Id string - The identity ID.
- Tenant
Id string - The tenant ID of resource.
- Type string
- principal
Id String - The identity ID.
- tenant
Id String - The tenant ID of resource.
- type String
- principal
Id string - The identity ID.
- tenant
Id string - The tenant ID of resource.
- type string
- principal_
id str - The identity ID.
- tenant_
id str - The tenant ID of resource.
- type str
- principal
Id String - The identity ID.
- tenant
Id String - The tenant ID of resource.
- type String
LogzOrganizationProperties, LogzOrganizationPropertiesArgs
- Company
Name string - Name of the Logz organization.
- Enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- Single
Sign stringOn Url - The login URL specific to this Logz Organization.
- Company
Name string - Name of the Logz organization.
- Enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- Single
Sign stringOn Url - The login URL specific to this Logz Organization.
- company
Name String - Name of the Logz organization.
- enterprise
App StringId - The Id of the Enterprise App used for Single sign on.
- single
Sign StringOn Url - The login URL specific to this Logz Organization.
- company
Name string - Name of the Logz organization.
- enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- single
Sign stringOn Url - The login URL specific to this Logz Organization.
- company_
name str - Name of the Logz organization.
- enterprise_
app_ strid - The Id of the Enterprise App used for Single sign on.
- single_
sign_ stron_ url - The login URL specific to this Logz Organization.
- company
Name String - Name of the Logz organization.
- enterprise
App StringId - The Id of the Enterprise App used for Single sign on.
- single
Sign StringOn Url - The login URL specific to this Logz Organization.
LogzOrganizationPropertiesResponse, LogzOrganizationPropertiesResponseArgs
- Id string
- Id of the Logz organization.
- Company
Name string - Name of the Logz organization.
- Enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- Single
Sign stringOn Url - The login URL specific to this Logz Organization.
- Id string
- Id of the Logz organization.
- Company
Name string - Name of the Logz organization.
- Enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- Single
Sign stringOn Url - The login URL specific to this Logz Organization.
- id String
- Id of the Logz organization.
- company
Name String - Name of the Logz organization.
- enterprise
App StringId - The Id of the Enterprise App used for Single sign on.
- single
Sign StringOn Url - The login URL specific to this Logz Organization.
- id string
- Id of the Logz organization.
- company
Name string - Name of the Logz organization.
- enterprise
App stringId - The Id of the Enterprise App used for Single sign on.
- single
Sign stringOn Url - The login URL specific to this Logz Organization.
- id str
- Id of the Logz organization.
- company_
name str - Name of the Logz organization.
- enterprise_
app_ strid - The Id of the Enterprise App used for Single sign on.
- single_
sign_ stron_ url - The login URL specific to this Logz Organization.
- id String
- Id of the Logz organization.
- company
Name String - Name of the Logz organization.
- enterprise
App StringId - The Id of the Enterprise App used for Single sign on.
- single
Sign StringOn Url - The login URL specific to this Logz Organization.
ManagedIdentityTypes, ManagedIdentityTypesArgs
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- Managed
Identity Types System Assigned - SystemAssigned
- Managed
Identity Types User Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
MarketplaceSubscriptionStatus, MarketplaceSubscriptionStatusArgs
- Active
- Active
- Suspended
- Suspended
- Marketplace
Subscription Status Active - Active
- Marketplace
Subscription Status Suspended - Suspended
- Active
- Active
- Suspended
- Suspended
- Active
- Active
- Suspended
- Suspended
- ACTIVE
- Active
- SUSPENDED
- Suspended
- "Active"
- Active
- "Suspended"
- Suspended
MonitorProperties, MonitorPropertiesArgs
- Logz
Organization Pulumi.Properties Azure Native. Logz. Inputs. Logz Organization Properties - Marketplace
Subscription string | Pulumi.Status Azure Native. Logz. Marketplace Subscription Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- Monitoring
Status string | Pulumi.Azure Native. Logz. Monitoring Status - Flag specifying if the resource monitoring is enabled or disabled.
- Plan
Data Pulumi.Azure Native. Logz. Inputs. Plan Data - User
Info Pulumi.Azure Native. Logz. Inputs. User Info
- Logz
Organization LogzProperties Organization Properties - Marketplace
Subscription string | MarketplaceStatus Subscription Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- Monitoring
Status string | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- Plan
Data PlanData - User
Info UserInfo
- logz
Organization LogzProperties Organization Properties - marketplace
Subscription String | MarketplaceStatus Subscription Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status String | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data PlanData - user
Info UserInfo
- logz
Organization LogzProperties Organization Properties - marketplace
Subscription string | MarketplaceStatus Subscription Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status string | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data PlanData - user
Info UserInfo
- logz_
organization_ Logzproperties Organization Properties - marketplace_
subscription_ str | Marketplacestatus Subscription Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring_
status str | MonitoringStatus - Flag specifying if the resource monitoring is enabled or disabled.
- plan_
data PlanData - user_
info UserInfo
- logz
Organization Property MapProperties - marketplace
Subscription String | "Active" | "Suspended"Status - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status String | "Enabled" | "Disabled" - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data Property Map - user
Info Property Map
MonitorPropertiesResponse, MonitorPropertiesResponseArgs
- Liftr
Resource stringCategory - Liftr
Resource intPreference - The priority of the resource.
- Provisioning
State string - Flag specifying if the resource provisioning state as tracked by ARM.
- Logz
Organization Pulumi.Properties Azure Native. Logz. Inputs. Logz Organization Properties Response - Marketplace
Subscription stringStatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- Monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- Plan
Data Pulumi.Azure Native. Logz. Inputs. Plan Data Response - User
Info Pulumi.Azure Native. Logz. Inputs. User Info Response
- Liftr
Resource stringCategory - Liftr
Resource intPreference - The priority of the resource.
- Provisioning
State string - Flag specifying if the resource provisioning state as tracked by ARM.
- Logz
Organization LogzProperties Organization Properties Response - Marketplace
Subscription stringStatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- Monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- Plan
Data PlanData Response - User
Info UserInfo Response
- liftr
Resource StringCategory - liftr
Resource IntegerPreference - The priority of the resource.
- provisioning
State String - Flag specifying if the resource provisioning state as tracked by ARM.
- logz
Organization LogzProperties Organization Properties Response - marketplace
Subscription StringStatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data PlanData Response - user
Info UserInfo Response
- liftr
Resource stringCategory - liftr
Resource numberPreference - The priority of the resource.
- provisioning
State string - Flag specifying if the resource provisioning state as tracked by ARM.
- logz
Organization LogzProperties Organization Properties Response - marketplace
Subscription stringStatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status string - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data PlanData Response - user
Info UserInfo Response
- liftr_
resource_ strcategory - liftr_
resource_ intpreference - The priority of the resource.
- provisioning_
state str - Flag specifying if the resource provisioning state as tracked by ARM.
- logz_
organization_ Logzproperties Organization Properties Response - marketplace_
subscription_ strstatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring_
status str - Flag specifying if the resource monitoring is enabled or disabled.
- plan_
data PlanData Response - user_
info UserInfo Response
- liftr
Resource StringCategory - liftr
Resource NumberPreference - The priority of the resource.
- provisioning
State String - Flag specifying if the resource provisioning state as tracked by ARM.
- logz
Organization Property MapProperties - marketplace
Subscription StringStatus - Flag specifying the Marketplace Subscription Status of the resource. If payment is not made in time, the resource will go in Suspended state.
- monitoring
Status String - Flag specifying if the resource monitoring is enabled or disabled.
- plan
Data Property Map - user
Info Property Map
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
PlanData, PlanDataArgs
- Billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- Effective
Date string - date when plan was applied
- Plan
Details string - plan id as published by Logz
- Usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- Billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- Effective
Date string - date when plan was applied
- Plan
Details string - plan id as published by Logz
- Usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle String - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date String - date when plan was applied
- plan
Details String - plan id as published by Logz
- usage
Type String - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date string - date when plan was applied
- plan
Details string - plan id as published by Logz
- usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- billing_
cycle str - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective_
date str - date when plan was applied
- plan_
details str - plan id as published by Logz
- usage_
type str - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle String - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date String - date when plan was applied
- plan
Details String - plan id as published by Logz
- usage
Type String - different usage type like PAYG/COMMITTED. this could be enum
PlanDataResponse, PlanDataResponseArgs
- Billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- Effective
Date string - date when plan was applied
- Plan
Details string - plan id as published by Logz
- Usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- Billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- Effective
Date string - date when plan was applied
- Plan
Details string - plan id as published by Logz
- Usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle String - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date String - date when plan was applied
- plan
Details String - plan id as published by Logz
- usage
Type String - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle string - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date string - date when plan was applied
- plan
Details string - plan id as published by Logz
- usage
Type string - different usage type like PAYG/COMMITTED. this could be enum
- billing_
cycle str - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective_
date str - date when plan was applied
- plan_
details str - plan id as published by Logz
- usage_
type str - different usage type like PAYG/COMMITTED. this could be enum
- billing
Cycle String - different billing cycles like MONTHLY/WEEKLY. this could be enum
- effective
Date String - date when plan was applied
- plan
Details String - plan id as published by Logz
- usage
Type String - different usage type like PAYG/COMMITTED. this could be enum
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
- Email
Address string - Email of the user used by Logz for contacting them if needed
- First
Name string - First Name of the user
- Last
Name string - Last Name of the user
- Phone
Number string - Phone number of the user used by Logz for contacting them if needed
- Email
Address string - Email of the user used by Logz for contacting them if needed
- First
Name string - First Name of the user
- Last
Name string - Last Name of the user
- Phone
Number string - Phone number of the user used by Logz for contacting them if needed
- email
Address String - Email of the user used by Logz for contacting them if needed
- first
Name String - First Name of the user
- last
Name String - Last Name of the user
- phone
Number String - Phone number of the user used by Logz for contacting them if needed
- email
Address string - Email of the user used by Logz for contacting them if needed
- first
Name string - First Name of the user
- last
Name string - Last Name of the user
- phone
Number string - Phone number of the user used by Logz for contacting them if needed
- email_
address str - Email of the user used by Logz for contacting them if needed
- first_
name str - First Name of the user
- last_
name str - Last Name of the user
- phone_
number str - Phone number of the user used by Logz for contacting them if needed
- email
Address String - Email of the user used by Logz for contacting them if needed
- first
Name String - First Name of the user
- last
Name String - Last Name of the user
- phone
Number String - Phone number of the user used by Logz for contacting them if needed
UserInfoResponse, UserInfoResponseArgs
- Email
Address string - Email of the user used by Logz for contacting them if needed
- First
Name string - First Name of the user
- Last
Name string - Last Name of the user
- Phone
Number string - Phone number of the user used by Logz for contacting them if needed
- Email
Address string - Email of the user used by Logz for contacting them if needed
- First
Name string - First Name of the user
- Last
Name string - Last Name of the user
- Phone
Number string - Phone number of the user used by Logz for contacting them if needed
- email
Address String - Email of the user used by Logz for contacting them if needed
- first
Name String - First Name of the user
- last
Name String - Last Name of the user
- phone
Number String - Phone number of the user used by Logz for contacting them if needed
- email
Address string - Email of the user used by Logz for contacting them if needed
- first
Name string - First Name of the user
- last
Name string - Last Name of the user
- phone
Number string - Phone number of the user used by Logz for contacting them if needed
- email_
address str - Email of the user used by Logz for contacting them if needed
- first_
name str - First Name of the user
- last_
name str - Last Name of the user
- phone_
number str - Phone number of the user used by Logz for contacting them if needed
- email
Address String - Email of the user used by Logz for contacting them if needed
- first
Name String - First Name of the user
- last
Name String - Last Name of the user
- phone
Number String - Phone number of the user used by Logz for contacting them if needed
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:logz: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
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi