import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Awr Hub Awr Sources Summary resource in Oracle Cloud Infrastructure Opsi service. * * Gets a list of summary of AWR Sources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAwrHubAwrSourcesSummary = oci.opsi.getAwrHubAwrSourcesSummary({ * awrHubId: testAwrHub.id, * compartmentId: compartmentId, * name: awrHubAwrSourcesSummaryName, * }); * ``` */ export declare function getAwrHubAwrSourcesSummary(args: GetAwrHubAwrSourcesSummaryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAwrHubAwrSourcesSummary. */ export interface GetAwrHubAwrSourcesSummaryArgs { /** * Unique Awr Hub identifier */ awrHubId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * Name for an Awr source database */ name?: string; } /** * A collection of values returned by getAwrHubAwrSourcesSummary. */ export interface GetAwrHubAwrSourcesSummaryResult { /** * AWR Hub OCID */ readonly awrHubId: string; readonly compartmentId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of AwrSource summary objects. */ readonly items: outputs.Opsi.GetAwrHubAwrSourcesSummaryItem[]; /** * Database name of the Source database for which AWR Data will be uploaded to AWR Hub. */ readonly name?: string; } /** * This data source provides details about a specific Awr Hub Awr Sources Summary resource in Oracle Cloud Infrastructure Opsi service. * * Gets a list of summary of AWR Sources. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAwrHubAwrSourcesSummary = oci.opsi.getAwrHubAwrSourcesSummary({ * awrHubId: testAwrHub.id, * compartmentId: compartmentId, * name: awrHubAwrSourcesSummaryName, * }); * ``` */ export declare function getAwrHubAwrSourcesSummaryOutput(args: GetAwrHubAwrSourcesSummaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAwrHubAwrSourcesSummary. */ export interface GetAwrHubAwrSourcesSummaryOutputArgs { /** * Unique Awr Hub identifier */ awrHubId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * Name for an Awr source database */ name?: pulumi.Input; } //# sourceMappingURL=getAwrHubAwrSourcesSummary.d.ts.map