We recommend using Azure Native.
azure.bot.Healthbot
Explore with Pulumi AI
Manages a Healthbot Service.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-healthbot",
location: "West Europe",
});
const exampleHealthbot = new azure.bot.Healthbot("example", {
name: "example-bot",
resourceGroupName: example.name,
location: example.location,
skuName: "F0",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-healthbot",
location="West Europe")
example_healthbot = azure.bot.Healthbot("example",
name="example-bot",
resource_group_name=example.name,
location=example.location,
sku_name="F0")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/bot"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-healthbot"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = bot.NewHealthbot(ctx, "example", &bot.HealthbotArgs{
Name: pulumi.String("example-bot"),
ResourceGroupName: example.Name,
Location: example.Location,
SkuName: pulumi.String("F0"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-healthbot",
Location = "West Europe",
});
var exampleHealthbot = new Azure.Bot.Healthbot("example", new()
{
Name = "example-bot",
ResourceGroupName = example.Name,
Location = example.Location,
SkuName = "F0",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.bot.Healthbot;
import com.pulumi.azure.bot.HealthbotArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-healthbot")
.location("West Europe")
.build());
var exampleHealthbot = new Healthbot("exampleHealthbot", HealthbotArgs.builder()
.name("example-bot")
.resourceGroupName(example.name())
.location(example.location())
.skuName("F0")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-healthbot
location: West Europe
exampleHealthbot:
type: azure:bot:Healthbot
name: example
properties:
name: example-bot
resourceGroupName: ${example.name}
location: ${example.location}
skuName: F0
Create Healthbot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Healthbot(name: string, args: HealthbotArgs, opts?: CustomResourceOptions);
@overload
def Healthbot(resource_name: str,
args: HealthbotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Healthbot(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewHealthbot(ctx *Context, name string, args HealthbotArgs, opts ...ResourceOption) (*Healthbot, error)
public Healthbot(string name, HealthbotArgs args, CustomResourceOptions? opts = null)
public Healthbot(String name, HealthbotArgs args)
public Healthbot(String name, HealthbotArgs args, CustomResourceOptions options)
type: azure:bot:Healthbot
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 HealthbotArgs
- 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 HealthbotArgs
- 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 HealthbotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HealthbotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HealthbotArgs
- 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 healthbotResource = new Azure.Bot.Healthbot("healthbotResource", new()
{
ResourceGroupName = "string",
SkuName = "string",
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := bot.NewHealthbot(ctx, "healthbotResource", &bot.HealthbotArgs{
ResourceGroupName: pulumi.String("string"),
SkuName: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var healthbotResource = new Healthbot("healthbotResource", HealthbotArgs.builder()
.resourceGroupName("string")
.skuName("string")
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
healthbot_resource = azure.bot.Healthbot("healthbotResource",
resource_group_name="string",
sku_name="string",
location="string",
name="string",
tags={
"string": "string",
})
const healthbotResource = new azure.bot.Healthbot("healthbotResource", {
resourceGroupName: "string",
skuName: "string",
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:bot:Healthbot
properties:
location: string
name: string
resourceGroupName: string
skuName: string
tags:
string: string
Healthbot 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 Healthbot resource accepts the following input properties:
- Resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- Sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- Name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the service.
- Resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- Sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- Name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- map[string]string
- A mapping of tags which should be assigned to the service.
- resource
Group StringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name String - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - location String
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name String
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the service.
- resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the service.
- resource_
group_ strname - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku_
name str - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - location str
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name str
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the service.
- resource
Group StringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name String - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - location String
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name String
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Map<String>
- A mapping of tags which should be assigned to the service.
Outputs
All input properties are implicitly available as output properties. Additionally, the Healthbot resource produces the following output properties:
- Bot
Management stringPortal Url - The management portal url.
- Id string
- The provider-assigned unique ID for this managed resource.
- Bot
Management stringPortal Url - The management portal url.
- Id string
- The provider-assigned unique ID for this managed resource.
- bot
Management StringPortal Url - The management portal url.
- id String
- The provider-assigned unique ID for this managed resource.
- bot
Management stringPortal Url - The management portal url.
- id string
- The provider-assigned unique ID for this managed resource.
- bot_
management_ strportal_ url - The management portal url.
- id str
- The provider-assigned unique ID for this managed resource.
- bot
Management StringPortal Url - The management portal url.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Healthbot Resource
Get an existing Healthbot resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HealthbotState, opts?: CustomResourceOptions): Healthbot
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bot_management_portal_url: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
sku_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Healthbot
func GetHealthbot(ctx *Context, name string, id IDInput, state *HealthbotState, opts ...ResourceOption) (*Healthbot, error)
public static Healthbot Get(string name, Input<string> id, HealthbotState? state, CustomResourceOptions? opts = null)
public static Healthbot get(String name, Output<String> id, HealthbotState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Bot
Management stringPortal Url - The management portal url.
- Location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- Name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- Sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Dictionary<string, string>
- A mapping of tags which should be assigned to the service.
- Bot
Management stringPortal Url - The management portal url.
- Location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- Name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- Resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- Sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - map[string]string
- A mapping of tags which should be assigned to the service.
- bot
Management StringPortal Url - The management portal url.
- location String
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name String
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name String - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Map<String,String>
- A mapping of tags which should be assigned to the service.
- bot
Management stringPortal Url - The management portal url.
- location string
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name string
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- resource
Group stringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name string - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - {[key: string]: string}
- A mapping of tags which should be assigned to the service.
- bot_
management_ strportal_ url - The management portal url.
- location str
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name str
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- resource_
group_ strname - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku_
name str - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Mapping[str, str]
- A mapping of tags which should be assigned to the service.
- bot
Management StringPortal Url - The management portal url.
- location String
- Specifies The Azure Region where the resource exists. Changing this force a new resource to be created.
- name String
- Specifies The name of the Healthbot Service resource. Changing this forces a new resource to be created.
- resource
Group StringName - Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
- sku
Name String - The name which should be used for the SKU of the service. Possible values are
C0
,F0
andS1
. - Map<String>
- A mapping of tags which should be assigned to the service.
Import
Healthbot Service can be imported using the resource id
, e.g.
$ pulumi import azure:bot/healthbot:Healthbot example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.HealthBot/healthBots/bot1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.