1. Packages
  2. Azure Classic
  3. API Docs
  4. bot
  5. Healthbot

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.bot.Healthbot

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    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.

    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:

    ResourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    SkuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    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.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the service.
    ResourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    SkuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    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.
    Tags map[string]string
    A mapping of tags which should be assigned to the service.
    resourceGroupName String
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName String
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    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.
    tags Map<String,String>
    A mapping of tags which should be assigned to the service.
    resourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    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.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the service.
    resource_group_name str
    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 and S1.
    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.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the service.
    resourceGroupName String
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName String
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    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.
    tags 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:

    BotManagementPortalUrl string
    The management portal url.
    Id string
    The provider-assigned unique ID for this managed resource.
    BotManagementPortalUrl string
    The management portal url.
    Id string
    The provider-assigned unique ID for this managed resource.
    botManagementPortalUrl String
    The management portal url.
    id String
    The provider-assigned unique ID for this managed resource.
    botManagementPortalUrl string
    The management portal url.
    id string
    The provider-assigned unique ID for this managed resource.
    bot_management_portal_url str
    The management portal url.
    id str
    The provider-assigned unique ID for this managed resource.
    botManagementPortalUrl String
    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.
    The following state arguments are supported:
    BotManagementPortalUrl string
    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.
    ResourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    SkuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    Tags Dictionary<string, string>
    A mapping of tags which should be assigned to the service.
    BotManagementPortalUrl string
    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.
    ResourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    SkuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    Tags map[string]string
    A mapping of tags which should be assigned to the service.
    botManagementPortalUrl String
    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.
    resourceGroupName String
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName String
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    tags Map<String,String>
    A mapping of tags which should be assigned to the service.
    botManagementPortalUrl string
    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.
    resourceGroupName string
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName string
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    tags {[key: string]: string}
    A mapping of tags which should be assigned to the service.
    bot_management_portal_url str
    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_name str
    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 and S1.
    tags Mapping[str, str]
    A mapping of tags which should be assigned to the service.
    botManagementPortalUrl String
    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.
    resourceGroupName String
    Specifies The name of the Resource Group in which to create the Healthbot Service. changing this forces a new resource to be created.
    skuName String
    The name which should be used for the SKU of the service. Possible values are C0, F0 and S1.
    tags 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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi