1. Packages
  2. Nsxt Provider
  3. API Docs
  4. getPolicyIpv6NdraProfile
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

nsxt.getPolicyIpv6NdraProfile

Explore with Pulumi AI

nsxt logo
nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware

    This data source provides information about policy IPv6 Neighbor Discovery and Router Advertisement Profile configured on NSX.

    This data source is applicable to NSX Global Manager, and NSX Policy Manager.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as nsxt from "@pulumi/nsxt";
    
    const test = nsxt.getPolicyIpv6NdraProfile({
        displayName: "ipv6-ndra-profile1",
    });
    
    import pulumi
    import pulumi_nsxt as nsxt
    
    test = nsxt.get_policy_ipv6_ndra_profile(display_name="ipv6-ndra-profile1")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nsxt/v3/nsxt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := nsxt.GetPolicyIpv6NdraProfile(ctx, &nsxt.GetPolicyIpv6NdraProfileArgs{
    			DisplayName: pulumi.StringRef("ipv6-ndra-profile1"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nsxt = Pulumi.Nsxt;
    
    return await Deployment.RunAsync(() => 
    {
        var test = Nsxt.GetPolicyIpv6NdraProfile.Invoke(new()
        {
            DisplayName = "ipv6-ndra-profile1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nsxt.NsxtFunctions;
    import com.pulumi.nsxt.inputs.GetPolicyIpv6NdraProfileArgs;
    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 test = NsxtFunctions.getPolicyIpv6NdraProfile(GetPolicyIpv6NdraProfileArgs.builder()
                .displayName("ipv6-ndra-profile1")
                .build());
    
        }
    }
    
    variables:
      test:
        fn::invoke:
          function: nsxt:getPolicyIpv6NdraProfile
          arguments:
            displayName: ipv6-ndra-profile1
    

    Multi-Tenancy

    import * as pulumi from "@pulumi/pulumi";
    import * as nsxt from "@pulumi/nsxt";
    
    const demoproj = nsxt.getPolicyProject({
        displayName: "demoproj",
    });
    const demondra = demoproj.then(demoproj => nsxt.getPolicyIpv6NdraProfile({
        context: {
            projectId: demoproj.id,
        },
        displayName: "demondra",
    }));
    
    import pulumi
    import pulumi_nsxt as nsxt
    
    demoproj = nsxt.get_policy_project(display_name="demoproj")
    demondra = nsxt.get_policy_ipv6_ndra_profile(context={
            "project_id": demoproj.id,
        },
        display_name="demondra")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/nsxt/v3/nsxt"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		demoproj, err := nsxt.LookupPolicyProject(ctx, &nsxt.LookupPolicyProjectArgs{
    			DisplayName: pulumi.StringRef("demoproj"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = nsxt.GetPolicyIpv6NdraProfile(ctx, &nsxt.GetPolicyIpv6NdraProfileArgs{
    			Context: nsxt.GetPolicyIpv6NdraProfileContext{
    				ProjectId: demoproj.Id,
    			},
    			DisplayName: pulumi.StringRef("demondra"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Nsxt = Pulumi.Nsxt;
    
    return await Deployment.RunAsync(() => 
    {
        var demoproj = Nsxt.GetPolicyProject.Invoke(new()
        {
            DisplayName = "demoproj",
        });
    
        var demondra = Nsxt.GetPolicyIpv6NdraProfile.Invoke(new()
        {
            Context = new Nsxt.Inputs.GetPolicyIpv6NdraProfileContextInputArgs
            {
                ProjectId = demoproj.Apply(getPolicyProjectResult => getPolicyProjectResult.Id),
            },
            DisplayName = "demondra",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nsxt.NsxtFunctions;
    import com.pulumi.nsxt.inputs.GetPolicyProjectArgs;
    import com.pulumi.nsxt.inputs.GetPolicyIpv6NdraProfileArgs;
    import com.pulumi.nsxt.inputs.GetPolicyIpv6NdraProfileContextArgs;
    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 demoproj = NsxtFunctions.getPolicyProject(GetPolicyProjectArgs.builder()
                .displayName("demoproj")
                .build());
    
            final var demondra = NsxtFunctions.getPolicyIpv6NdraProfile(GetPolicyIpv6NdraProfileArgs.builder()
                .context(GetPolicyIpv6NdraProfileContextArgs.builder()
                    .projectId(demoproj.applyValue(getPolicyProjectResult -> getPolicyProjectResult.id()))
                    .build())
                .displayName("demondra")
                .build());
    
        }
    }
    
    variables:
      demoproj:
        fn::invoke:
          function: nsxt:getPolicyProject
          arguments:
            displayName: demoproj
      demondra:
        fn::invoke:
          function: nsxt:getPolicyIpv6NdraProfile
          arguments:
            context:
              projectId: ${demoproj.id}
            displayName: demondra
    

    Using getPolicyIpv6NdraProfile

    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 getPolicyIpv6NdraProfile(args: GetPolicyIpv6NdraProfileArgs, opts?: InvokeOptions): Promise<GetPolicyIpv6NdraProfileResult>
    function getPolicyIpv6NdraProfileOutput(args: GetPolicyIpv6NdraProfileOutputArgs, opts?: InvokeOptions): Output<GetPolicyIpv6NdraProfileResult>
    def get_policy_ipv6_ndra_profile(context: Optional[GetPolicyIpv6NdraProfileContext] = None,
                                     description: Optional[str] = None,
                                     display_name: Optional[str] = None,
                                     id: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetPolicyIpv6NdraProfileResult
    def get_policy_ipv6_ndra_profile_output(context: Optional[pulumi.Input[GetPolicyIpv6NdraProfileContextArgs]] = None,
                                     description: Optional[pulumi.Input[str]] = None,
                                     display_name: Optional[pulumi.Input[str]] = None,
                                     id: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetPolicyIpv6NdraProfileResult]
    func GetPolicyIpv6NdraProfile(ctx *Context, args *GetPolicyIpv6NdraProfileArgs, opts ...InvokeOption) (*GetPolicyIpv6NdraProfileResult, error)
    func GetPolicyIpv6NdraProfileOutput(ctx *Context, args *GetPolicyIpv6NdraProfileOutputArgs, opts ...InvokeOption) GetPolicyIpv6NdraProfileResultOutput

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

    public static class GetPolicyIpv6NdraProfile 
    {
        public static Task<GetPolicyIpv6NdraProfileResult> InvokeAsync(GetPolicyIpv6NdraProfileArgs args, InvokeOptions? opts = null)
        public static Output<GetPolicyIpv6NdraProfileResult> Invoke(GetPolicyIpv6NdraProfileInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetPolicyIpv6NdraProfileResult> getPolicyIpv6NdraProfile(GetPolicyIpv6NdraProfileArgs args, InvokeOptions options)
    public static Output<GetPolicyIpv6NdraProfileResult> getPolicyIpv6NdraProfile(GetPolicyIpv6NdraProfileArgs args, InvokeOptions options)
    
    fn::invoke:
      function: nsxt:index/getPolicyIpv6NdraProfile:getPolicyIpv6NdraProfile
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Context GetPolicyIpv6NdraProfileContext
    The context which the object belongs to
    Description string
    The description of the resource.
    DisplayName string
    The Display Name prefix of the Profile to retrieve.
    Id string
    The ID of Profile to retrieve.
    Context GetPolicyIpv6NdraProfileContext
    The context which the object belongs to
    Description string
    The description of the resource.
    DisplayName string
    The Display Name prefix of the Profile to retrieve.
    Id string
    The ID of Profile to retrieve.
    context GetPolicyIpv6NdraProfileContext
    The context which the object belongs to
    description String
    The description of the resource.
    displayName String
    The Display Name prefix of the Profile to retrieve.
    id String
    The ID of Profile to retrieve.
    context GetPolicyIpv6NdraProfileContext
    The context which the object belongs to
    description string
    The description of the resource.
    displayName string
    The Display Name prefix of the Profile to retrieve.
    id string
    The ID of Profile to retrieve.
    context GetPolicyIpv6NdraProfileContext
    The context which the object belongs to
    description str
    The description of the resource.
    display_name str
    The Display Name prefix of the Profile to retrieve.
    id str
    The ID of Profile to retrieve.
    context Property Map
    The context which the object belongs to
    description String
    The description of the resource.
    displayName String
    The Display Name prefix of the Profile to retrieve.
    id String
    The ID of Profile to retrieve.

    getPolicyIpv6NdraProfile Result

    The following output properties are available:

    Description string
    The description of the resource.
    DisplayName string
    Id string
    Path string
    The NSX path of the policy resource.
    Context GetPolicyIpv6NdraProfileContext
    Description string
    The description of the resource.
    DisplayName string
    Id string
    Path string
    The NSX path of the policy resource.
    Context GetPolicyIpv6NdraProfileContext
    description String
    The description of the resource.
    displayName String
    id String
    path String
    The NSX path of the policy resource.
    context GetPolicyIpv6NdraProfileContext
    description string
    The description of the resource.
    displayName string
    id string
    path string
    The NSX path of the policy resource.
    context GetPolicyIpv6NdraProfileContext
    description str
    The description of the resource.
    display_name str
    id str
    path str
    The NSX path of the policy resource.
    context GetPolicyIpv6NdraProfileContext
    description String
    The description of the resource.
    displayName String
    id String
    path String
    The NSX path of the policy resource.
    context Property Map

    Supporting Types

    GetPolicyIpv6NdraProfileContext

    ProjectId 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
    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

    Package Details

    Repository
    nsxt vmware/terraform-provider-nsxt
    License
    Notes
    This Pulumi package is based on the nsxt Terraform Provider.
    nsxt logo
    nsxt 3.8.1 published on Wednesday, Apr 30, 2025 by vmware