1. Packages
  2. Packages
  3. Nsxt Provider
  4. API Docs
  5. PolicyIpBlockQuota
Viewing docs for nsxt 3.12.0
published on Monday, May 18, 2026 by vmware
Viewing docs for nsxt 3.12.0
published on Monday, May 18, 2026 by vmware

    Create PolicyIpBlockQuota Resource

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

    Constructor syntax

    new PolicyIpBlockQuota(name: string, args: PolicyIpBlockQuotaArgs, opts?: CustomResourceOptions);
    @overload
    def PolicyIpBlockQuota(resource_name: str,
                           args: PolicyIpBlockQuotaArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def PolicyIpBlockQuota(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           display_name: Optional[str] = None,
                           quota: Optional[PolicyIpBlockQuotaQuotaArgs] = None,
                           context: Optional[PolicyIpBlockQuotaContextArgs] = None,
                           description: Optional[str] = None,
                           nsx_id: Optional[str] = None,
                           policy_ip_block_quota_id: Optional[str] = None,
                           tags: Optional[Sequence[PolicyIpBlockQuotaTagArgs]] = None)
    func NewPolicyIpBlockQuota(ctx *Context, name string, args PolicyIpBlockQuotaArgs, opts ...ResourceOption) (*PolicyIpBlockQuota, error)
    public PolicyIpBlockQuota(string name, PolicyIpBlockQuotaArgs args, CustomResourceOptions? opts = null)
    public PolicyIpBlockQuota(String name, PolicyIpBlockQuotaArgs args)
    public PolicyIpBlockQuota(String name, PolicyIpBlockQuotaArgs args, CustomResourceOptions options)
    
    type: nsxt:PolicyIpBlockQuota
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "nsxt_policyipblockquota" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args PolicyIpBlockQuotaArgs
    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 PolicyIpBlockQuotaArgs
    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 PolicyIpBlockQuotaArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PolicyIpBlockQuotaArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PolicyIpBlockQuotaArgs
    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 policyIpBlockQuotaResource = new Nsxt.PolicyIpBlockQuota("policyIpBlockQuotaResource", new()
    {
        DisplayName = "string",
        Quota = new Nsxt.Inputs.PolicyIpBlockQuotaQuotaArgs
        {
            IpBlockAddressType = "string",
            IpBlockVisibility = "string",
            OtherCidrs = new Nsxt.Inputs.PolicyIpBlockQuotaQuotaOtherCidrsArgs
            {
                Mask = "string",
                TotalCount = 0,
            },
            IpBlockPaths = new[]
            {
                "string",
            },
            SingleIpCidrs = 0,
        },
        Context = new Nsxt.Inputs.PolicyIpBlockQuotaContextArgs
        {
            ProjectId = "string",
        },
        Description = "string",
        NsxId = "string",
        PolicyIpBlockQuotaId = "string",
        Tags = new[]
        {
            new Nsxt.Inputs.PolicyIpBlockQuotaTagArgs
            {
                Scope = "string",
                Tag = "string",
            },
        },
    });
    
    example, err := nsxt.NewPolicyIpBlockQuota(ctx, "policyIpBlockQuotaResource", &nsxt.PolicyIpBlockQuotaArgs{
    	DisplayName: pulumi.String("string"),
    	Quota: &nsxt.PolicyIpBlockQuotaQuotaArgs{
    		IpBlockAddressType: pulumi.String("string"),
    		IpBlockVisibility:  pulumi.String("string"),
    		OtherCidrs: &nsxt.PolicyIpBlockQuotaQuotaOtherCidrsArgs{
    			Mask:       pulumi.String("string"),
    			TotalCount: pulumi.Float64(0),
    		},
    		IpBlockPaths: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		SingleIpCidrs: pulumi.Float64(0),
    	},
    	Context: &nsxt.PolicyIpBlockQuotaContextArgs{
    		ProjectId: pulumi.String("string"),
    	},
    	Description:          pulumi.String("string"),
    	NsxId:                pulumi.String("string"),
    	PolicyIpBlockQuotaId: pulumi.String("string"),
    	Tags: nsxt.PolicyIpBlockQuotaTagArray{
    		&nsxt.PolicyIpBlockQuotaTagArgs{
    			Scope: pulumi.String("string"),
    			Tag:   pulumi.String("string"),
    		},
    	},
    })
    
    resource "nsxt_policyipblockquota" "policyIpBlockQuotaResource" {
      display_name = "string"
      quota = {
        ip_block_address_type = "string"
        ip_block_visibility   = "string"
        other_cidrs = {
          mask        = "string"
          total_count = 0
        }
        ip_block_paths  = ["string"]
        single_ip_cidrs = 0
      }
      context = {
        project_id = "string"
      }
      description              = "string"
      nsx_id                   = "string"
      policy_ip_block_quota_id = "string"
      tags {
        scope = "string"
        tag   = "string"
      }
    }
    
    var policyIpBlockQuotaResource = new PolicyIpBlockQuota("policyIpBlockQuotaResource", PolicyIpBlockQuotaArgs.builder()
        .displayName("string")
        .quota(PolicyIpBlockQuotaQuotaArgs.builder()
            .ipBlockAddressType("string")
            .ipBlockVisibility("string")
            .otherCidrs(PolicyIpBlockQuotaQuotaOtherCidrsArgs.builder()
                .mask("string")
                .totalCount(0.0)
                .build())
            .ipBlockPaths("string")
            .singleIpCidrs(0.0)
            .build())
        .context(PolicyIpBlockQuotaContextArgs.builder()
            .projectId("string")
            .build())
        .description("string")
        .nsxId("string")
        .policyIpBlockQuotaId("string")
        .tags(PolicyIpBlockQuotaTagArgs.builder()
            .scope("string")
            .tag("string")
            .build())
        .build());
    
    policy_ip_block_quota_resource = nsxt.PolicyIpBlockQuota("policyIpBlockQuotaResource",
        display_name="string",
        quota={
            "ip_block_address_type": "string",
            "ip_block_visibility": "string",
            "other_cidrs": {
                "mask": "string",
                "total_count": float(0),
            },
            "ip_block_paths": ["string"],
            "single_ip_cidrs": float(0),
        },
        context={
            "project_id": "string",
        },
        description="string",
        nsx_id="string",
        policy_ip_block_quota_id="string",
        tags=[{
            "scope": "string",
            "tag": "string",
        }])
    
    const policyIpBlockQuotaResource = new nsxt.PolicyIpBlockQuota("policyIpBlockQuotaResource", {
        displayName: "string",
        quota: {
            ipBlockAddressType: "string",
            ipBlockVisibility: "string",
            otherCidrs: {
                mask: "string",
                totalCount: 0,
            },
            ipBlockPaths: ["string"],
            singleIpCidrs: 0,
        },
        context: {
            projectId: "string",
        },
        description: "string",
        nsxId: "string",
        policyIpBlockQuotaId: "string",
        tags: [{
            scope: "string",
            tag: "string",
        }],
    });
    
    type: nsxt:PolicyIpBlockQuota
    properties:
        context:
            projectId: string
        description: string
        displayName: string
        nsxId: string
        policyIpBlockQuotaId: string
        quota:
            ipBlockAddressType: string
            ipBlockPaths:
                - string
            ipBlockVisibility: string
            otherCidrs:
                mask: string
                totalCount: 0
            singleIpCidrs: 0
        tags:
            - scope: string
              tag: string
    

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

    DisplayName string
    The display name for the IP Block.
    Quota PolicyIpBlockQuotaQuota
    Quota specification
    Context PolicyIpBlockQuotaContext
    The context which the object belongs to
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyIpBlockQuotaId string
    ID of the resource.
    Tags List<PolicyIpBlockQuotaTag>
    A list of scope + tag pairs to associate with this IP Block.
    DisplayName string
    The display name for the IP Block.
    Quota PolicyIpBlockQuotaQuotaArgs
    Quota specification
    Context PolicyIpBlockQuotaContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    PolicyIpBlockQuotaId string
    ID of the resource.
    Tags []PolicyIpBlockQuotaTagArgs
    A list of scope + tag pairs to associate with this IP Block.
    display_name string
    The display name for the IP Block.
    quota object
    Quota specification
    context object
    The context which the object belongs to
    description string
    Description of the resource.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_ip_block_quota_id string
    ID of the resource.
    tags list(object)
    A list of scope + tag pairs to associate with this IP Block.
    displayName String
    The display name for the IP Block.
    quota PolicyIpBlockQuotaQuota
    Quota specification
    context PolicyIpBlockQuotaContext
    The context which the object belongs to
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpBlockQuotaId String
    ID of the resource.
    tags List<PolicyIpBlockQuotaTag>
    A list of scope + tag pairs to associate with this IP Block.
    displayName string
    The display name for the IP Block.
    quota PolicyIpBlockQuotaQuota
    Quota specification
    context PolicyIpBlockQuotaContext
    The context which the object belongs to
    description string
    Description of the resource.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpBlockQuotaId string
    ID of the resource.
    tags PolicyIpBlockQuotaTag[]
    A list of scope + tag pairs to associate with this IP Block.
    display_name str
    The display name for the IP Block.
    quota PolicyIpBlockQuotaQuotaArgs
    Quota specification
    context PolicyIpBlockQuotaContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policy_ip_block_quota_id str
    ID of the resource.
    tags Sequence[PolicyIpBlockQuotaTagArgs]
    A list of scope + tag pairs to associate with this IP Block.
    displayName String
    The display name for the IP Block.
    quota Property Map
    Quota specification
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    policyIpBlockQuotaId String
    ID of the resource.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this IP Block.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the resource.
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Id string
    The provider-assigned unique ID for this managed resource.
    Path string
    The NSX path of the resource.
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the resource.
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id string
    The provider-assigned unique ID for this managed resource.
    path string
    The NSX path of the resource.
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id str
    The provider-assigned unique ID for this managed resource.
    path str
    The NSX path of the resource.
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    id String
    The provider-assigned unique ID for this managed resource.
    path String
    The NSX path of the resource.
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.

    Look up Existing PolicyIpBlockQuota Resource

    Get an existing PolicyIpBlockQuota 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?: PolicyIpBlockQuotaState, opts?: CustomResourceOptions): PolicyIpBlockQuota
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            context: Optional[PolicyIpBlockQuotaContextArgs] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            nsx_id: Optional[str] = None,
            path: Optional[str] = None,
            policy_ip_block_quota_id: Optional[str] = None,
            quota: Optional[PolicyIpBlockQuotaQuotaArgs] = None,
            revision: Optional[float] = None,
            tags: Optional[Sequence[PolicyIpBlockQuotaTagArgs]] = None) -> PolicyIpBlockQuota
    func GetPolicyIpBlockQuota(ctx *Context, name string, id IDInput, state *PolicyIpBlockQuotaState, opts ...ResourceOption) (*PolicyIpBlockQuota, error)
    public static PolicyIpBlockQuota Get(string name, Input<string> id, PolicyIpBlockQuotaState? state, CustomResourceOptions? opts = null)
    public static PolicyIpBlockQuota get(String name, Output<String> id, PolicyIpBlockQuotaState state, CustomResourceOptions options)
    resources:  _:    type: nsxt:PolicyIpBlockQuota    get:      id: ${id}
    import {
      to = nsxt_policyipblockquota.example
      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:
    Context PolicyIpBlockQuotaContext
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    The display name for the IP Block.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the resource.
    PolicyIpBlockQuotaId string
    ID of the resource.
    Quota PolicyIpBlockQuotaQuota
    Quota specification
    Revision double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags List<PolicyIpBlockQuotaTag>
    A list of scope + tag pairs to associate with this IP Block.
    Context PolicyIpBlockQuotaContextArgs
    The context which the object belongs to
    Description string
    Description of the resource.
    DisplayName string
    The display name for the IP Block.
    NsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    Path string
    The NSX path of the resource.
    PolicyIpBlockQuotaId string
    ID of the resource.
    Quota PolicyIpBlockQuotaQuotaArgs
    Quota specification
    Revision float64
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    Tags []PolicyIpBlockQuotaTagArgs
    A list of scope + tag pairs to associate with this IP Block.
    context object
    The context which the object belongs to
    description string
    Description of the resource.
    display_name string
    The display name for the IP Block.
    nsx_id string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the resource.
    policy_ip_block_quota_id string
    ID of the resource.
    quota object
    Quota specification
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags list(object)
    A list of scope + tag pairs to associate with this IP Block.
    context PolicyIpBlockQuotaContext
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    The display name for the IP Block.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the resource.
    policyIpBlockQuotaId String
    ID of the resource.
    quota PolicyIpBlockQuotaQuota
    Quota specification
    revision Double
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<PolicyIpBlockQuotaTag>
    A list of scope + tag pairs to associate with this IP Block.
    context PolicyIpBlockQuotaContext
    The context which the object belongs to
    description string
    Description of the resource.
    displayName string
    The display name for the IP Block.
    nsxId string
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path string
    The NSX path of the resource.
    policyIpBlockQuotaId string
    ID of the resource.
    quota PolicyIpBlockQuotaQuota
    Quota specification
    revision number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags PolicyIpBlockQuotaTag[]
    A list of scope + tag pairs to associate with this IP Block.
    context PolicyIpBlockQuotaContextArgs
    The context which the object belongs to
    description str
    Description of the resource.
    display_name str
    The display name for the IP Block.
    nsx_id str
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path str
    The NSX path of the resource.
    policy_ip_block_quota_id str
    ID of the resource.
    quota PolicyIpBlockQuotaQuotaArgs
    Quota specification
    revision float
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags Sequence[PolicyIpBlockQuotaTagArgs]
    A list of scope + tag pairs to associate with this IP Block.
    context Property Map
    The context which the object belongs to
    description String
    Description of the resource.
    displayName String
    The display name for the IP Block.
    nsxId String
    The NSX ID of this resource. If set, this ID will be used to create the resource.
    path String
    The NSX path of the resource.
    policyIpBlockQuotaId String
    ID of the resource.
    quota Property Map
    Quota specification
    revision Number
    Indicates current revision number of the object as seen by NSX-T API server. This attribute can be useful for debugging.
    tags List<Property Map>
    A list of scope + tag pairs to associate with this IP Block.

    Supporting Types

    PolicyIpBlockQuotaContext, PolicyIpBlockQuotaContextArgs

    ProjectId string
    The ID of the project which the object belongs to
    ProjectId string
    The ID of the project which the object belongs to
    project_id string
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to
    projectId string
    The ID of the project which the object belongs to
    project_id str
    The ID of the project which the object belongs to
    projectId String
    The ID of the project which the object belongs to

    PolicyIpBlockQuotaQuota, PolicyIpBlockQuotaQuotaArgs

    IpBlockAddressType string
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    IpBlockVisibility string
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    OtherCidrs PolicyIpBlockQuotaQuotaOtherCidrs
    Quota for other cidrs
    IpBlockPaths List<string>
    List of IP blocks that this quota applies to.
    SingleIpCidrs double
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    IpBlockAddressType string
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    IpBlockVisibility string
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    OtherCidrs PolicyIpBlockQuotaQuotaOtherCidrs
    Quota for other cidrs
    IpBlockPaths []string
    List of IP blocks that this quota applies to.
    SingleIpCidrs float64
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    ip_block_address_type string
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    ip_block_visibility string
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    other_cidrs object
    Quota for other cidrs
    ip_block_paths list(string)
    List of IP blocks that this quota applies to.
    single_ip_cidrs number
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    ipBlockAddressType String
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    ipBlockVisibility String
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    otherCidrs PolicyIpBlockQuotaQuotaOtherCidrs
    Quota for other cidrs
    ipBlockPaths List<String>
    List of IP blocks that this quota applies to.
    singleIpCidrs Double
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    ipBlockAddressType string
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    ipBlockVisibility string
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    otherCidrs PolicyIpBlockQuotaQuotaOtherCidrs
    Quota for other cidrs
    ipBlockPaths string[]
    List of IP blocks that this quota applies to.
    singleIpCidrs number
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    ip_block_address_type str
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    ip_block_visibility str
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    other_cidrs PolicyIpBlockQuotaQuotaOtherCidrs
    Quota for other cidrs
    ip_block_paths Sequence[str]
    List of IP blocks that this quota applies to.
    single_ip_cidrs float
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).
    ipBlockAddressType String
    One of IPV4, IPV6. A quota will be applied on block of same address type. One v4 block and another v6 block cannot be specified within the same quota.
    ipBlockVisibility String
    One of EXTERNAL, PRIVATE. A quota will be applied on blocks with same visibility. Private and External blocks cannot be specified within the same block.
    otherCidrs Property Map
    Quota for other cidrs
    ipBlockPaths List<String>
    List of IP blocks that this quota applies to.
    singleIpCidrs Number
    Quota for single IP CIDRs allowed. Default is -1 (unlimited).

    PolicyIpBlockQuotaQuotaOtherCidrs, PolicyIpBlockQuotaQuotaOtherCidrsArgs

    Mask string
    Largest mask size that is allowed, format: /[size]
    TotalCount double
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    Mask string
    Largest mask size that is allowed, format: /[size]
    TotalCount float64
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    mask string
    Largest mask size that is allowed, format: /[size]
    total_count number
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    mask String
    Largest mask size that is allowed, format: /[size]
    totalCount Double
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    mask string
    Largest mask size that is allowed, format: /[size]
    totalCount number
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    mask str
    Largest mask size that is allowed, format: /[size]
    total_count float
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).
    mask String
    Largest mask size that is allowed, format: /[size]
    totalCount Number
    Number of CIDRs that can be allocated from the block. Default is -1 (unlimited).

    PolicyIpBlockQuotaTag, PolicyIpBlockQuotaTagArgs

    Scope string
    Tag string
    A list of scope + tag pairs to associate with this IP Block.
    Scope string
    Tag string
    A list of scope + tag pairs to associate with this IP Block.
    scope string
    tag string
    A list of scope + tag pairs to associate with this IP Block.
    scope String
    tag String
    A list of scope + tag pairs to associate with this IP Block.
    scope string
    tag string
    A list of scope + tag pairs to associate with this IP Block.
    scope str
    tag str
    A list of scope + tag pairs to associate with this IP Block.
    scope String
    tag String
    A list of scope + tag pairs to associate with this IP Block.

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    Viewing docs for nsxt 3.12.0
    published on Monday, May 18, 2026 by vmware

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial