Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi
oci.Tenantmanagercontrolplane.getSenderInvitations
Explore with Pulumi AI
This data source provides the list of Sender Invitations in Oracle Cloud Infrastructure Tenantmanagercontrolplane service.
Return a (paginated) list of sender invitations.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSenderInvitations = oci.Tenantmanagercontrolplane.getSenderInvitations({
compartmentId: compartmentId,
displayName: senderInvitationDisplayName,
recipientTenancyId: testTenancy.id,
state: senderInvitationState,
status: senderInvitationStatus,
});
import pulumi
import pulumi_oci as oci
test_sender_invitations = oci.Tenantmanagercontrolplane.get_sender_invitations(compartment_id=compartment_id,
display_name=sender_invitation_display_name,
recipient_tenancy_id=test_tenancy["id"],
state=sender_invitation_state,
status=sender_invitation_status)
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.GetSenderInvitations(ctx, &tenantmanagercontrolplane.GetSenderInvitationsArgs{
CompartmentId: compartmentId,
DisplayName: pulumi.StringRef(senderInvitationDisplayName),
RecipientTenancyId: pulumi.StringRef(testTenancy.Id),
State: pulumi.StringRef(senderInvitationState),
Status: pulumi.StringRef(senderInvitationStatus),
}, 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 testSenderInvitations = Oci.Tenantmanagercontrolplane.GetSenderInvitations.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = senderInvitationDisplayName,
RecipientTenancyId = testTenancy.Id,
State = senderInvitationState,
Status = senderInvitationStatus,
});
});
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.GetSenderInvitationsArgs;
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 testSenderInvitations = TenantmanagercontrolplaneFunctions.getSenderInvitations(GetSenderInvitationsArgs.builder()
.compartmentId(compartmentId)
.displayName(senderInvitationDisplayName)
.recipientTenancyId(testTenancy.id())
.state(senderInvitationState)
.status(senderInvitationStatus)
.build());
}
}
variables:
testSenderInvitations:
fn::invoke:
function: oci:Tenantmanagercontrolplane:getSenderInvitations
arguments:
compartmentId: ${compartmentId}
displayName: ${senderInvitationDisplayName}
recipientTenancyId: ${testTenancy.id}
state: ${senderInvitationState}
status: ${senderInvitationStatus}
Using getSenderInvitations
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 getSenderInvitations(args: GetSenderInvitationsArgs, opts?: InvokeOptions): Promise<GetSenderInvitationsResult>
function getSenderInvitationsOutput(args: GetSenderInvitationsOutputArgs, opts?: InvokeOptions): Output<GetSenderInvitationsResult>
def get_sender_invitations(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_tenantmanagercontrolplane.GetSenderInvitationsFilter]] = None,
recipient_tenancy_id: Optional[str] = None,
state: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSenderInvitationsResult
def get_sender_invitations_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_tenantmanagercontrolplane.GetSenderInvitationsFilterArgs]]]] = None,
recipient_tenancy_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSenderInvitationsResult]
func GetSenderInvitations(ctx *Context, args *GetSenderInvitationsArgs, opts ...InvokeOption) (*GetSenderInvitationsResult, error)
func GetSenderInvitationsOutput(ctx *Context, args *GetSenderInvitationsOutputArgs, opts ...InvokeOption) GetSenderInvitationsResultOutput
> Note: This function is named GetSenderInvitations
in the Go SDK.
public static class GetSenderInvitations
{
public static Task<GetSenderInvitationsResult> InvokeAsync(GetSenderInvitationsArgs args, InvokeOptions? opts = null)
public static Output<GetSenderInvitationsResult> Invoke(GetSenderInvitationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSenderInvitationsResult> getSenderInvitations(GetSenderInvitationsArgs args, InvokeOptions options)
public static Output<GetSenderInvitationsResult> getSenderInvitations(GetSenderInvitationsArgs args, InvokeOptions options)
fn::invoke:
function: oci:Tenantmanagercontrolplane/getSenderInvitations:getSenderInvitations
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Sender Invitations Filter> - Recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- State string
- The lifecycle state of the resource.
- Status string
- The status of the sender invitation.
- Compartment
Id string - The ID of the compartment in which to list resources.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Sender Invitations Filter - Recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- State string
- The lifecycle state of the resource.
- Status string
- The status of the sender invitation.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Sender Invitations Filter> - recipient
Tenancy StringId - The tenancy that the invitation is addressed to.
- state String
- The lifecycle state of the resource.
- status String
- The status of the sender invitation.
- compartment
Id string - The ID of the compartment in which to list resources.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Sender Invitations Filter[] - recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- state string
- The lifecycle state of the resource.
- status string
- The status of the sender invitation.
- compartment_
id str - The ID of the compartment in which to list resources.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[tenantmanagercontrolplane.
Get Sender Invitations Filter] - recipient_
tenancy_ strid - The tenancy that the invitation is addressed to.
- state str
- The lifecycle state of the resource.
- status str
- The status of the sender invitation.
- compartment
Id String - The ID of the compartment in which to list resources.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- recipient
Tenancy StringId - The tenancy that the invitation is addressed to.
- state String
- The lifecycle state of the resource.
- status String
- The status of the sender invitation.
getSenderInvitations Result
The following output properties are available:
- Compartment
Id string - OCID of the sender tenancy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sender
Invitation List<GetCollections Sender Invitations Sender Invitation Collection> - The list of sender_invitation_collection.
- Display
Name string - A user-created name to describe the invitation. Avoid entering confidential information.
- Filters
List<Get
Sender Invitations Filter> - Recipient
Tenancy stringId - OCID of the recipient tenancy.
- State string
- Lifecycle state of the sender invitation.
- Status string
- Status of the sender invitation.
- Compartment
Id string - OCID of the sender tenancy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Sender
Invitation []GetCollections Sender Invitations Sender Invitation Collection - The list of sender_invitation_collection.
- Display
Name string - A user-created name to describe the invitation. Avoid entering confidential information.
- Filters
[]Get
Sender Invitations Filter - Recipient
Tenancy stringId - OCID of the recipient tenancy.
- State string
- Lifecycle state of the sender invitation.
- Status string
- Status of the sender invitation.
- compartment
Id String - OCID of the sender tenancy.
- id String
- The provider-assigned unique ID for this managed resource.
- sender
Invitation List<GetCollections Sender Invitations Sender Invitation Collection> - The list of sender_invitation_collection.
- display
Name String - A user-created name to describe the invitation. Avoid entering confidential information.
- filters
List<Get
Sender Invitations Filter> - recipient
Tenancy StringId - OCID of the recipient tenancy.
- state String
- Lifecycle state of the sender invitation.
- status String
- Status of the sender invitation.
- compartment
Id string - OCID of the sender tenancy.
- id string
- The provider-assigned unique ID for this managed resource.
- sender
Invitation GetCollections Sender Invitations Sender Invitation Collection[] - The list of sender_invitation_collection.
- display
Name string - A user-created name to describe the invitation. Avoid entering confidential information.
- filters
Get
Sender Invitations Filter[] - recipient
Tenancy stringId - OCID of the recipient tenancy.
- state string
- Lifecycle state of the sender invitation.
- status string
- Status of the sender invitation.
- compartment_
id str - OCID of the sender tenancy.
- id str
- The provider-assigned unique ID for this managed resource.
- sender_
invitation_ Sequence[tenantmanagercontrolplane.collections Get Sender Invitations Sender Invitation Collection] - The list of sender_invitation_collection.
- display_
name str - A user-created name to describe the invitation. Avoid entering confidential information.
- filters
Sequence[tenantmanagercontrolplane.
Get Sender Invitations Filter] - recipient_
tenancy_ strid - OCID of the recipient tenancy.
- state str
- Lifecycle state of the sender invitation.
- status str
- Status of the sender invitation.
- compartment
Id String - OCID of the sender tenancy.
- id String
- The provider-assigned unique ID for this managed resource.
- sender
Invitation List<Property Map>Collections - The list of sender_invitation_collection.
- display
Name String - A user-created name to describe the invitation. Avoid entering confidential information.
- filters List<Property Map>
- recipient
Tenancy StringId - OCID of the recipient tenancy.
- state String
- Lifecycle state of the sender invitation.
- status String
- Status of the sender invitation.
Supporting Types
GetSenderInvitationsFilter
GetSenderInvitationsSenderInvitationCollection
GetSenderInvitationsSenderInvitationCollectionItem
- Compartment
Id string - The ID of the compartment in which to list resources.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- OCID of the sender invitation.
- Recipient
Email stringAddress - Email address of the recipient.
- Recipient
Invitation stringId - OCID of the corresponding recipient invitation.
- Recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- State string
- The lifecycle state of the resource.
- Status string
- The status of the sender invitation.
- Subjects List<string>
- The list of subjects the invitation contains.
- Dictionary<string, string>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Date and time when the sender invitation was created.
- Time
Updated string - Date and time when the sender invitation was last updated.
- Compartment
Id string - The ID of the compartment in which to list resources.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- OCID of the sender invitation.
- Recipient
Email stringAddress - Email address of the recipient.
- Recipient
Invitation stringId - OCID of the corresponding recipient invitation.
- Recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- State string
- The lifecycle state of the resource.
- Status string
- The status of the sender invitation.
- Subjects []string
- The list of subjects the invitation contains.
- map[string]string
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - Date and time when the sender invitation was created.
- Time
Updated string - Date and time when the sender invitation was last updated.
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- OCID of the sender invitation.
- recipient
Email StringAddress - Email address of the recipient.
- recipient
Invitation StringId - OCID of the corresponding recipient invitation.
- recipient
Tenancy StringId - The tenancy that the invitation is addressed to.
- state String
- The lifecycle state of the resource.
- status String
- The status of the sender invitation.
- subjects List<String>
- The list of subjects the invitation contains.
- Map<String,String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Date and time when the sender invitation was created.
- time
Updated String - Date and time when the sender invitation was last updated.
- compartment
Id string - The ID of the compartment in which to list resources.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- OCID of the sender invitation.
- recipient
Email stringAddress - Email address of the recipient.
- recipient
Invitation stringId - OCID of the corresponding recipient invitation.
- recipient
Tenancy stringId - The tenancy that the invitation is addressed to.
- state string
- The lifecycle state of the resource.
- status string
- The status of the sender invitation.
- subjects string[]
- The list of subjects the invitation contains.
- {[key: string]: string}
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - Date and time when the sender invitation was created.
- time
Updated string - Date and time when the sender invitation was last updated.
- compartment_
id str - The ID of the compartment in which to list resources.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- OCID of the sender invitation.
- recipient_
email_ straddress - Email address of the recipient.
- recipient_
invitation_ strid - OCID of the corresponding recipient invitation.
- recipient_
tenancy_ strid - The tenancy that the invitation is addressed to.
- state str
- The lifecycle state of the resource.
- status str
- The status of the sender invitation.
- subjects Sequence[str]
- The list of subjects the invitation contains.
- Mapping[str, str]
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - Date and time when the sender invitation was created.
- time_
updated str - Date and time when the sender invitation was last updated.
- compartment
Id String - The ID of the compartment in which to list resources.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- OCID of the sender invitation.
- recipient
Email StringAddress - Email address of the recipient.
- recipient
Invitation StringId - OCID of the corresponding recipient invitation.
- recipient
Tenancy StringId - The tenancy that the invitation is addressed to.
- state String
- The lifecycle state of the resource.
- status String
- The status of the sender invitation.
- subjects List<String>
- The list of subjects the invitation contains.
- Map<String>
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - Date and time when the sender invitation was created.
- time
Updated String - Date and time when the sender invitation 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.