1. Packages
  2. Vcd Provider
  3. API Docs
  4. NetworkPool
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NetworkPool

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NetworkPool Resource

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

    Constructor syntax

    new NetworkPool(name: string, args: NetworkPoolArgs, opts?: CustomResourceOptions);
    @overload
    def NetworkPool(resource_name: str,
                    args: NetworkPoolArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def NetworkPool(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    network_provider_id: Optional[str] = None,
                    type: Optional[str] = None,
                    backing: Optional[NetworkPoolBackingArgs] = None,
                    backing_selection_constraint: Optional[str] = None,
                    description: Optional[str] = None,
                    name: Optional[str] = None,
                    network_pool_id: Optional[str] = None)
    func NewNetworkPool(ctx *Context, name string, args NetworkPoolArgs, opts ...ResourceOption) (*NetworkPool, error)
    public NetworkPool(string name, NetworkPoolArgs args, CustomResourceOptions? opts = null)
    public NetworkPool(String name, NetworkPoolArgs args)
    public NetworkPool(String name, NetworkPoolArgs args, CustomResourceOptions options)
    
    type: vcd:NetworkPool
    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 NetworkPoolArgs
    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 NetworkPoolArgs
    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 NetworkPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NetworkPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NetworkPoolArgs
    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 networkPoolResource = new Vcd.NetworkPool("networkPoolResource", new()
    {
        NetworkProviderId = "string",
        Type = "string",
        Backing = new Vcd.Inputs.NetworkPoolBackingArgs
        {
            DistributedSwitch = new Vcd.Inputs.NetworkPoolBackingDistributedSwitchArgs
            {
                Id = "string",
                Name = "string",
                Type = "string",
            },
            PortGroups = new[]
            {
                new Vcd.Inputs.NetworkPoolBackingPortGroupArgs
                {
                    Id = "string",
                    Name = "string",
                    Type = "string",
                },
            },
            RangeIds = new[]
            {
                new Vcd.Inputs.NetworkPoolBackingRangeIdArgs
                {
                    EndId = 0,
                    StartId = 0,
                },
            },
            TransportZone = new Vcd.Inputs.NetworkPoolBackingTransportZoneArgs
            {
                Id = "string",
                Name = "string",
                Type = "string",
            },
        },
        BackingSelectionConstraint = "string",
        Description = "string",
        Name = "string",
        NetworkPoolId = "string",
    });
    
    example, err := vcd.NewNetworkPool(ctx, "networkPoolResource", &vcd.NetworkPoolArgs{
    	NetworkProviderId: pulumi.String("string"),
    	Type:              pulumi.String("string"),
    	Backing: &vcd.NetworkPoolBackingArgs{
    		DistributedSwitch: &vcd.NetworkPoolBackingDistributedSwitchArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    			Type: pulumi.String("string"),
    		},
    		PortGroups: vcd.NetworkPoolBackingPortGroupArray{
    			&vcd.NetworkPoolBackingPortGroupArgs{
    				Id:   pulumi.String("string"),
    				Name: pulumi.String("string"),
    				Type: pulumi.String("string"),
    			},
    		},
    		RangeIds: vcd.NetworkPoolBackingRangeIdArray{
    			&vcd.NetworkPoolBackingRangeIdArgs{
    				EndId:   pulumi.Float64(0),
    				StartId: pulumi.Float64(0),
    			},
    		},
    		TransportZone: &vcd.NetworkPoolBackingTransportZoneArgs{
    			Id:   pulumi.String("string"),
    			Name: pulumi.String("string"),
    			Type: pulumi.String("string"),
    		},
    	},
    	BackingSelectionConstraint: pulumi.String("string"),
    	Description:                pulumi.String("string"),
    	Name:                       pulumi.String("string"),
    	NetworkPoolId:              pulumi.String("string"),
    })
    
    var networkPoolResource = new NetworkPool("networkPoolResource", NetworkPoolArgs.builder()
        .networkProviderId("string")
        .type("string")
        .backing(NetworkPoolBackingArgs.builder()
            .distributedSwitch(NetworkPoolBackingDistributedSwitchArgs.builder()
                .id("string")
                .name("string")
                .type("string")
                .build())
            .portGroups(NetworkPoolBackingPortGroupArgs.builder()
                .id("string")
                .name("string")
                .type("string")
                .build())
            .rangeIds(NetworkPoolBackingRangeIdArgs.builder()
                .endId(0)
                .startId(0)
                .build())
            .transportZone(NetworkPoolBackingTransportZoneArgs.builder()
                .id("string")
                .name("string")
                .type("string")
                .build())
            .build())
        .backingSelectionConstraint("string")
        .description("string")
        .name("string")
        .networkPoolId("string")
        .build());
    
    network_pool_resource = vcd.NetworkPool("networkPoolResource",
        network_provider_id="string",
        type="string",
        backing={
            "distributed_switch": {
                "id": "string",
                "name": "string",
                "type": "string",
            },
            "port_groups": [{
                "id": "string",
                "name": "string",
                "type": "string",
            }],
            "range_ids": [{
                "end_id": 0,
                "start_id": 0,
            }],
            "transport_zone": {
                "id": "string",
                "name": "string",
                "type": "string",
            },
        },
        backing_selection_constraint="string",
        description="string",
        name="string",
        network_pool_id="string")
    
    const networkPoolResource = new vcd.NetworkPool("networkPoolResource", {
        networkProviderId: "string",
        type: "string",
        backing: {
            distributedSwitch: {
                id: "string",
                name: "string",
                type: "string",
            },
            portGroups: [{
                id: "string",
                name: "string",
                type: "string",
            }],
            rangeIds: [{
                endId: 0,
                startId: 0,
            }],
            transportZone: {
                id: "string",
                name: "string",
                type: "string",
            },
        },
        backingSelectionConstraint: "string",
        description: "string",
        name: "string",
        networkPoolId: "string",
    });
    
    type: vcd:NetworkPool
    properties:
        backing:
            distributedSwitch:
                id: string
                name: string
                type: string
            portGroups:
                - id: string
                  name: string
                  type: string
            rangeIds:
                - endId: 0
                  startId: 0
            transportZone:
                id: string
                name: string
                type: string
        backingSelectionConstraint: string
        description: string
        name: string
        networkPoolId: string
        networkProviderId: string
        type: string
    

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

    NetworkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    Backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    BackingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    Description string
    Description of the network pool
    Name string
    Unique name of network pool
    NetworkPoolId string
    (Computed) The ID of the backing element
    NetworkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    Backing NetworkPoolBackingArgs
    The components used by the network pool. See Backing below for details
    BackingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    Description string
    Description of the network pool
    Name string
    Unique name of network pool
    NetworkPoolId string
    (Computed) The ID of the backing element
    networkProviderId String
    Id of the network provider (either vCenter or NSX-T manager)
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint String
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description String
    Description of the network pool
    name String
    Unique name of network pool
    networkPoolId String
    (Computed) The ID of the backing element
    networkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description string
    Description of the network pool
    name string
    Unique name of network pool
    networkPoolId string
    (Computed) The ID of the backing element
    network_provider_id str
    Id of the network provider (either vCenter or NSX-T manager)
    type str
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    backing NetworkPoolBackingArgs
    The components used by the network pool. See Backing below for details
    backing_selection_constraint str
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description str
    Description of the network pool
    name str
    Unique name of network pool
    network_pool_id str
    (Computed) The ID of the backing element
    networkProviderId String
    Id of the network provider (either vCenter or NSX-T manager)
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    backing Property Map
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint String
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description String
    Description of the network pool
    name String
    Unique name of network pool
    networkPoolId String
    (Computed) The ID of the backing element

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkProviderName string
    Name of the network provider
    NetworkProviderType string
    Type of network provider
    PromiscuousMode bool
    Whether the network pool is in promiscuous mode
    Status string
    Status of the network pool
    TotalBackingsCount double
    Total number of backings
    UsedBackingsCount double
    Number of used backings
    Id string
    The provider-assigned unique ID for this managed resource.
    NetworkProviderName string
    Name of the network provider
    NetworkProviderType string
    Type of network provider
    PromiscuousMode bool
    Whether the network pool is in promiscuous mode
    Status string
    Status of the network pool
    TotalBackingsCount float64
    Total number of backings
    UsedBackingsCount float64
    Number of used backings
    id String
    The provider-assigned unique ID for this managed resource.
    networkProviderName String
    Name of the network provider
    networkProviderType String
    Type of network provider
    promiscuousMode Boolean
    Whether the network pool is in promiscuous mode
    status String
    Status of the network pool
    totalBackingsCount Double
    Total number of backings
    usedBackingsCount Double
    Number of used backings
    id string
    The provider-assigned unique ID for this managed resource.
    networkProviderName string
    Name of the network provider
    networkProviderType string
    Type of network provider
    promiscuousMode boolean
    Whether the network pool is in promiscuous mode
    status string
    Status of the network pool
    totalBackingsCount number
    Total number of backings
    usedBackingsCount number
    Number of used backings
    id str
    The provider-assigned unique ID for this managed resource.
    network_provider_name str
    Name of the network provider
    network_provider_type str
    Type of network provider
    promiscuous_mode bool
    Whether the network pool is in promiscuous mode
    status str
    Status of the network pool
    total_backings_count float
    Total number of backings
    used_backings_count float
    Number of used backings
    id String
    The provider-assigned unique ID for this managed resource.
    networkProviderName String
    Name of the network provider
    networkProviderType String
    Type of network provider
    promiscuousMode Boolean
    Whether the network pool is in promiscuous mode
    status String
    Status of the network pool
    totalBackingsCount Number
    Total number of backings
    usedBackingsCount Number
    Number of used backings

    Look up Existing NetworkPool Resource

    Get an existing NetworkPool 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?: NetworkPoolState, opts?: CustomResourceOptions): NetworkPool
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backing: Optional[NetworkPoolBackingArgs] = None,
            backing_selection_constraint: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            network_pool_id: Optional[str] = None,
            network_provider_id: Optional[str] = None,
            network_provider_name: Optional[str] = None,
            network_provider_type: Optional[str] = None,
            promiscuous_mode: Optional[bool] = None,
            status: Optional[str] = None,
            total_backings_count: Optional[float] = None,
            type: Optional[str] = None,
            used_backings_count: Optional[float] = None) -> NetworkPool
    func GetNetworkPool(ctx *Context, name string, id IDInput, state *NetworkPoolState, opts ...ResourceOption) (*NetworkPool, error)
    public static NetworkPool Get(string name, Input<string> id, NetworkPoolState? state, CustomResourceOptions? opts = null)
    public static NetworkPool get(String name, Output<String> id, NetworkPoolState state, CustomResourceOptions options)
    resources:  _:    type: vcd:NetworkPool    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:
    Backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    BackingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    Description string
    Description of the network pool
    Name string
    Unique name of network pool
    NetworkPoolId string
    (Computed) The ID of the backing element
    NetworkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    NetworkProviderName string
    Name of the network provider
    NetworkProviderType string
    Type of network provider
    PromiscuousMode bool
    Whether the network pool is in promiscuous mode
    Status string
    Status of the network pool
    TotalBackingsCount double
    Total number of backings
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    UsedBackingsCount double
    Number of used backings
    Backing NetworkPoolBackingArgs
    The components used by the network pool. See Backing below for details
    BackingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    Description string
    Description of the network pool
    Name string
    Unique name of network pool
    NetworkPoolId string
    (Computed) The ID of the backing element
    NetworkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    NetworkProviderName string
    Name of the network provider
    NetworkProviderType string
    Type of network provider
    PromiscuousMode bool
    Whether the network pool is in promiscuous mode
    Status string
    Status of the network pool
    TotalBackingsCount float64
    Total number of backings
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    UsedBackingsCount float64
    Number of used backings
    backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint String
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description String
    Description of the network pool
    name String
    Unique name of network pool
    networkPoolId String
    (Computed) The ID of the backing element
    networkProviderId String
    Id of the network provider (either vCenter or NSX-T manager)
    networkProviderName String
    Name of the network provider
    networkProviderType String
    Type of network provider
    promiscuousMode Boolean
    Whether the network pool is in promiscuous mode
    status String
    Status of the network pool
    totalBackingsCount Double
    Total number of backings
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    usedBackingsCount Double
    Number of used backings
    backing NetworkPoolBacking
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint string
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description string
    Description of the network pool
    name string
    Unique name of network pool
    networkPoolId string
    (Computed) The ID of the backing element
    networkProviderId string
    Id of the network provider (either vCenter or NSX-T manager)
    networkProviderName string
    Name of the network provider
    networkProviderType string
    Type of network provider
    promiscuousMode boolean
    Whether the network pool is in promiscuous mode
    status string
    Status of the network pool
    totalBackingsCount number
    Total number of backings
    type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    usedBackingsCount number
    Number of used backings
    backing NetworkPoolBackingArgs
    The components used by the network pool. See Backing below for details
    backing_selection_constraint str
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description str
    Description of the network pool
    name str
    Unique name of network pool
    network_pool_id str
    (Computed) The ID of the backing element
    network_provider_id str
    Id of the network provider (either vCenter or NSX-T manager)
    network_provider_name str
    Name of the network provider
    network_provider_type str
    Type of network provider
    promiscuous_mode bool
    Whether the network pool is in promiscuous mode
    status str
    Status of the network pool
    total_backings_count float
    Total number of backings
    type str
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    used_backings_count float
    Number of used backings
    backing Property Map
    The components used by the network pool. See Backing below for details
    backingSelectionConstraint String
    Define how the backing components are considered. It should be one of the following:

    • use-explicit-name (Default) The backing components must be named explicitly;
    • use-when-only-one The automatically selected backing component will be used if there is only one available;
    • use-first-available Use the first available backing component.
    description String
    Description of the network pool
    name String
    Unique name of network pool
    networkPoolId String
    (Computed) The ID of the backing element
    networkProviderId String
    Id of the network provider (either vCenter or NSX-T manager)
    networkProviderName String
    Name of the network provider
    networkProviderType String
    Type of network provider
    promiscuousMode Boolean
    Whether the network pool is in promiscuous mode
    status String
    Status of the network pool
    totalBackingsCount Number
    Total number of backings
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    usedBackingsCount Number
    Number of used backings

    Supporting Types

    NetworkPoolBacking, NetworkPoolBackingArgs

    DistributedSwitch NetworkPoolBackingDistributedSwitch
    (Optional) A backing structure used for VLAN network pool
    PortGroups List<NetworkPoolBackingPortGroup>
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    RangeIds List<NetworkPoolBackingRangeId>
    (Optional) A list of range IDs, required with VLAN network pools
    TransportZone NetworkPoolBackingTransportZone
    (Optional) A backing structure used for GENEVE network pool
    DistributedSwitch NetworkPoolBackingDistributedSwitch
    (Optional) A backing structure used for VLAN network pool
    PortGroups []NetworkPoolBackingPortGroup
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    RangeIds []NetworkPoolBackingRangeId
    (Optional) A list of range IDs, required with VLAN network pools
    TransportZone NetworkPoolBackingTransportZone
    (Optional) A backing structure used for GENEVE network pool
    distributedSwitch NetworkPoolBackingDistributedSwitch
    (Optional) A backing structure used for VLAN network pool
    portGroups List<NetworkPoolBackingPortGroup>
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    rangeIds List<NetworkPoolBackingRangeId>
    (Optional) A list of range IDs, required with VLAN network pools
    transportZone NetworkPoolBackingTransportZone
    (Optional) A backing structure used for GENEVE network pool
    distributedSwitch NetworkPoolBackingDistributedSwitch
    (Optional) A backing structure used for VLAN network pool
    portGroups NetworkPoolBackingPortGroup[]
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    rangeIds NetworkPoolBackingRangeId[]
    (Optional) A list of range IDs, required with VLAN network pools
    transportZone NetworkPoolBackingTransportZone
    (Optional) A backing structure used for GENEVE network pool
    distributed_switch NetworkPoolBackingDistributedSwitch
    (Optional) A backing structure used for VLAN network pool
    port_groups Sequence[NetworkPoolBackingPortGroup]
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    range_ids Sequence[NetworkPoolBackingRangeId]
    (Optional) A list of range IDs, required with VLAN network pools
    transport_zone NetworkPoolBackingTransportZone
    (Optional) A backing structure used for GENEVE network pool
    distributedSwitch Property Map
    (Optional) A backing structure used for VLAN network pool
    portGroups List<Property Map>
    (Optional) A list of backing structure used for PORTGROUP_BACKED network pool
    rangeIds List<Property Map>
    (Optional) A list of range IDs, required with VLAN network pools
    transportZone Property Map
    (Optional) A backing structure used for GENEVE network pool

    NetworkPoolBackingDistributedSwitch, NetworkPoolBackingDistributedSwitchArgs

    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id string
    (Computed) The ID of the backing element
    name string
    Unique name of network pool
    type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id str
    (Computed) The ID of the backing element
    name str
    Unique name of network pool
    type str
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)

    NetworkPoolBackingPortGroup, NetworkPoolBackingPortGroupArgs

    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id string
    (Computed) The ID of the backing element
    name string
    Unique name of network pool
    type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id str
    (Computed) The ID of the backing element
    name str
    Unique name of network pool
    type str
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)

    NetworkPoolBackingRangeId, NetworkPoolBackingRangeIdArgs

    EndId double
    (Required) The last ID of the range
    StartId double
    (Required) The first ID of the range
    EndId float64
    (Required) The last ID of the range
    StartId float64
    (Required) The first ID of the range
    endId Double
    (Required) The last ID of the range
    startId Double
    (Required) The first ID of the range
    endId number
    (Required) The last ID of the range
    startId number
    (Required) The first ID of the range
    end_id float
    (Required) The last ID of the range
    start_id float
    (Required) The first ID of the range
    endId Number
    (Required) The last ID of the range
    startId Number
    (Required) The first ID of the range

    NetworkPoolBackingTransportZone, NetworkPoolBackingTransportZoneArgs

    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    Id string
    (Computed) The ID of the backing element
    Name string
    Unique name of network pool
    Type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id string
    (Computed) The ID of the backing element
    name string
    Unique name of network pool
    type string
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id str
    (Computed) The ID of the backing element
    name str
    Unique name of network pool
    type str
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)
    id String
    (Computed) The ID of the backing element
    name String
    Unique name of network pool
    type String
    Type of the network pool (one of GENEVE, VLAN, PORTGROUP_BACKED)

    Package Details

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