azure-native.monitor.TenantActionGroup
Explore with Pulumi AI
A tenant action group resource.
Uses Azure REST API version 2023-05-01-preview.
Create TenantActionGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TenantActionGroup(name: string, args: TenantActionGroupArgs, opts?: CustomResourceOptions);
@overload
def TenantActionGroup(resource_name: str,
args: TenantActionGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TenantActionGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
group_short_name: Optional[str] = None,
management_group_id: Optional[str] = None,
azure_app_push_receivers: Optional[Sequence[AzureAppPushReceiverArgs]] = None,
email_receivers: Optional[Sequence[EmailReceiverArgs]] = None,
location: Optional[str] = None,
sms_receivers: Optional[Sequence[SmsReceiverArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tenant_action_group_name: Optional[str] = None,
voice_receivers: Optional[Sequence[VoiceReceiverArgs]] = None,
webhook_receivers: Optional[Sequence[WebhookReceiverArgs]] = None)
func NewTenantActionGroup(ctx *Context, name string, args TenantActionGroupArgs, opts ...ResourceOption) (*TenantActionGroup, error)
public TenantActionGroup(string name, TenantActionGroupArgs args, CustomResourceOptions? opts = null)
public TenantActionGroup(String name, TenantActionGroupArgs args)
public TenantActionGroup(String name, TenantActionGroupArgs args, CustomResourceOptions options)
type: azure-native:monitor:TenantActionGroup
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. TenantActionGroupArgs - 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. TenantActionGroupArgs - 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. TenantActionGroupArgs - 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. TenantActionGroupArgs - 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. TenantActionGroupArgs - 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 tenantActionGroupResource = new AzureNative.Monitor.TenantActionGroup("tenantActionGroupResource", new()
{
Enabled = false,
GroupShortName = "string",
ManagementGroupId = "string",
AzureAppPushReceivers = new[]
{
new AzureNative.Monitor.Inputs.AzureAppPushReceiverArgs
{
EmailAddress = "string",
Name = "string",
},
},
EmailReceivers = new[]
{
new AzureNative.Monitor.Inputs.EmailReceiverArgs
{
EmailAddress = "string",
Name = "string",
UseCommonAlertSchema = false,
},
},
Location = "string",
SmsReceivers = new[]
{
new AzureNative.Monitor.Inputs.SmsReceiverArgs
{
CountryCode = "string",
Name = "string",
PhoneNumber = "string",
},
},
Tags =
{
{ "string", "string" },
},
TenantActionGroupName = "string",
VoiceReceivers = new[]
{
new AzureNative.Monitor.Inputs.VoiceReceiverArgs
{
CountryCode = "string",
Name = "string",
PhoneNumber = "string",
},
},
WebhookReceivers = new[]
{
new AzureNative.Monitor.Inputs.WebhookReceiverArgs
{
Name = "string",
ServiceUri = "string",
IdentifierUri = "string",
ManagedIdentity = "string",
ObjectId = "string",
TenantId = "string",
UseAadAuth = false,
UseCommonAlertSchema = false,
},
},
});
example, err := monitor.NewTenantActionGroup(ctx, "tenantActionGroupResource", &monitor.TenantActionGroupArgs{
Enabled: pulumi.Bool(false),
GroupShortName: pulumi.String("string"),
ManagementGroupId: pulumi.String("string"),
AzureAppPushReceivers: monitor.AzureAppPushReceiverArray{
&monitor.AzureAppPushReceiverArgs{
EmailAddress: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
EmailReceivers: monitor.EmailReceiverArray{
&monitor.EmailReceiverArgs{
EmailAddress: pulumi.String("string"),
Name: pulumi.String("string"),
UseCommonAlertSchema: pulumi.Bool(false),
},
},
Location: pulumi.String("string"),
SmsReceivers: monitor.SmsReceiverArray{
&monitor.SmsReceiverArgs{
CountryCode: pulumi.String("string"),
Name: pulumi.String("string"),
PhoneNumber: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TenantActionGroupName: pulumi.String("string"),
VoiceReceivers: monitor.VoiceReceiverArray{
&monitor.VoiceReceiverArgs{
CountryCode: pulumi.String("string"),
Name: pulumi.String("string"),
PhoneNumber: pulumi.String("string"),
},
},
WebhookReceivers: monitor.WebhookReceiverArray{
&monitor.WebhookReceiverArgs{
Name: pulumi.String("string"),
ServiceUri: pulumi.String("string"),
IdentifierUri: pulumi.String("string"),
ManagedIdentity: pulumi.String("string"),
ObjectId: pulumi.String("string"),
TenantId: pulumi.String("string"),
UseAadAuth: pulumi.Bool(false),
UseCommonAlertSchema: pulumi.Bool(false),
},
},
})
var tenantActionGroupResource = new TenantActionGroup("tenantActionGroupResource", TenantActionGroupArgs.builder()
.enabled(false)
.groupShortName("string")
.managementGroupId("string")
.azureAppPushReceivers(AzureAppPushReceiverArgs.builder()
.emailAddress("string")
.name("string")
.build())
.emailReceivers(EmailReceiverArgs.builder()
.emailAddress("string")
.name("string")
.useCommonAlertSchema(false)
.build())
.location("string")
.smsReceivers(SmsReceiverArgs.builder()
.countryCode("string")
.name("string")
.phoneNumber("string")
.build())
.tags(Map.of("string", "string"))
.tenantActionGroupName("string")
.voiceReceivers(VoiceReceiverArgs.builder()
.countryCode("string")
.name("string")
.phoneNumber("string")
.build())
.webhookReceivers(WebhookReceiverArgs.builder()
.name("string")
.serviceUri("string")
.identifierUri("string")
.managedIdentity("string")
.objectId("string")
.tenantId("string")
.useAadAuth(false)
.useCommonAlertSchema(false)
.build())
.build());
tenant_action_group_resource = azure_native.monitor.TenantActionGroup("tenantActionGroupResource",
enabled=False,
group_short_name="string",
management_group_id="string",
azure_app_push_receivers=[{
"email_address": "string",
"name": "string",
}],
email_receivers=[{
"email_address": "string",
"name": "string",
"use_common_alert_schema": False,
}],
location="string",
sms_receivers=[{
"country_code": "string",
"name": "string",
"phone_number": "string",
}],
tags={
"string": "string",
},
tenant_action_group_name="string",
voice_receivers=[{
"country_code": "string",
"name": "string",
"phone_number": "string",
}],
webhook_receivers=[{
"name": "string",
"service_uri": "string",
"identifier_uri": "string",
"managed_identity": "string",
"object_id": "string",
"tenant_id": "string",
"use_aad_auth": False,
"use_common_alert_schema": False,
}])
const tenantActionGroupResource = new azure_native.monitor.TenantActionGroup("tenantActionGroupResource", {
enabled: false,
groupShortName: "string",
managementGroupId: "string",
azureAppPushReceivers: [{
emailAddress: "string",
name: "string",
}],
emailReceivers: [{
emailAddress: "string",
name: "string",
useCommonAlertSchema: false,
}],
location: "string",
smsReceivers: [{
countryCode: "string",
name: "string",
phoneNumber: "string",
}],
tags: {
string: "string",
},
tenantActionGroupName: "string",
voiceReceivers: [{
countryCode: "string",
name: "string",
phoneNumber: "string",
}],
webhookReceivers: [{
name: "string",
serviceUri: "string",
identifierUri: "string",
managedIdentity: "string",
objectId: "string",
tenantId: "string",
useAadAuth: false,
useCommonAlertSchema: false,
}],
});
type: azure-native:monitor:TenantActionGroup
properties:
azureAppPushReceivers:
- emailAddress: string
name: string
emailReceivers:
- emailAddress: string
name: string
useCommonAlertSchema: false
enabled: false
groupShortName: string
location: string
managementGroupId: string
smsReceivers:
- countryCode: string
name: string
phoneNumber: string
tags:
string: string
tenantActionGroupName: string
voiceReceivers:
- countryCode: string
name: string
phoneNumber: string
webhookReceivers:
- identifierUri: string
managedIdentity: string
name: string
objectId: string
serviceUri: string
tenantId: string
useAadAuth: false
useCommonAlertSchema: false
TenantActionGroup 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 TenantActionGroup resource accepts the following input properties:
- Enabled
This property is required. bool - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- Group
Short Name This property is required. string - The short name of the action group. This will be used in SMS messages.
- Management
Group Id This property is required. Changes to this property will trigger replacement.
- The management group id.
- Azure
App List<Pulumi.Push Receivers Azure Native. Monitor. Inputs. Azure App Push Receiver> - The list of AzureAppPush receivers that are part of this tenant action group.
- Email
Receivers List<Pulumi.Azure Native. Monitor. Inputs. Email Receiver> - The list of email receivers that are part of this tenant action group.
- Location
Changes to this property will trigger replacement.
- Resource location
- Sms
Receivers List<Pulumi.Azure Native. Monitor. Inputs. Sms Receiver> - The list of SMS receivers that are part of this tenant action group.
- Dictionary<string, string>
- Resource tags
- Tenant
Action Group Name Changes to this property will trigger replacement.
- The name of the action group.
- Voice
Receivers List<Pulumi.Azure Native. Monitor. Inputs. Voice Receiver> - The list of voice receivers that are part of this tenant action group.
- Webhook
Receivers List<Pulumi.Azure Native. Monitor. Inputs. Webhook Receiver> - The list of webhook receivers that are part of this tenant action group.
- Enabled
This property is required. bool - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- Group
Short Name This property is required. string - The short name of the action group. This will be used in SMS messages.
- Management
Group Id This property is required. Changes to this property will trigger replacement.
- The management group id.
- Azure
App []AzurePush Receivers App Push Receiver Args - The list of AzureAppPush receivers that are part of this tenant action group.
- Email
Receivers []EmailReceiver Args - The list of email receivers that are part of this tenant action group.
- Location
Changes to this property will trigger replacement.
- Resource location
- Sms
Receivers []SmsReceiver Args - The list of SMS receivers that are part of this tenant action group.
- map[string]string
- Resource tags
- Tenant
Action Group Name Changes to this property will trigger replacement.
- The name of the action group.
- Voice
Receivers []VoiceReceiver Args - The list of voice receivers that are part of this tenant action group.
- Webhook
Receivers []WebhookReceiver Args - The list of webhook receivers that are part of this tenant action group.
- enabled
This property is required. Boolean - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- group
Short Name This property is required. String - The short name of the action group. This will be used in SMS messages.
- management
Group Id This property is required. Changes to this property will trigger replacement.
- The management group id.
- azure
App List<AzurePush Receivers App Push Receiver> - The list of AzureAppPush receivers that are part of this tenant action group.
- email
Receivers List<EmailReceiver> - The list of email receivers that are part of this tenant action group.
- location
Changes to this property will trigger replacement.
- Resource location
- sms
Receivers List<SmsReceiver> - The list of SMS receivers that are part of this tenant action group.
- Map<String,String>
- Resource tags
- tenant
Action Group Name Changes to this property will trigger replacement.
- The name of the action group.
- voice
Receivers List<VoiceReceiver> - The list of voice receivers that are part of this tenant action group.
- webhook
Receivers List<WebhookReceiver> - The list of webhook receivers that are part of this tenant action group.
- enabled
This property is required. boolean - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- group
Short Name This property is required. string - The short name of the action group. This will be used in SMS messages.
- management
Group Id This property is required. Changes to this property will trigger replacement.
- The management group id.
- azure
App AzurePush Receivers App Push Receiver[] - The list of AzureAppPush receivers that are part of this tenant action group.
- email
Receivers EmailReceiver[] - The list of email receivers that are part of this tenant action group.
- location
Changes to this property will trigger replacement.
- Resource location
- sms
Receivers SmsReceiver[] - The list of SMS receivers that are part of this tenant action group.
- {[key: string]: string}
- Resource tags
- tenant
Action Group Name Changes to this property will trigger replacement.
- The name of the action group.
- voice
Receivers VoiceReceiver[] - The list of voice receivers that are part of this tenant action group.
- webhook
Receivers WebhookReceiver[] - The list of webhook receivers that are part of this tenant action group.
- enabled
This property is required. bool - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- group_
short_ name This property is required. str - The short name of the action group. This will be used in SMS messages.
- management_
group_ id This property is required. Changes to this property will trigger replacement.
- The management group id.
- azure_
app_ Sequence[Azurepush_ receivers App Push Receiver Args] - The list of AzureAppPush receivers that are part of this tenant action group.
- email_
receivers Sequence[EmailReceiver Args] - The list of email receivers that are part of this tenant action group.
- location
Changes to this property will trigger replacement.
- Resource location
- sms_
receivers Sequence[SmsReceiver Args] - The list of SMS receivers that are part of this tenant action group.
- Mapping[str, str]
- Resource tags
- tenant_
action_ group_ name Changes to this property will trigger replacement.
- The name of the action group.
- voice_
receivers Sequence[VoiceReceiver Args] - The list of voice receivers that are part of this tenant action group.
- webhook_
receivers Sequence[WebhookReceiver Args] - The list of webhook receivers that are part of this tenant action group.
- enabled
This property is required. Boolean - Indicates whether this tenant action group is enabled. If a tenant action group is not enabled, then none of its receivers will receive communications.
- group
Short Name This property is required. String - The short name of the action group. This will be used in SMS messages.
- management
Group Id This property is required. Changes to this property will trigger replacement.
- The management group id.
- azure
App List<Property Map>Push Receivers - The list of AzureAppPush receivers that are part of this tenant action group.
- email
Receivers List<Property Map> - The list of email receivers that are part of this tenant action group.
- location
Changes to this property will trigger replacement.
- Resource location
- sms
Receivers List<Property Map> - The list of SMS receivers that are part of this tenant action group.
- Map<String>
- Resource tags
- tenant
Action Group Name Changes to this property will trigger replacement.
- The name of the action group.
- voice
Receivers List<Property Map> - The list of voice receivers that are part of this tenant action group.
- webhook
Receivers List<Property Map> - The list of webhook receivers that are part of this tenant action group.
Outputs
All input properties are implicitly available as output properties. Additionally, the TenantActionGroup resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name
- Type string
- Azure resource type
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Azure resource name
- Type string
- Azure resource type
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name
- type String
- Azure resource type
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Azure resource name
- type string
- Azure resource type
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Azure resource name
- type str
- Azure resource type
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Azure resource name
- type String
- Azure resource type
Supporting Types
AzureAppPushReceiver, AzureAppPushReceiverArgs
- Email
Address This property is required. string - The email address registered for the Azure mobile app.
- Name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- Email
Address This property is required. string - The email address registered for the Azure mobile app.
- Name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. String - The email address registered for the Azure mobile app.
- name
This property is required. String - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. string - The email address registered for the Azure mobile app.
- name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email_
address This property is required. str - The email address registered for the Azure mobile app.
- name
This property is required. str - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. String - The email address registered for the Azure mobile app.
- name
This property is required. String - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
AzureAppPushReceiverResponse, AzureAppPushReceiverResponseArgs
- Email
Address This property is required. string - The email address registered for the Azure mobile app.
- Name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- Email
Address This property is required. string - The email address registered for the Azure mobile app.
- Name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. String - The email address registered for the Azure mobile app.
- name
This property is required. String - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. string - The email address registered for the Azure mobile app.
- name
This property is required. string - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email_
address This property is required. str - The email address registered for the Azure mobile app.
- name
This property is required. str - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
- email
Address This property is required. String - The email address registered for the Azure mobile app.
- name
This property is required. String - The name of the Azure mobile app push receiver. Names must be unique across all receivers within a tenant action group.
EmailReceiver, EmailReceiverArgs
- Email
Address This property is required. string - The email address of this receiver.
- Name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- Email
Address This property is required. string - The email address of this receiver.
- Name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- email
Address This property is required. String - The email address of this receiver.
- name
This property is required. String - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
- email
Address This property is required. string - The email address of this receiver.
- name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- use
Common booleanAlert Schema - Indicates whether to use common alert schema.
- email_
address This property is required. str - The email address of this receiver.
- name
This property is required. str - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- use_
common_ boolalert_ schema - Indicates whether to use common alert schema.
- email
Address This property is required. String - The email address of this receiver.
- name
This property is required. String - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
EmailReceiverResponse, EmailReceiverResponseArgs
- Email
Address This property is required. string - The email address of this receiver.
- Name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- Status
This property is required. string - The receiver status of the e-mail.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- Email
Address This property is required. string - The email address of this receiver.
- Name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- Status
This property is required. string - The receiver status of the e-mail.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- email
Address This property is required. String - The email address of this receiver.
- name
This property is required. String - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- status
This property is required. String - The receiver status of the e-mail.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
- email
Address This property is required. string - The email address of this receiver.
- name
This property is required. string - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- status
This property is required. string - The receiver status of the e-mail.
- use
Common booleanAlert Schema - Indicates whether to use common alert schema.
- email_
address This property is required. str - The email address of this receiver.
- name
This property is required. str - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- status
This property is required. str - The receiver status of the e-mail.
- use_
common_ boolalert_ schema - Indicates whether to use common alert schema.
- email
Address This property is required. String - The email address of this receiver.
- name
This property is required. String - The name of the email receiver. Names must be unique across all receivers within a tenant action group.
- status
This property is required. String - The receiver status of the e-mail.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
SmsReceiver, SmsReceiverArgs
- Country
Code This property is required. string - The country code of the SMS receiver.
- Name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the SMS receiver.
- Country
Code This property is required. string - The country code of the SMS receiver.
- Name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the SMS receiver.
- country
Code This property is required. String - The country code of the SMS receiver.
- name
This property is required. String - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the SMS receiver.
- country
Code This property is required. string - The country code of the SMS receiver.
- name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. string - The phone number of the SMS receiver.
- country_
code This property is required. str - The country code of the SMS receiver.
- name
This property is required. str - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone_
number This property is required. str - The phone number of the SMS receiver.
- country
Code This property is required. String - The country code of the SMS receiver.
- name
This property is required. String - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the SMS receiver.
SmsReceiverResponse, SmsReceiverResponseArgs
- Country
Code This property is required. string - The country code of the SMS receiver.
- Name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the SMS receiver.
- Status
This property is required. string - The status of the receiver.
- Country
Code This property is required. string - The country code of the SMS receiver.
- Name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the SMS receiver.
- Status
This property is required. string - The status of the receiver.
- country
Code This property is required. String - The country code of the SMS receiver.
- name
This property is required. String - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the SMS receiver.
- status
This property is required. String - The status of the receiver.
- country
Code This property is required. string - The country code of the SMS receiver.
- name
This property is required. string - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. string - The phone number of the SMS receiver.
- status
This property is required. string - The status of the receiver.
- country_
code This property is required. str - The country code of the SMS receiver.
- name
This property is required. str - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone_
number This property is required. str - The phone number of the SMS receiver.
- status
This property is required. str - The status of the receiver.
- country
Code This property is required. String - The country code of the SMS receiver.
- name
This property is required. String - The name of the SMS receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the SMS receiver.
- status
This property is required. String - The status of the receiver.
VoiceReceiver, VoiceReceiverArgs
- Country
Code This property is required. string - The country code of the voice receiver.
- Name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the voice receiver.
- Country
Code This property is required. string - The country code of the voice receiver.
- Name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the voice receiver.
- country
Code This property is required. String - The country code of the voice receiver.
- name
This property is required. String - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the voice receiver.
- country
Code This property is required. string - The country code of the voice receiver.
- name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. string - The phone number of the voice receiver.
- country_
code This property is required. str - The country code of the voice receiver.
- name
This property is required. str - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone_
number This property is required. str - The phone number of the voice receiver.
- country
Code This property is required. String - The country code of the voice receiver.
- name
This property is required. String - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the voice receiver.
VoiceReceiverResponse, VoiceReceiverResponseArgs
- Country
Code This property is required. string - The country code of the voice receiver.
- Name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the voice receiver.
- Country
Code This property is required. string - The country code of the voice receiver.
- Name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- Phone
Number This property is required. string - The phone number of the voice receiver.
- country
Code This property is required. String - The country code of the voice receiver.
- name
This property is required. String - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the voice receiver.
- country
Code This property is required. string - The country code of the voice receiver.
- name
This property is required. string - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. string - The phone number of the voice receiver.
- country_
code This property is required. str - The country code of the voice receiver.
- name
This property is required. str - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone_
number This property is required. str - The phone number of the voice receiver.
- country
Code This property is required. String - The country code of the voice receiver.
- name
This property is required. String - The name of the voice receiver. Names must be unique across all receivers within a tenant action group.
- phone
Number This property is required. String - The phone number of the voice receiver.
WebhookReceiver, WebhookReceiverArgs
- Name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- Service
Uri This property is required. string - The URI where webhooks should be sent.
- Identifier
Uri string - Indicates the identifier uri for aad auth.
- Managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- Object
Id string - Indicates the webhook app object Id for aad auth.
- Tenant
Id string - Indicates the tenant id for aad auth.
- Use
Aad boolAuth - Indicates whether or not use AAD authentication.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- Name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- Service
Uri This property is required. string - The URI where webhooks should be sent.
- Identifier
Uri string - Indicates the identifier uri for aad auth.
- Managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- Object
Id string - Indicates the webhook app object Id for aad auth.
- Tenant
Id string - Indicates the tenant id for aad auth.
- Use
Aad boolAuth - Indicates whether or not use AAD authentication.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. String - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. String - The URI where webhooks should be sent.
- identifier
Uri String - Indicates the identifier uri for aad auth.
- managed
Identity String - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id String - Indicates the webhook app object Id for aad auth.
- tenant
Id String - Indicates the tenant id for aad auth.
- use
Aad BooleanAuth - Indicates whether or not use AAD authentication.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. string - The URI where webhooks should be sent.
- identifier
Uri string - Indicates the identifier uri for aad auth.
- managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id string - Indicates the webhook app object Id for aad auth.
- tenant
Id string - Indicates the tenant id for aad auth.
- use
Aad booleanAuth - Indicates whether or not use AAD authentication.
- use
Common booleanAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. str - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service_
uri This property is required. str - The URI where webhooks should be sent.
- identifier_
uri str - Indicates the identifier uri for aad auth.
- managed_
identity str - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object_
id str - Indicates the webhook app object Id for aad auth.
- tenant_
id str - Indicates the tenant id for aad auth.
- use_
aad_ boolauth - Indicates whether or not use AAD authentication.
- use_
common_ boolalert_ schema - Indicates whether to use common alert schema.
- name
This property is required. String - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. String - The URI where webhooks should be sent.
- identifier
Uri String - Indicates the identifier uri for aad auth.
- managed
Identity String - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id String - Indicates the webhook app object Id for aad auth.
- tenant
Id String - Indicates the tenant id for aad auth.
- use
Aad BooleanAuth - Indicates whether or not use AAD authentication.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
WebhookReceiverResponse, WebhookReceiverResponseArgs
- Name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- Service
Uri This property is required. string - The URI where webhooks should be sent.
- Identifier
Uri string - Indicates the identifier uri for aad auth.
- Managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- Object
Id string - Indicates the webhook app object Id for aad auth.
- Tenant
Id string - Indicates the tenant id for aad auth.
- Use
Aad boolAuth - Indicates whether or not use AAD authentication.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- Name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- Service
Uri This property is required. string - The URI where webhooks should be sent.
- Identifier
Uri string - Indicates the identifier uri for aad auth.
- Managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- Object
Id string - Indicates the webhook app object Id for aad auth.
- Tenant
Id string - Indicates the tenant id for aad auth.
- Use
Aad boolAuth - Indicates whether or not use AAD authentication.
- Use
Common boolAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. String - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. String - The URI where webhooks should be sent.
- identifier
Uri String - Indicates the identifier uri for aad auth.
- managed
Identity String - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id String - Indicates the webhook app object Id for aad auth.
- tenant
Id String - Indicates the tenant id for aad auth.
- use
Aad BooleanAuth - Indicates whether or not use AAD authentication.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. string - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. string - The URI where webhooks should be sent.
- identifier
Uri string - Indicates the identifier uri for aad auth.
- managed
Identity string - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id string - Indicates the webhook app object Id for aad auth.
- tenant
Id string - Indicates the tenant id for aad auth.
- use
Aad booleanAuth - Indicates whether or not use AAD authentication.
- use
Common booleanAlert Schema - Indicates whether to use common alert schema.
- name
This property is required. str - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service_
uri This property is required. str - The URI where webhooks should be sent.
- identifier_
uri str - Indicates the identifier uri for aad auth.
- managed_
identity str - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object_
id str - Indicates the webhook app object Id for aad auth.
- tenant_
id str - Indicates the tenant id for aad auth.
- use_
aad_ boolauth - Indicates whether or not use AAD authentication.
- use_
common_ boolalert_ schema - Indicates whether to use common alert schema.
- name
This property is required. String - The name of the webhook receiver. Names must be unique across all receivers within a tenant action group.
- service
Uri This property is required. String - The URI where webhooks should be sent.
- identifier
Uri String - Indicates the identifier uri for aad auth.
- managed
Identity String - The principal id of the managed identity. The value can be "None", "SystemAssigned"
- object
Id String - Indicates the webhook app object Id for aad auth.
- tenant
Id String - Indicates the tenant id for aad auth.
- use
Aad BooleanAuth - Indicates whether or not use AAD authentication.
- use
Common BooleanAlert Schema - Indicates whether to use common alert schema.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:monitor:TenantActionGroup testTenantActionGroup /providers/Microsoft.Management/managementGroups/{managementGroupId}/providers/Microsoft.Insights/tenantActionGroups/{tenantActionGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0