import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Subscription Token resource in Oracle Cloud Infrastructure Self service. * * Gets a token of Subscriptions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSubscriptionToken = oci.oci.getSelfSubscriptionToken({ * subscriptionId: testSubscription.id, * }); * ``` */ export declare function getSelfSubscriptionToken(args: GetSelfSubscriptionTokenArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSelfSubscriptionToken. */ export interface GetSelfSubscriptionTokenArgs { /** * The unique identifier for the subscription. */ subscriptionId: string; } /** * A collection of values returned by getSelfSubscriptionToken. */ export interface GetSelfSubscriptionTokenResult { /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The unique identifier for the subscription within a specific compartment. */ readonly subscriptionId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * JWT token of subscriptions. */ readonly token: string; } /** * This data source provides details about a specific Subscription Token resource in Oracle Cloud Infrastructure Self service. * * Gets a token of Subscriptions. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSubscriptionToken = oci.oci.getSelfSubscriptionToken({ * subscriptionId: testSubscription.id, * }); * ``` */ export declare function getSelfSubscriptionTokenOutput(args: GetSelfSubscriptionTokenOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSelfSubscriptionToken. */ export interface GetSelfSubscriptionTokenOutputArgs { /** * The unique identifier for the subscription. */ subscriptionId: pulumi.Input; } //# sourceMappingURL=getSelfSubscriptionToken.d.ts.map