Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski
proxmoxve.Permission.getPool
Explore with Pulumi AI
 
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski
Retrieves information about a specific resource pool.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as proxmoxve from "@pulumi/proxmoxve";
const operationsPool = proxmoxve.Permission.getPool({
    poolId: "operations",
});
import pulumi
import pulumi_proxmoxve as proxmoxve
operations_pool = proxmoxve.Permission.get_pool(pool_id="operations")
package main
import (
	"github.com/muhlba91/pulumi-proxmoxve/sdk/v6/go/proxmoxve/Permission"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Permission.GetPool(ctx, &permission.GetPoolArgs{
			PoolId: "operations",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ProxmoxVE = Pulumi.ProxmoxVE;
return await Deployment.RunAsync(() => 
{
    var operationsPool = ProxmoxVE.Permission.GetPool.Invoke(new()
    {
        PoolId = "operations",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.proxmoxve.Permission.PermissionFunctions;
import com.pulumi.proxmoxve.Permission.inputs.GetPoolArgs;
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 operationsPool = PermissionFunctions.getPool(GetPoolArgs.builder()
            .poolId("operations")
            .build());
    }
}
variables:
  operationsPool:
    fn::invoke:
      function: proxmoxve:Permission:getPool
      arguments:
        poolId: operations
Using getPool
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 getPool(args: GetPoolArgs, opts?: InvokeOptions): Promise<GetPoolResult>
function getPoolOutput(args: GetPoolOutputArgs, opts?: InvokeOptions): Output<GetPoolResult>def get_pool(pool_id: Optional[str] = None,
             opts: Optional[InvokeOptions] = None) -> GetPoolResult
def get_pool_output(pool_id: Optional[pulumi.Input[str]] = None,
             opts: Optional[InvokeOptions] = None) -> Output[GetPoolResult]func GetPool(ctx *Context, args *GetPoolArgs, opts ...InvokeOption) (*GetPoolResult, error)
func GetPoolOutput(ctx *Context, args *GetPoolOutputArgs, opts ...InvokeOption) GetPoolResultOutput> Note: This function is named GetPool in the Go SDK.
public static class GetPool 
{
    public static Task<GetPoolResult> InvokeAsync(GetPoolArgs args, InvokeOptions? opts = null)
    public static Output<GetPoolResult> Invoke(GetPoolInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetPoolResult> getPool(GetPoolArgs args, InvokeOptions options)
public static Output<GetPoolResult> getPool(GetPoolArgs args, InvokeOptions options)
fn::invoke:
  function: proxmoxve:Permission/getPool:getPool
  arguments:
    # arguments dictionaryThe following arguments are supported:
- PoolId string
- The pool identifier.
- PoolId string
- The pool identifier.
- poolId String
- The pool identifier.
- poolId string
- The pool identifier.
- pool_id str
- The pool identifier.
- poolId String
- The pool identifier.
getPool Result
The following output properties are available:
- Comment string
- The pool comment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Members
List<Pulumi.Proxmox VE. Permission. Outputs. Get Pool Member> 
- The pool members.
- PoolId string
- Comment string
- The pool comment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Members
[]GetPool Member 
- The pool members.
- PoolId string
- comment String
- The pool comment.
- id String
- The provider-assigned unique ID for this managed resource.
- members
List<GetPool Member> 
- The pool members.
- poolId String
- comment string
- The pool comment.
- id string
- The provider-assigned unique ID for this managed resource.
- members
GetPool Member[] 
- The pool members.
- poolId string
- comment str
- The pool comment.
- id str
- The provider-assigned unique ID for this managed resource.
- members
Sequence[permission.Get Pool Member] 
- The pool members.
- pool_id str
- comment String
- The pool comment.
- id String
- The provider-assigned unique ID for this managed resource.
- members List<Property Map>
- The pool members.
- poolId String
Supporting Types
GetPoolMember  
- DatastoreId string
- The datastore identifier.
- Id string
- The member identifier.
- NodeName string
- The node name.
- Type string
- The member type.
- VmId int
- The virtual machine identifier.
- DatastoreId string
- The datastore identifier.
- Id string
- The member identifier.
- NodeName string
- The node name.
- Type string
- The member type.
- VmId int
- The virtual machine identifier.
- datastoreId String
- The datastore identifier.
- id String
- The member identifier.
- nodeName String
- The node name.
- type String
- The member type.
- vmId Integer
- The virtual machine identifier.
- datastoreId string
- The datastore identifier.
- id string
- The member identifier.
- nodeName string
- The node name.
- type string
- The member type.
- vmId number
- The virtual machine identifier.
- datastore_id str
- The datastore identifier.
- id str
- The member identifier.
- node_name str
- The node name.
- type str
- The member type.
- vm_id int
- The virtual machine identifier.
- datastoreId String
- The datastore identifier.
- id String
- The member identifier.
- nodeName String
- The node name.
- type String
- The member type.
- vmId Number
- The virtual machine identifier.
Package Details
- Repository
- proxmoxve muhlba91/pulumi-proxmoxve
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the proxmoxTerraform Provider.
 
Proxmox Virtual Environment (Proxmox VE) v6.18.1 published on Tuesday, Jan 7, 2025 by Daniel Muehlbachler-Pietrzykowski