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

avi.getWebapput

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.Webapput” sidebar_current: “docs-avi-datasource-webapput” description: |- Get information of Avi WebappUT.

    avi.Webapput

    This data source is used to to get avi.Webapput objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooWebapput = avi.getWebapput({
        cloudRef: "/api/cloud/?tenant=admin&name=Default-Cloud",
        name: "foo",
        uuid: "webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_webapput = avi.get_webapput(cloud_ref="/api/cloud/?tenant=admin&name=Default-Cloud",
        name="foo",
        uuid="webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
    
    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.LookupWebapput(ctx, &avi.LookupWebapputArgs{
    			CloudRef: pulumi.StringRef("/api/cloud/?tenant=admin&name=Default-Cloud"),
    			Name:     pulumi.StringRef("foo"),
    			Uuid:     pulumi.StringRef("webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
    		}, nil)
    		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 fooWebapput = Avi.GetWebapput.Invoke(new()
        {
            CloudRef = "/api/cloud/?tenant=admin&name=Default-Cloud",
            Name = "foo",
            Uuid = "webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.AviFunctions;
    import com.pulumi.avi.inputs.GetWebapputArgs;
    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) {
            final var fooWebapput = AviFunctions.getWebapput(GetWebapputArgs.builder()
                .cloudRef("/api/cloud/?tenant=admin&name=Default-Cloud")
                .name("foo")
                .uuid("webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooWebapput:
        fn::invoke:
          function: avi:getWebapput
          arguments:
            cloudRef: /api/cloud/?tenant=admin&name=Default-Cloud
            name: foo
            uuid: webapput-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getWebapput

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getWebapput(args: GetWebapputArgs, opts?: InvokeOptions): Promise<GetWebapputResult>
    function getWebapputOutput(args: GetWebapputOutputArgs, opts?: InvokeOptions): Output<GetWebapputResult>
    def get_webapput(cloud_ref: Optional[str] = None,
                     id: Optional[str] = None,
                     name: Optional[str] = None,
                     tenant_ref: Optional[str] = None,
                     uuid: Optional[str] = None,
                     opts: Optional[InvokeOptions] = None) -> GetWebapputResult
    def get_webapput_output(cloud_ref: Optional[pulumi.Input[str]] = None,
                     id: Optional[pulumi.Input[str]] = None,
                     name: Optional[pulumi.Input[str]] = None,
                     tenant_ref: Optional[pulumi.Input[str]] = None,
                     uuid: Optional[pulumi.Input[str]] = None,
                     opts: Optional[InvokeOptions] = None) -> Output[GetWebapputResult]
    func LookupWebapput(ctx *Context, args *LookupWebapputArgs, opts ...InvokeOption) (*LookupWebapputResult, error)
    func LookupWebapputOutput(ctx *Context, args *LookupWebapputOutputArgs, opts ...InvokeOption) LookupWebapputResultOutput

    > Note: This function is named LookupWebapput in the Go SDK.

    public static class GetWebapput 
    {
        public static Task<GetWebapputResult> InvokeAsync(GetWebapputArgs args, InvokeOptions? opts = null)
        public static Output<GetWebapputResult> Invoke(GetWebapputInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetWebapputResult> getWebapput(GetWebapputArgs args, InvokeOptions options)
    public static Output<GetWebapputResult> getWebapput(GetWebapputArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getWebapput:getWebapput
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudRef string
    Search WebappUT by cloud_ref.
    Id string
    Name string
    Search WebappUT by name.
    TenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Search WebappUT by uuid.
    CloudRef string
    Search WebappUT by cloud_ref.
    Id string
    Name string
    Search WebappUT by name.
    TenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Search WebappUT by uuid.
    cloudRef String
    Search WebappUT by cloud_ref.
    id String
    name String
    Search WebappUT by name.
    tenantRef String
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Search WebappUT by uuid.
    cloudRef string
    Search WebappUT by cloud_ref.
    id string
    name string
    Search WebappUT by name.
    tenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Search WebappUT by uuid.
    cloud_ref str
    Search WebappUT by cloud_ref.
    id str
    name str
    Search WebappUT by name.
    tenant_ref str
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Search WebappUT by uuid.
    cloudRef String
    Search WebappUT by cloud_ref.
    id String
    name String
    Search WebappUT by name.
    tenantRef String
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Search WebappUT by uuid.

    getWebapput Result

    The following output properties are available:

    CloudRef string
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes List<GetWebapputConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DefaultFirstInt string
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultSecondInt string
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultString string
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultThirdInt string
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    MandatoryTest List<GetWebapputMandatoryTest>
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    MandatoryTests List<GetWebapputMandatoryTest>
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SensitiveTest List<GetWebapputSensitiveTest>
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SensitiveTests List<GetWebapputSensitiveTest>
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SkipOptionalCheckTests string
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    StringLengthTest List<GetWebapputStringLengthTest>
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StringLengthTests List<GetWebapputStringLengthTest>
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestSensitiveString string
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CloudRef string
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    ConfigpbAttributes []GetWebapputConfigpbAttribute
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    DefaultFirstInt string
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultSecondInt string
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultString string
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    DefaultThirdInt string
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    MandatoryTest []GetWebapputMandatoryTest
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    MandatoryTests []GetWebapputMandatoryTest
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SensitiveTest []GetWebapputSensitiveTest
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SensitiveTests []GetWebapputSensitiveTest
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SkipOptionalCheckTests string
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    StringLengthTest []GetWebapputStringLengthTest
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StringLengthTests []GetWebapputStringLengthTest
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestSensitiveString string
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef String
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<GetWebapputConfigpbAttribute>
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    defaultFirstInt String
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultSecondInt String
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultString String
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultThirdInt String
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    mandatoryTest List<GetWebapputMandatoryTest>
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    mandatoryTests List<GetWebapputMandatoryTest>
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTest List<GetWebapputSensitiveTest>
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTests List<GetWebapputSensitiveTest>
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    skipOptionalCheckTests String
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTest List<GetWebapputStringLengthTest>
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTests List<GetWebapputStringLengthTest>
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testSensitiveString String
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef string
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes GetWebapputConfigpbAttribute[]
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    defaultFirstInt string
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultSecondInt string
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultString string
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultThirdInt string
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    id string
    mandatoryTest GetWebapputMandatoryTest[]
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    mandatoryTests GetWebapputMandatoryTest[]
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTest GetWebapputSensitiveTest[]
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTests GetWebapputSensitiveTest[]
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    skipOptionalCheckTests string
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTest GetWebapputStringLengthTest[]
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTests GetWebapputStringLengthTest[]
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testSensitiveString string
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloud_ref str
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpb_attributes Sequence[GetWebapputConfigpbAttribute]
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    default_first_int str
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    default_second_int str
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    default_string str
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    default_third_int str
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    id str
    mandatory_test Sequence[GetWebapputMandatoryTest]
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    mandatory_tests Sequence[GetWebapputMandatoryTest]
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitive_test Sequence[GetWebapputSensitiveTest]
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitive_tests Sequence[GetWebapputSensitiveTest]
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    skip_optional_check_tests str
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    string_length_test Sequence[GetWebapputStringLengthTest]
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    string_length_tests Sequence[GetWebapputStringLengthTest]
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    test_sensitive_string str
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    test_string str
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cloudRef String
    Cloud of the webapput object-level0. It is a reference to an object of type cloud. Field introduced in 30.2.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    configpbAttributes List<Property Map>
    Protobuf versioning for config pbs. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    defaultFirstInt String
    Default uint64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultSecondInt String
    Default int64 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultString String
    Default string field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    defaultThirdInt String
    Default int32 field. Field introduced in 30.1.2. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    mandatoryTest List<Property Map>
    Optional message for nested f_mandatory test cases defined at level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    mandatoryTests List<Property Map>
    Repeated message for nested f_mandatory test cases-level1. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTest List<Property Map>
    Optional message for nested f_sensitive test cases defined at level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    sensitiveTests List<Property Map>
    Repeated message for nested f_sensitive test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    skipOptionalCheckTests String
    Optional bool for nested skip_optional_check test cases-level1. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTest List<Property Map>
    Optional message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    stringLengthTests List<Property Map>
    Repeated message for nested max string length test cases. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant of the webapput object-level0. It is a reference to an object of type tenant. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testSensitiveString String
    The string for sensitive (secret) field. Object-level0. Field introduced in 22.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid of the webapput object-level0. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    GetWebapputConfigpbAttribute

    Version string
    Version string
    version String
    version string
    version String

    GetWebapputMandatoryTest

    GetWebapputMandatoryTestMandatoryMessage

    GetWebapputMandatoryTestMandatoryMessageMandatoryMessage

    GetWebapputSensitiveTest

    GetWebapputSensitiveTestSensitiveMessage

    GetWebapputSensitiveTestSensitiveMessageSensitiveMessage

    GetWebapputStringLengthTest

    StringLengthMessage List<GetWebapputStringLengthTestStringLengthMessage>
    StringLengthMessages List<GetWebapputStringLengthTestStringLengthMessage>
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestStrings List<string>
    StringLengthMessage []GetWebapputStringLengthTestStringLengthMessage
    StringLengthMessages []GetWebapputStringLengthTestStringLengthMessage
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestStrings []string
    stringLengthMessage List<GetWebapputStringLengthTestStringLengthMessage>
    stringLengthMessages List<GetWebapputStringLengthTestStringLengthMessage>
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings List<String>
    stringLengthMessage GetWebapputStringLengthTestStringLengthMessage[]
    stringLengthMessages GetWebapputStringLengthTestStringLengthMessage[]
    testString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings string[]
    string_length_message Sequence[GetWebapputStringLengthTestStringLengthMessage]
    string_length_messages Sequence[GetWebapputStringLengthTestStringLengthMessage]
    test_string str
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    test_strings Sequence[str]
    stringLengthMessage List<Property Map>
    stringLengthMessages List<Property Map>
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings List<String>

    GetWebapputStringLengthTestStringLengthMessage

    StringLengthMessage List<GetWebapputStringLengthTestStringLengthMessageStringLengthMessage>
    StringLengthMessages List<GetWebapputStringLengthTestStringLengthMessageStringLengthMessage>
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestStrings List<string>
    StringLengthMessage []GetWebapputStringLengthTestStringLengthMessageStringLengthMessage
    StringLengthMessages []GetWebapputStringLengthTestStringLengthMessageStringLengthMessage
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestStrings []string
    stringLengthMessage List<GetWebapputStringLengthTestStringLengthMessageStringLengthMessage>
    stringLengthMessages List<GetWebapputStringLengthTestStringLengthMessageStringLengthMessage>
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings List<String>
    stringLengthMessage GetWebapputStringLengthTestStringLengthMessageStringLengthMessage[]
    stringLengthMessages GetWebapputStringLengthTestStringLengthMessageStringLengthMessage[]
    testString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings string[]
    string_length_message Sequence[GetWebapputStringLengthTestStringLengthMessageStringLengthMessage]
    string_length_messages Sequence[GetWebapputStringLengthTestStringLengthMessageStringLengthMessage]
    test_string str
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    test_strings Sequence[str]
    stringLengthMessage List<Property Map>
    stringLengthMessages List<Property Map>
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testStrings List<String>

    GetWebapputStringLengthTestStringLengthMessageStringLengthMessage

    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TestString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString string
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    test_string str
    The maximum string length. Field introduced in 21.1.5, 22.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    testString String
    The maximum string length. Field introduced in 21.1.5, 22.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