1. Packages
  2. Vra Provider
  3. API Docs
  4. getPolicyApproval
vra 0.13.0 published on Wednesday, May 14, 2025 by vmware

vra.getPolicyApproval

Explore with Pulumi AI

vra logo
vra 0.13.0 published on Wednesday, May 14, 2025 by vmware

    The following examples shows how to lookup for an approval policy:

    Approval policy data source by its id:

    import * as pulumi from "@pulumi/pulumi";
    import * as vra from "@pulumi/vra";
    
    const _this = vra.getPolicyApproval({
        id: _var.vra_approval_policy_id,
    });
    
    import pulumi
    import pulumi_vra as vra
    
    this = vra.get_policy_approval(id=var["vra_approval_policy_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vra.LookupPolicyApproval(ctx, &vra.LookupPolicyApprovalArgs{
    			Id: pulumi.StringRef(_var.Vra_approval_policy_id),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vra = Pulumi.Vra;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = Vra.GetPolicyApproval.Invoke(new()
        {
            Id = @var.Vra_approval_policy_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vra.VraFunctions;
    import com.pulumi.vra.inputs.GetPolicyApprovalArgs;
    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 this = VraFunctions.getPolicyApproval(GetPolicyApprovalArgs.builder()
                .id(var_.vra_approval_policy_id())
                .build());
    
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: vra:getPolicyApproval
          arguments:
            id: ${var.vra_approval_policy_id}
    

    Approval policy data source by name search:

    import * as pulumi from "@pulumi/pulumi";
    import * as vra from "@pulumi/vra";
    
    const _this = vra.getPolicyApproval({
        search: _var.vra_approval_policy_search_name,
    });
    
    import pulumi
    import pulumi_vra as vra
    
    this = vra.get_policy_approval(search=var["vra_approval_policy_search_name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/vra/vra"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := vra.LookupPolicyApproval(ctx, &vra.LookupPolicyApprovalArgs{
    			Search: pulumi.StringRef(_var.Vra_approval_policy_search_name),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Vra = Pulumi.Vra;
    
    return await Deployment.RunAsync(() => 
    {
        var @this = Vra.GetPolicyApproval.Invoke(new()
        {
            Search = @var.Vra_approval_policy_search_name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.vra.VraFunctions;
    import com.pulumi.vra.inputs.GetPolicyApprovalArgs;
    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 this = VraFunctions.getPolicyApproval(GetPolicyApprovalArgs.builder()
                .search(var_.vra_approval_policy_search_name())
                .build());
    
        }
    }
    
    variables:
      this:
        fn::invoke:
          function: vra:getPolicyApproval
          arguments:
            search: ${var.vra_approval_policy_search_name}
    

    Using getPolicyApproval

    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 getPolicyApproval(args: GetPolicyApprovalArgs, opts?: InvokeOptions): Promise<GetPolicyApprovalResult>
    function getPolicyApprovalOutput(args: GetPolicyApprovalOutputArgs, opts?: InvokeOptions): Output<GetPolicyApprovalResult>
    def get_policy_approval(id: Optional[str] = None,
                            search: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetPolicyApprovalResult
    def get_policy_approval_output(id: Optional[pulumi.Input[str]] = None,
                            search: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetPolicyApprovalResult]
    func LookupPolicyApproval(ctx *Context, args *LookupPolicyApprovalArgs, opts ...InvokeOption) (*LookupPolicyApprovalResult, error)
    func LookupPolicyApprovalOutput(ctx *Context, args *LookupPolicyApprovalOutputArgs, opts ...InvokeOption) LookupPolicyApprovalResultOutput

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

    public static class GetPolicyApproval 
    {
        public static Task<GetPolicyApprovalResult> InvokeAsync(GetPolicyApprovalArgs args, InvokeOptions? opts = null)
        public static Output<GetPolicyApprovalResult> Invoke(GetPolicyApprovalInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPolicyApprovalResult> getPolicyApproval(GetPolicyApprovalArgs args, InvokeOptions options)
    public static Output<GetPolicyApprovalResult> getPolicyApproval(GetPolicyApprovalArgs args, InvokeOptions options)
    
    fn::invoke:
      function: vra:index/getPolicyApproval:getPolicyApproval
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The id of the policy instance.
    Search string

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    Id string
    The id of the policy instance.
    Search string

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    id String
    The id of the policy instance.
    search String

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    id string
    The id of the policy instance.
    search string

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    id str
    The id of the policy instance.
    search str

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    id String
    The id of the policy instance.
    search String

    Search criteria to narrow down the policy instance.

    Note: One of id or search must be specified.

    getPolicyApproval Result

    The following output properties are available:

    Actions List<string>
    List of actions to trigger approval.
    ApprovalLevel double
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    ApprovalMode string
    Who must approve the request.
    ApprovalType string
    Approval Type.
    Approvers List<string>
    List of approvers of the policy.
    AutoApprovalDecision string
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    AutoApprovalExpiry double
    The number of days the approvers have to respond before the Auto action is triggered.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    CreatedBy string
    The user the entity was created by.
    Criterias List<ImmutableDictionary<string, string>>
    The policy criteria.
    Description string
    A human-friendly description for the policy instance.
    EnforcementType string
    The type of enforcement for the policy.
    Id string
    LastUpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    LastUpdatedBy string
    The user the entity was last updated by.
    Name string
    A human-friendly name used as an identifier for the policy instance.
    OrgId string
    The id of the organization this entity belongs to.
    ProjectCriterias List<ImmutableDictionary<string, string>>
    The project based criteria.
    ProjectId string
    The id of the project this entity belongs to.
    Search string
    Actions []string
    List of actions to trigger approval.
    ApprovalLevel float64
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    ApprovalMode string
    Who must approve the request.
    ApprovalType string
    Approval Type.
    Approvers []string
    List of approvers of the policy.
    AutoApprovalDecision string
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    AutoApprovalExpiry float64
    The number of days the approvers have to respond before the Auto action is triggered.
    CreatedAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    CreatedBy string
    The user the entity was created by.
    Criterias []map[string]string
    The policy criteria.
    Description string
    A human-friendly description for the policy instance.
    EnforcementType string
    The type of enforcement for the policy.
    Id string
    LastUpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    LastUpdatedBy string
    The user the entity was last updated by.
    Name string
    A human-friendly name used as an identifier for the policy instance.
    OrgId string
    The id of the organization this entity belongs to.
    ProjectCriterias []map[string]string
    The project based criteria.
    ProjectId string
    The id of the project this entity belongs to.
    Search string
    actions List<String>
    List of actions to trigger approval.
    approvalLevel Double
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    approvalMode String
    Who must approve the request.
    approvalType String
    Approval Type.
    approvers List<String>
    List of approvers of the policy.
    autoApprovalDecision String
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    autoApprovalExpiry Double
    The number of days the approvers have to respond before the Auto action is triggered.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    createdBy String
    The user the entity was created by.
    criterias List<Map<String,String>>
    The policy criteria.
    description String
    A human-friendly description for the policy instance.
    enforcementType String
    The type of enforcement for the policy.
    id String
    lastUpdatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    lastUpdatedBy String
    The user the entity was last updated by.
    name String
    A human-friendly name used as an identifier for the policy instance.
    orgId String
    The id of the organization this entity belongs to.
    projectCriterias List<Map<String,String>>
    The project based criteria.
    projectId String
    The id of the project this entity belongs to.
    search String
    actions string[]
    List of actions to trigger approval.
    approvalLevel number
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    approvalMode string
    Who must approve the request.
    approvalType string
    Approval Type.
    approvers string[]
    List of approvers of the policy.
    autoApprovalDecision string
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    autoApprovalExpiry number
    The number of days the approvers have to respond before the Auto action is triggered.
    createdAt string
    Date when the entity was created. The date is in ISO 8601 and UTC.
    createdBy string
    The user the entity was created by.
    criterias {[key: string]: string}[]
    The policy criteria.
    description string
    A human-friendly description for the policy instance.
    enforcementType string
    The type of enforcement for the policy.
    id string
    lastUpdatedAt string
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    lastUpdatedBy string
    The user the entity was last updated by.
    name string
    A human-friendly name used as an identifier for the policy instance.
    orgId string
    The id of the organization this entity belongs to.
    projectCriterias {[key: string]: string}[]
    The project based criteria.
    projectId string
    The id of the project this entity belongs to.
    search string
    actions Sequence[str]
    List of actions to trigger approval.
    approval_level float
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    approval_mode str
    Who must approve the request.
    approval_type str
    Approval Type.
    approvers Sequence[str]
    List of approvers of the policy.
    auto_approval_decision str
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    auto_approval_expiry float
    The number of days the approvers have to respond before the Auto action is triggered.
    created_at str
    Date when the entity was created. The date is in ISO 8601 and UTC.
    created_by str
    The user the entity was created by.
    criterias Sequence[Mapping[str, str]]
    The policy criteria.
    description str
    A human-friendly description for the policy instance.
    enforcement_type str
    The type of enforcement for the policy.
    id str
    last_updated_at str
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    last_updated_by str
    The user the entity was last updated by.
    name str
    A human-friendly name used as an identifier for the policy instance.
    org_id str
    The id of the organization this entity belongs to.
    project_criterias Sequence[Mapping[str, str]]
    The project based criteria.
    project_id str
    The id of the project this entity belongs to.
    search str
    actions List<String>
    List of actions to trigger approval.
    approvalLevel Number
    The level defines the order in which the policy is enforced. Level 1 approvals are applied first, followed by level 2 approvals, and so on.
    approvalMode String
    Who must approve the request.
    approvalType String
    Approval Type.
    approvers List<String>
    List of approvers of the policy.
    autoApprovalDecision String
    Automatically approve or reject a request after the number of days specified in the Auto expiry trigger field.
    autoApprovalExpiry Number
    The number of days the approvers have to respond before the Auto action is triggered.
    createdAt String
    Date when the entity was created. The date is in ISO 8601 and UTC.
    createdBy String
    The user the entity was created by.
    criterias List<Map<String>>
    The policy criteria.
    description String
    A human-friendly description for the policy instance.
    enforcementType String
    The type of enforcement for the policy.
    id String
    lastUpdatedAt String
    Date when the entity was last updated. The date is ISO 8601 and UTC.
    lastUpdatedBy String
    The user the entity was last updated by.
    name String
    A human-friendly name used as an identifier for the policy instance.
    orgId String
    The id of the organization this entity belongs to.
    projectCriterias List<Map<String>>
    The project based criteria.
    projectId String
    The id of the project this entity belongs to.
    search String

    Package Details

    Repository
    vra vmware/terraform-provider-vra
    License
    Notes
    This Pulumi package is based on the vra Terraform Provider.
    vra logo
    vra 0.13.0 published on Wednesday, May 14, 2025 by vmware