This package is deprecated. We recommend using the new Equinix package.
equinix-metal.getOrganization
Explore with Pulumi AI
This package is deprecated. We recommend using the new Equinix package.
Provides an Equinix Metal organization datasource.
Example Usage
using Pulumi;
using EquinixMetal = Pulumi.EquinixMetal;
class MyStack : Stack
{
public MyStack()
{
var test = Output.Create(EquinixMetal.GetOrganization.InvokeAsync(new EquinixMetal.GetOrganizationArgs
{
OrganizationId = local.Org_id,
}));
this.ProjectsInTheOrg = test.Apply(test => test.ProjectIds);
}
[Output("projectsInTheOrg")]
public Output<string> ProjectsInTheOrg { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-equinix-metal/sdk/v3/go/equinix-metal"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
opt0 := local.Org_id
test, err := equinix - metal.LookupOrganization(ctx, &GetOrganizationArgs{
OrganizationId: &opt0,
}, nil)
if err != nil {
return err
}
ctx.Export("projectsInTheOrg", test.ProjectIds)
return nil
})
}
Coming soon!
import pulumi
import pulumi_equinix_metal as equinix_metal
test = equinix_metal.get_organization(organization_id=local["org_id"])
pulumi.export("projectsInTheOrg", test.project_ids)
import * as pulumi from "@pulumi/pulumi";
import * as equinix_metal from "@pulumi/equinix-metal";
const test = equinix_metal.getOrganization({
organizationId: local.org_id,
});
export const projectsInTheOrg = test.then(test => test.projectIds);
Coming soon!
Using getOrganization
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 getOrganization(args: GetOrganizationArgs, opts?: InvokeOptions): Promise<GetOrganizationResult>
function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: InvokeOptions): Output<GetOrganizationResult>
def get_organization(name: Optional[str] = None,
organization_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetOrganizationResult
def get_organization_output(name: Optional[pulumi.Input[str]] = None,
organization_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetOrganizationResult]
func LookupOrganization(ctx *Context, args *LookupOrganizationArgs, opts ...InvokeOption) (*LookupOrganizationResult, error)
func LookupOrganizationOutput(ctx *Context, args *LookupOrganizationOutputArgs, opts ...InvokeOption) LookupOrganizationResultOutput
> Note: This function is named LookupOrganization
in the Go SDK.
public static class GetOrganization
{
public static Task<GetOrganizationResult> InvokeAsync(GetOrganizationArgs args, InvokeOptions? opts = null)
public static Output<GetOrganizationResult> Invoke(GetOrganizationInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetOrganizationResult> getOrganization(GetOrganizationArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: equinix-metal:index/getOrganization:getOrganization
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
The organization name
- Organization
Id string The UUID of the organization resource
- Name string
The organization name
- Organization
Id string The UUID of the organization resource
- name String
The organization name
- organization
Id String The UUID of the organization resource
- name string
The organization name
- organization
Id string The UUID of the organization resource
- name str
The organization name
- organization_
id str The UUID of the organization resource
- name String
The organization name
- organization
Id String The UUID of the organization resource
getOrganization Result
The following output properties are available:
- Description string
Description string
- Id string
The provider-assigned unique ID for this managed resource.
- Logo string
Logo URL
- Name string
- Organization
Id string - Project
Ids List<string> UUIDs of project resources which belong to this organization
- Twitter string
Twitter handle
- Website string
Website link
- Description string
Description string
- Id string
The provider-assigned unique ID for this managed resource.
- Logo string
Logo URL
- Name string
- Organization
Id string - Project
Ids []string UUIDs of project resources which belong to this organization
- Twitter string
Twitter handle
- Website string
Website link
- description String
Description string
- id String
The provider-assigned unique ID for this managed resource.
- logo String
Logo URL
- name String
- organization
Id String - project
Ids List<String> UUIDs of project resources which belong to this organization
- twitter String
Twitter handle
- website String
Website link
- description string
Description string
- id string
The provider-assigned unique ID for this managed resource.
- logo string
Logo URL
- name string
- organization
Id string - project
Ids string[] UUIDs of project resources which belong to this organization
- twitter string
Twitter handle
- website string
Website link
- description str
Description string
- id str
The provider-assigned unique ID for this managed resource.
- logo str
Logo URL
- name str
- organization_
id str - project_
ids Sequence[str] UUIDs of project resources which belong to this organization
- twitter str
Twitter handle
- website str
Website link
- description String
Description string
- id String
The provider-assigned unique ID for this managed resource.
- logo String
Logo URL
- name String
- organization
Id String - project
Ids List<String> UUIDs of project resources which belong to this organization
- twitter String
Twitter handle
- website String
Website link
Package Details
- Repository
- Equinix Metal pulumi/pulumi-equinix-metal
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
metal
Terraform Provider.
This package is deprecated. We recommend using the new Equinix package.