import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Awr Hub resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an AWR hub. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAwrHub = oci.opsi.getAwrHub({ * awrHubId: testAwrHubOciOpsiAwrHub.id, * }); * ``` */ export declare function getAwrHub(args: GetAwrHubArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwrHub. */ export interface GetAwrHubArgs { /** * Unique Awr Hub identifier */ awrHubId: string; } /** * A collection of values returned by getAwrHub. */ export interface GetAwrHubResult { readonly awrHubId: string; /** * Mailbox URL required for AWR hub and AWR source setup. */ readonly awrMailboxUrl: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ 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; }; /** * User-friedly name of AWR Hub that does not have to be unique. */ 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; }; /** * Dst Time Zone Version of the AWR Hub */ readonly hubDstTimezoneVersion: string; /** * AWR Hub OCID */ readonly id: string; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ readonly lifecycleDetails: string; /** * Object Storage Bucket Name */ readonly objectStorageBucketName: string; /** * OPSI Warehouse OCID */ readonly operationsInsightsWarehouseId: string; /** * Possible lifecycle states */ readonly state: 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; }; /** * The time at which the resource was first created. An RFC3339 formatted datetime string */ readonly timeCreated: string; /** * The time at which the resource was last updated. An RFC3339 formatted datetime string */ readonly timeUpdated: string; } /** * This data source provides details about a specific Awr Hub resource in Oracle Cloud Infrastructure Opsi service. * * Gets details of an AWR hub. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAwrHub = oci.opsi.getAwrHub({ * awrHubId: testAwrHubOciOpsiAwrHub.id, * }); * ``` */ export declare function getAwrHubOutput(args: GetAwrHubOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwrHub. */ export interface GetAwrHubOutputArgs { /** * Unique Awr Hub identifier */ awrHubId: pulumi.Input; } //# sourceMappingURL=getAwrHub.d.ts.map