import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Domain resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDomain = oci.tenantmanagercontrolplane.getDomain({ * domainId: testDomainOciTenantmanagercontrolplaneDomain.id, * }); * ``` */ export declare function getDomain(args: GetDomainArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDomain. */ export interface GetDomainArgs { /** * The domain OCID. */ domainId: string; } /** * A collection of values returned by getDomain. */ export interface GetDomainResult { /** * The OCID of the tenancy that has started the registration process for this domain. */ 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; }; readonly domainId: string; /** * The domain name. */ readonly domainName: 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; /** * The OCID of the tenancy that has started the registration process for this domain. */ readonly ownerId: string; /** * Lifecycle state of the domain. */ readonly state: string; /** * Status of the domain. */ readonly status: 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-time when this domain was created. An RFC 3339-formatted date and time string. */ readonly timeCreated: string; /** * Date-time when this domain was last updated. An RFC 3339-formatted date and time string. */ readonly timeUpdated: string; /** * The code that the owner of the domain will need to add as a TXT record to their domain. */ readonly txtRecord: string; } /** * This data source provides details about a specific Domain resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the domain. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDomain = oci.tenantmanagercontrolplane.getDomain({ * domainId: testDomainOciTenantmanagercontrolplaneDomain.id, * }); * ``` */ export declare function getDomainOutput(args: GetDomainOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDomain. */ export interface GetDomainOutputArgs { /** * The domain OCID. */ domainId: pulumi.Input; } //# sourceMappingURL=getDomain.d.ts.map