import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Log Analytics Entities Summary resource in Oracle Cloud Infrastructure Log Analytics service. * * Returns log analytics entities count summary report. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsEntitiesSummary = oci.loganalytics.getLogAnalyticsEntitiesSummary({ * compartmentId: compartmentId, * namespace: logAnalyticsEntitiesSummaryNamespace, * }); * ``` */ export declare function getLogAnalyticsEntitiesSummary(args: GetLogAnalyticsEntitiesSummaryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsEntitiesSummary. */ export interface GetLogAnalyticsEntitiesSummaryArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; } /** * A collection of values returned by getLogAnalyticsEntitiesSummary. */ export interface GetLogAnalyticsEntitiesSummaryResult { /** * Total number of ACTIVE entities */ readonly activeEntitiesCount: number; /** * Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly compartmentId: string; /** * Entities with log collection enabled */ readonly entitiesWithHasLogsCollectedCount: number; /** * Entities with management agent */ readonly entitiesWithManagementAgentCount: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namespace: string; } /** * This data source provides details about a specific Log Analytics Entities Summary resource in Oracle Cloud Infrastructure Log Analytics service. * * Returns log analytics entities count summary report. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsEntitiesSummary = oci.loganalytics.getLogAnalyticsEntitiesSummary({ * compartmentId: compartmentId, * namespace: logAnalyticsEntitiesSummaryNamespace, * }); * ``` */ export declare function getLogAnalyticsEntitiesSummaryOutput(args: GetLogAnalyticsEntitiesSummaryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsEntitiesSummary. */ export interface GetLogAnalyticsEntitiesSummaryOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getLogAnalyticsEntitiesSummary.d.ts.map