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

avi.Customipamdnsprofile

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.Customipamdnsprofile” sidebar_current: “docs-avi-resource-customipamdnsprofile” description: |- Creates and manages Avi CustomIpamDnsProfile.

    avi.Customipamdnsprofile

    The CustomIpamDnsProfile resource allows the creation and management of Avi CustomIpamDnsProfile

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Customipamdnsprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Customipamdnsprofile("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.NewCustomipamdnsprofile(ctx, "foo", &avi.CustomipamdnsprofileArgs{
    			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.Customipamdnsprofile("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.Customipamdnsprofile;
    import com.pulumi.avi.CustomipamdnsprofileArgs;
    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 Customipamdnsprofile("foo", CustomipamdnsprofileArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Customipamdnsprofile
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Customipamdnsprofile Resource

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

    Constructor syntax

    new Customipamdnsprofile(name: string, args: CustomipamdnsprofileArgs, opts?: CustomResourceOptions);
    @overload
    def Customipamdnsprofile(resource_name: str,
                             args: CustomipamdnsprofileArgs,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Customipamdnsprofile(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             script_uri: Optional[str] = None,
                             configpb_attributes: Optional[Sequence[CustomipamdnsprofileConfigpbAttributeArgs]] = None,
                             customipamdnsprofile_id: Optional[str] = None,
                             name: Optional[str] = None,
                             script_params: Optional[Sequence[CustomipamdnsprofileScriptParamArgs]] = None,
                             tenant_ref: Optional[str] = None,
                             uuid: Optional[str] = None)
    func NewCustomipamdnsprofile(ctx *Context, name string, args CustomipamdnsprofileArgs, opts ...ResourceOption) (*Customipamdnsprofile, error)
    public Customipamdnsprofile(string name, CustomipamdnsprofileArgs args, CustomResourceOptions? opts = null)
    public Customipamdnsprofile(String name, CustomipamdnsprofileArgs args)
    public Customipamdnsprofile(String name, CustomipamdnsprofileArgs args, CustomResourceOptions options)
    
    type: avi:Customipamdnsprofile
    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 CustomipamdnsprofileArgs
    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 CustomipamdnsprofileArgs
    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 CustomipamdnsprofileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomipamdnsprofileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomipamdnsprofileArgs
    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 customipamdnsprofileResource = new Avi.Customipamdnsprofile("customipamdnsprofileResource", new()
    {
        ScriptUri = "string",
        ConfigpbAttributes = new[]
        {
            new Avi.Inputs.CustomipamdnsprofileConfigpbAttributeArgs
            {
                Version = "string",
            },
        },
        CustomipamdnsprofileId = "string",
        Name = "string",
        ScriptParams = new[]
        {
            new Avi.Inputs.CustomipamdnsprofileScriptParamArgs
            {
                Name = "string",
                IsDynamic = "string",
                IsSensitive = "string",
                Value = "string",
            },
        },
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewCustomipamdnsprofile(ctx, "customipamdnsprofileResource", &avi.CustomipamdnsprofileArgs{
    	ScriptUri: pulumi.String("string"),
    	ConfigpbAttributes: avi.CustomipamdnsprofileConfigpbAttributeArray{
    		&avi.CustomipamdnsprofileConfigpbAttributeArgs{
    			Version: pulumi.String("string"),
    		},
    	},
    	CustomipamdnsprofileId: pulumi.String("string"),
    	Name:                   pulumi.String("string"),
    	ScriptParams: avi.CustomipamdnsprofileScriptParamArray{
    		&avi.CustomipamdnsprofileScriptParamArgs{
    			Name:        pulumi.String("string"),
    			IsDynamic:   pulumi.String("string"),
    			IsSensitive: pulumi.String("string"),
    			Value:       pulumi.String("string"),
    		},
    	},
    	TenantRef: pulumi.String("string"),
    	Uuid:      pulumi.String("string"),
    })
    
    var customipamdnsprofileResource = new Customipamdnsprofile("customipamdnsprofileResource", CustomipamdnsprofileArgs.builder()
        .scriptUri("string")
        .configpbAttributes(CustomipamdnsprofileConfigpbAttributeArgs.builder()
            .version("string")
            .build())
        .customipamdnsprofileId("string")
        .name("string")
        .scriptParams(CustomipamdnsprofileScriptParamArgs.builder()
            .name("string")
            .isDynamic("string")
            .isSensitive("string")
            .value("string")
            .build())
        .tenantRef("string")
        .uuid("string")
        .build());
    
    customipamdnsprofile_resource = avi.Customipamdnsprofile("customipamdnsprofileResource",
        script_uri="string",
        configpb_attributes=[{
            "version": "string",
        }],
        customipamdnsprofile_id="string",
        name="string",
        script_params=[{
            "name": "string",
            "is_dynamic": "string",
            "is_sensitive": "string",
            "value": "string",
        }],
        tenant_ref="string",
        uuid="string")
    
    const customipamdnsprofileResource = new avi.Customipamdnsprofile("customipamdnsprofileResource", {
        scriptUri: "string",
        configpbAttributes: [{
            version: "string",
        }],
        customipamdnsprofileId: "string",
        name: "string",
        scriptParams: [{
            name: "string",
            isDynamic: "string",
            isSensitive: "string",
            value: "string",
        }],
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Customipamdnsprofile
    properties:
        configpbAttributes:
            - version: string
        customipamdnsprofileId: string
        name: string
        scriptParams:
            - isDynamic: string
              isSensitive: string
              name: string
              value: string
        scriptUri: string
        tenantRef: string
        uuid: string
    

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

    ScriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes List<CustomipamdnsprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CustomipamdnsprofileId string
    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptParams List<CustomipamdnsprofileScriptParam>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []CustomipamdnsprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CustomipamdnsprofileId string
    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptParams []CustomipamdnsprofileScriptParamArgs
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri String
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<CustomipamdnsprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId String
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams List<CustomipamdnsprofileScriptParam>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes CustomipamdnsprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId string
    name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams CustomipamdnsprofileScriptParam[]
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    script_uri str
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[CustomipamdnsprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofile_id str
    name str
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    script_params Sequence[CustomipamdnsprofileScriptParamArgs]
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri String
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId String
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams List<Property Map>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Customipamdnsprofile 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 Customipamdnsprofile Resource

    Get an existing Customipamdnsprofile 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?: CustomipamdnsprofileState, opts?: CustomResourceOptions): Customipamdnsprofile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configpb_attributes: Optional[Sequence[CustomipamdnsprofileConfigpbAttributeArgs]] = None,
            customipamdnsprofile_id: Optional[str] = None,
            name: Optional[str] = None,
            script_params: Optional[Sequence[CustomipamdnsprofileScriptParamArgs]] = None,
            script_uri: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None) -> Customipamdnsprofile
    func GetCustomipamdnsprofile(ctx *Context, name string, id IDInput, state *CustomipamdnsprofileState, opts ...ResourceOption) (*Customipamdnsprofile, error)
    public static Customipamdnsprofile Get(string name, Input<string> id, CustomipamdnsprofileState? state, CustomResourceOptions? opts = null)
    public static Customipamdnsprofile get(String name, Output<String> id, CustomipamdnsprofileState state, CustomResourceOptions options)
    resources:  _:    type: avi:Customipamdnsprofile    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:
    ConfigpbAttributes List<CustomipamdnsprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CustomipamdnsprofileId string
    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptParams List<CustomipamdnsprofileScriptParam>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ConfigpbAttributes []CustomipamdnsprofileConfigpbAttributeArgs
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    CustomipamdnsprofileId string
    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptParams []CustomipamdnsprofileScriptParamArgs
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    ScriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    TenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<CustomipamdnsprofileConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId String
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams List<CustomipamdnsprofileScriptParam>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri String
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes CustomipamdnsprofileConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId string
    name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams CustomipamdnsprofileScriptParam[]
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri string
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef string
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpb_attributes Sequence[CustomipamdnsprofileConfigpbAttributeArgs]
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofile_id str
    name str
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    script_params Sequence[CustomipamdnsprofileScriptParamArgs]
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    script_uri str
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenant_ref str
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    customipamdnsprofileId String
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptParams List<Property Map>
    Parameters that are always passed to the ipam/dns script. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    scriptUri String
    Script uri of form controller //ipamdnsscripts/, file-name must have a .py extension and conform to pep8 naming convention. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    tenantRef String
    It is a reference to an object of type tenant. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    Supporting Types

    CustomipamdnsprofileConfigpbAttribute, CustomipamdnsprofileConfigpbAttributeArgs

    Version string
    Version string
    version String
    version string
    version String

    CustomipamdnsprofileScriptParam, CustomipamdnsprofileScriptParamArgs

    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IsDynamic string
    IsSensitive string
    Value string
    Name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    IsDynamic string
    IsSensitive string
    Value string
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    isDynamic String
    isSensitive String
    value String
    name string
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    isDynamic string
    isSensitive string
    value string
    name str
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    is_dynamic str
    is_sensitive str
    value str
    name String
    Name of the custom ipam dns profile. Field introduced in 17.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    isDynamic String
    isSensitive String
    value String

    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