import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Sender Invitation resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the sender invitation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSenderInvitation = oci.tenantmanagercontrolplane.getSenderInvitation({ * senderInvitationId: testSenderInvitationOciTenantmanagercontrolplaneSenderInvitation.id, * }); * ``` */ export declare function getSenderInvitation(args: GetSenderInvitationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSenderInvitation. */ export interface GetSenderInvitationArgs { /** * OCID of the sender invitation to retrieve. */ senderInvitationId: string; } /** * A collection of values returned by getSenderInvitation. */ export interface GetSenderInvitationResult { /** * OCID of the sender tenancy. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-created name to describe the invitation. Avoid entering confidential information. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of features that the invitation is being sent for. Each feature would create one link, of that type. */ readonly invitationFeatures: outputs.Tenantmanagercontrolplane.GetSenderInvitationInvitationFeature[]; /** * Email address of the recipient. */ readonly recipientEmailAddress: string; /** * OCID of the corresponding recipient invitation. */ readonly recipientInvitationId: string; /** * OCID of the recipient tenancy. */ readonly recipientTenancyId: string; readonly senderInvitationId: string; /** * Lifecycle state of the sender invitation. */ readonly state: string; /** * Status of the sender invitation. */ readonly status: string; /** * The list of subjects the invitation contains. */ readonly subjects: string[]; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Date and time when the sender invitation was created. */ readonly timeCreated: string; /** * Date and time when the sender invitation was last updated. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Sender Invitation resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the sender invitation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSenderInvitation = oci.tenantmanagercontrolplane.getSenderInvitation({ * senderInvitationId: testSenderInvitationOciTenantmanagercontrolplaneSenderInvitation.id, * }); * ``` */ export declare function getSenderInvitationOutput(args: GetSenderInvitationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSenderInvitation. */ export interface GetSenderInvitationOutputArgs { /** * OCID of the sender invitation to retrieve. */ senderInvitationId: pulumi.Input; } //# sourceMappingURL=getSenderInvitation.d.ts.map