import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Domain Governance resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the domain governance entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDomainGovernance = oci.tenantmanagercontrolplane.getDomainGovernance({ * domainGovernanceId: testDomainGovernanceOciTenantmanagercontrolplaneDomainGovernance.id, * }); * ``` */ export declare function getDomainGovernance(args: GetDomainGovernanceArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDomainGovernance. */ export interface GetDomainGovernanceArgs { /** * The domain governance OCID. */ domainGovernanceId: string; } /** * A collection of values returned by getDomainGovernance. */ export interface GetDomainGovernanceResult { /** * The OCID of the tenancy that owns this domain governance entity. */ 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 domainGovernanceId: string; /** * The OCID of the domain associated with this domain governance entity. */ readonly domainId: 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; /** * Indicates whether governance is enabled for this domain. */ readonly isGovernanceEnabled: boolean; /** * The ONS subscription associated with this domain governance entity. */ readonly onsSubscriptionId: string; /** * The ONS topic associated with this domain governance entity. */ readonly onsTopicId: string; /** * The OCID of the tenancy that owns this domain governance entity. */ readonly ownerId: string; /** * Lifecycle state of the domain governance entity. */ readonly state: string; /** * Email address to be used to notify the user, and that the ONS subscription will be created with. */ readonly subscriptionEmail: 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 governance was created. An RFC 3339-formatted date and time string. */ readonly timeCreated: string; /** * Date-time when this domain governance was last updated. An RFC 3339-formatted date and time string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Domain Governance resource in Oracle Cloud Infrastructure Tenantmanagercontrolplane service. * * Gets information about the domain governance entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDomainGovernance = oci.tenantmanagercontrolplane.getDomainGovernance({ * domainGovernanceId: testDomainGovernanceOciTenantmanagercontrolplaneDomainGovernance.id, * }); * ``` */ export declare function getDomainGovernanceOutput(args: GetDomainGovernanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDomainGovernance. */ export interface GetDomainGovernanceOutputArgs { /** * The domain governance OCID. */ domainGovernanceId: pulumi.Input; } //# sourceMappingURL=getDomainGovernance.d.ts.map