1. Packages
  2. Avi Provider
  3. API Docs
  4. Botconfigconsolidator
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.Botconfigconsolidator

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “Avi: avi.Botconfigconsolidator” sidebar_current: “docs-avi-resource-botconfigconsolidator” description: |- Creates and manages Avi BotConfigConsolidator.

    avi.Botconfigconsolidator

    The BotConfigConsolidator resource allows the creation and management of Avi BotConfigConsolidator

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Botconfigconsolidator("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Botconfigconsolidator("foo", tenant_ref="/api/tenant/?name=admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.NewBotconfigconsolidator(ctx, "foo", &avi.BotconfigconsolidatorArgs{
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Avi.Botconfigconsolidator("foo", new()
        {
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Botconfigconsolidator;
    import com.pulumi.avi.BotconfigconsolidatorArgs;
    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 foo = new Botconfigconsolidator("foo", BotconfigconsolidatorArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Botconfigconsolidator
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Botconfigconsolidator Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Botconfigconsolidator(name: string, args?: BotconfigconsolidatorArgs, opts?: CustomResourceOptions);
    @overload
    def Botconfigconsolidator(resource_name: str,
                              args: Optional[BotconfigconsolidatorArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def Botconfigconsolidator(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              botconfigconsolidator_id: Optional[str] = None,
                              description: Optional[str] = None,
                              name: Optional[str] = None,
                              script: Optional[str] = None,
                              tenant_ref: Optional[str] = None,
                              uuid: Optional[str] = None)
    func NewBotconfigconsolidator(ctx *Context, name string, args *BotconfigconsolidatorArgs, opts ...ResourceOption) (*Botconfigconsolidator, error)
    public Botconfigconsolidator(string name, BotconfigconsolidatorArgs? args = null, CustomResourceOptions? opts = null)
    public Botconfigconsolidator(String name, BotconfigconsolidatorArgs args)
    public Botconfigconsolidator(String name, BotconfigconsolidatorArgs args, CustomResourceOptions options)
    
    type: avi:Botconfigconsolidator
    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 BotconfigconsolidatorArgs
    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 BotconfigconsolidatorArgs
    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 BotconfigconsolidatorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BotconfigconsolidatorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BotconfigconsolidatorArgs
    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 botconfigconsolidatorResource = new Avi.Botconfigconsolidator("botconfigconsolidatorResource", new()
    {
        BotconfigconsolidatorId = "string",
        Description = "string",
        Name = "string",
        Script = "string",
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewBotconfigconsolidator(ctx, "botconfigconsolidatorResource", &avi.BotconfigconsolidatorArgs{
    	BotconfigconsolidatorId: pulumi.String("string"),
    	Description:             pulumi.String("string"),
    	Name:                    pulumi.String("string"),
    	Script:                  pulumi.String("string"),
    	TenantRef:               pulumi.String("string"),
    	Uuid:                    pulumi.String("string"),
    })
    
    var botconfigconsolidatorResource = new Botconfigconsolidator("botconfigconsolidatorResource", BotconfigconsolidatorArgs.builder()
        .botconfigconsolidatorId("string")
        .description("string")
        .name("string")
        .script("string")
        .tenantRef("string")
        .uuid("string")
        .build());
    
    botconfigconsolidator_resource = avi.Botconfigconsolidator("botconfigconsolidatorResource",
        botconfigconsolidator_id="string",
        description="string",
        name="string",
        script="string",
        tenant_ref="string",
        uuid="string")
    
    const botconfigconsolidatorResource = new avi.Botconfigconsolidator("botconfigconsolidatorResource", {
        botconfigconsolidatorId: "string",
        description: "string",
        name: "string",
        script: "string",
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Botconfigconsolidator
    properties:
        botconfigconsolidatorId: string
        description: string
        name: string
        script: string
        tenantRef: string
        uuid: string
    

    Botconfigconsolidator 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 Botconfigconsolidator resource accepts the following input properties:

    BotconfigconsolidatorId string
    Description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    BotconfigconsolidatorId string
    Description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId String
    description String
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script String
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId string
    description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidator_id str
    description str
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script str
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId String
    description String
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script String
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Botconfigconsolidator resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Botconfigconsolidator Resource

    Get an existing Botconfigconsolidator 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?: BotconfigconsolidatorState, opts?: CustomResourceOptions): Botconfigconsolidator
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            botconfigconsolidator_id: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            script: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None) -> Botconfigconsolidator
    func GetBotconfigconsolidator(ctx *Context, name string, id IDInput, state *BotconfigconsolidatorState, opts ...ResourceOption) (*Botconfigconsolidator, error)
    public static Botconfigconsolidator Get(string name, Input<string> id, BotconfigconsolidatorState? state, CustomResourceOptions? opts = null)
    public static Botconfigconsolidator get(String name, Output<String> id, BotconfigconsolidatorState state, CustomResourceOptions options)
    resources:  _:    type: avi:Botconfigconsolidator    get:      id: ${id}
    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:
    BotconfigconsolidatorId string
    Description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    BotconfigconsolidatorId string
    Description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId String
    description String
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script String
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId string
    description string
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script string
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidator_id str
    description str
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script str
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    botconfigconsolidatorId String
    description String
    Human-readable description of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    script String
    Script that consolidates results from all bot decision components. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    The unique identifier of the tenant to which this consolidator belongs. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    A unique identifier for this consolidator. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware