1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Tenantmanagercontrolplane
  5. getLinks
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

oci.Tenantmanagercontrolplane.getLinks

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi

    This data source provides the list of Links in Oracle Cloud Infrastructure Tenantmanagercontrolplane service.

    Return a (paginated) list of links.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testLinks = oci.Tenantmanagercontrolplane.getLinks({
        childTenancyId: testTenancy.id,
        parentTenancyId: testTenancy.id,
        state: linkState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_links = oci.Tenantmanagercontrolplane.get_links(child_tenancy_id=test_tenancy["id"],
        parent_tenancy_id=test_tenancy["id"],
        state=link_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/tenantmanagercontrolplane"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tenantmanagercontrolplane.GetLinks(ctx, &tenantmanagercontrolplane.GetLinksArgs{
    			ChildTenancyId:  pulumi.StringRef(testTenancy.Id),
    			ParentTenancyId: pulumi.StringRef(testTenancy.Id),
    			State:           pulumi.StringRef(linkState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testLinks = Oci.Tenantmanagercontrolplane.GetLinks.Invoke(new()
        {
            ChildTenancyId = testTenancy.Id,
            ParentTenancyId = testTenancy.Id,
            State = linkState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Tenantmanagercontrolplane.TenantmanagercontrolplaneFunctions;
    import com.pulumi.oci.Tenantmanagercontrolplane.inputs.GetLinksArgs;
    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 testLinks = TenantmanagercontrolplaneFunctions.getLinks(GetLinksArgs.builder()
                .childTenancyId(testTenancy.id())
                .parentTenancyId(testTenancy.id())
                .state(linkState)
                .build());
    
        }
    }
    
    variables:
      testLinks:
        fn::invoke:
          function: oci:Tenantmanagercontrolplane:getLinks
          arguments:
            childTenancyId: ${testTenancy.id}
            parentTenancyId: ${testTenancy.id}
            state: ${linkState}
    

    Using getLinks

    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 getLinks(args: GetLinksArgs, opts?: InvokeOptions): Promise<GetLinksResult>
    function getLinksOutput(args: GetLinksOutputArgs, opts?: InvokeOptions): Output<GetLinksResult>
    def get_links(child_tenancy_id: Optional[str] = None,
                  filters: Optional[Sequence[_tenantmanagercontrolplane.GetLinksFilter]] = None,
                  parent_tenancy_id: Optional[str] = None,
                  state: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetLinksResult
    def get_links_output(child_tenancy_id: Optional[pulumi.Input[str]] = None,
                  filters: Optional[pulumi.Input[Sequence[pulumi.Input[_tenantmanagercontrolplane.GetLinksFilterArgs]]]] = None,
                  parent_tenancy_id: Optional[pulumi.Input[str]] = None,
                  state: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetLinksResult]
    func GetLinks(ctx *Context, args *GetLinksArgs, opts ...InvokeOption) (*GetLinksResult, error)
    func GetLinksOutput(ctx *Context, args *GetLinksOutputArgs, opts ...InvokeOption) GetLinksResultOutput

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

    public static class GetLinks 
    {
        public static Task<GetLinksResult> InvokeAsync(GetLinksArgs args, InvokeOptions? opts = null)
        public static Output<GetLinksResult> Invoke(GetLinksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLinksResult> getLinks(GetLinksArgs args, InvokeOptions options)
    public static Output<GetLinksResult> getLinks(GetLinksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Tenantmanagercontrolplane/getLinks:getLinks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ChildTenancyId string
    The ID of the child tenancy this link is associated with.
    Filters List<GetLinksFilter>
    ParentTenancyId string
    The ID of the parent tenancy this link is associated with.
    State string
    The lifecycle state of the resource.
    ChildTenancyId string
    The ID of the child tenancy this link is associated with.
    Filters []GetLinksFilter
    ParentTenancyId string
    The ID of the parent tenancy this link is associated with.
    State string
    The lifecycle state of the resource.
    childTenancyId String
    The ID of the child tenancy this link is associated with.
    filters List<GetLinksFilter>
    parentTenancyId String
    The ID of the parent tenancy this link is associated with.
    state String
    The lifecycle state of the resource.
    childTenancyId string
    The ID of the child tenancy this link is associated with.
    filters GetLinksFilter[]
    parentTenancyId string
    The ID of the parent tenancy this link is associated with.
    state string
    The lifecycle state of the resource.
    child_tenancy_id str
    The ID of the child tenancy this link is associated with.
    filters Sequence[tenantmanagercontrolplane.GetLinksFilter]
    parent_tenancy_id str
    The ID of the parent tenancy this link is associated with.
    state str
    The lifecycle state of the resource.
    childTenancyId String
    The ID of the child tenancy this link is associated with.
    filters List<Property Map>
    parentTenancyId String
    The ID of the parent tenancy this link is associated with.
    state String
    The lifecycle state of the resource.

    getLinks Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    LinkCollections List<GetLinksLinkCollection>
    The list of link_collection.
    ChildTenancyId string
    OCID of the child tenancy.
    Filters List<GetLinksFilter>
    ParentTenancyId string
    OCID of the parent tenancy.
    State string
    Lifecycle state of the link.
    Id string
    The provider-assigned unique ID for this managed resource.
    LinkCollections []GetLinksLinkCollection
    The list of link_collection.
    ChildTenancyId string
    OCID of the child tenancy.
    Filters []GetLinksFilter
    ParentTenancyId string
    OCID of the parent tenancy.
    State string
    Lifecycle state of the link.
    id String
    The provider-assigned unique ID for this managed resource.
    linkCollections List<GetLinksLinkCollection>
    The list of link_collection.
    childTenancyId String
    OCID of the child tenancy.
    filters List<GetLinksFilter>
    parentTenancyId String
    OCID of the parent tenancy.
    state String
    Lifecycle state of the link.
    id string
    The provider-assigned unique ID for this managed resource.
    linkCollections GetLinksLinkCollection[]
    The list of link_collection.
    childTenancyId string
    OCID of the child tenancy.
    filters GetLinksFilter[]
    parentTenancyId string
    OCID of the parent tenancy.
    state string
    Lifecycle state of the link.
    id str
    The provider-assigned unique ID for this managed resource.
    link_collections Sequence[tenantmanagercontrolplane.GetLinksLinkCollection]
    The list of link_collection.
    child_tenancy_id str
    OCID of the child tenancy.
    filters Sequence[tenantmanagercontrolplane.GetLinksFilter]
    parent_tenancy_id str
    OCID of the parent tenancy.
    state str
    Lifecycle state of the link.
    id String
    The provider-assigned unique ID for this managed resource.
    linkCollections List<Property Map>
    The list of link_collection.
    childTenancyId String
    OCID of the child tenancy.
    filters List<Property Map>
    parentTenancyId String
    OCID of the parent tenancy.
    state String
    Lifecycle state of the link.

    Supporting Types

    GetLinksFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetLinksLinkCollection

    GetLinksLinkCollectionItem

    ChildTenancyId string
    The ID of the child tenancy this link is associated with.
    Id string
    OCID of the link.
    ParentTenancyId string
    The ID of the parent tenancy this link is associated with.
    State string
    The lifecycle state of the resource.
    TimeCreated string
    Date-time when this link was created.
    TimeTerminated string
    Date-time when this link was terminated.
    TimeUpdated string
    Date-time when this link was last updated.
    ChildTenancyId string
    The ID of the child tenancy this link is associated with.
    Id string
    OCID of the link.
    ParentTenancyId string
    The ID of the parent tenancy this link is associated with.
    State string
    The lifecycle state of the resource.
    TimeCreated string
    Date-time when this link was created.
    TimeTerminated string
    Date-time when this link was terminated.
    TimeUpdated string
    Date-time when this link was last updated.
    childTenancyId String
    The ID of the child tenancy this link is associated with.
    id String
    OCID of the link.
    parentTenancyId String
    The ID of the parent tenancy this link is associated with.
    state String
    The lifecycle state of the resource.
    timeCreated String
    Date-time when this link was created.
    timeTerminated String
    Date-time when this link was terminated.
    timeUpdated String
    Date-time when this link was last updated.
    childTenancyId string
    The ID of the child tenancy this link is associated with.
    id string
    OCID of the link.
    parentTenancyId string
    The ID of the parent tenancy this link is associated with.
    state string
    The lifecycle state of the resource.
    timeCreated string
    Date-time when this link was created.
    timeTerminated string
    Date-time when this link was terminated.
    timeUpdated string
    Date-time when this link was last updated.
    child_tenancy_id str
    The ID of the child tenancy this link is associated with.
    id str
    OCID of the link.
    parent_tenancy_id str
    The ID of the parent tenancy this link is associated with.
    state str
    The lifecycle state of the resource.
    time_created str
    Date-time when this link was created.
    time_terminated str
    Date-time when this link was terminated.
    time_updated str
    Date-time when this link was last updated.
    childTenancyId String
    The ID of the child tenancy this link is associated with.
    id String
    OCID of the link.
    parentTenancyId String
    The ID of the parent tenancy this link is associated with.
    state String
    The lifecycle state of the resource.
    timeCreated String
    Date-time when this link was created.
    timeTerminated String
    Date-time when this link was terminated.
    timeUpdated String
    Date-time when this link was last updated.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 2025 by Pulumi