import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about Categories in Oracle Cloud Infrastructure Log Analytics service. * * Returns a list of categories, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as category name or description. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsCategoriesList = oci.loganalytics.getLogAnalyticsCategoriesList({ * namespace: logAnalyticsCategoriesListNamespace, * categoryDisplayText: logAnalyticsCategoriesListCategoryDisplayText, * categoryType: logAnalyticsCategoriesListCategoryType, * name: logAnalyticsCategoriesListName, * }); * ``` */ export declare function getLogAnalyticsCategoriesList(args: GetLogAnalyticsCategoriesListArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsCategoriesList. */ export interface GetLogAnalyticsCategoriesListArgs { /** * The category display text used for filtering. Only categories matching the specified display name or description will be returned. */ categoryDisplayText?: string; /** * A comma-separated list of category types used for filtering. Only categories of the specified types will be returned. */ categoryType?: string; /** * A filter to return only log analytics category whose name matches the entire name given. The match is case-insensitive. */ name?: string; /** * The Logging Analytics namespace used for the request. */ namespace: string; } /** * A collection of values returned by getLogAnalyticsCategoriesList. */ export interface GetLogAnalyticsCategoriesListResult { readonly categoryDisplayText?: string; readonly categoryType?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An array of categories. */ readonly items: outputs.LogAnalytics.GetLogAnalyticsCategoriesListItem[]; /** * The unique name that identifies the category. */ readonly name?: string; readonly namespace: string; } /** * This data source provides details about Categories in Oracle Cloud Infrastructure Log Analytics service. * * Returns a list of categories, containing detailed information about them. You may limit the number of results, provide sorting order, and filter by information such as category name or description. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsCategoriesList = oci.loganalytics.getLogAnalyticsCategoriesList({ * namespace: logAnalyticsCategoriesListNamespace, * categoryDisplayText: logAnalyticsCategoriesListCategoryDisplayText, * categoryType: logAnalyticsCategoriesListCategoryType, * name: logAnalyticsCategoriesListName, * }); * ``` */ export declare function getLogAnalyticsCategoriesListOutput(args: GetLogAnalyticsCategoriesListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsCategoriesList. */ export interface GetLogAnalyticsCategoriesListOutputArgs { /** * The category display text used for filtering. Only categories matching the specified display name or description will be returned. */ categoryDisplayText?: pulumi.Input; /** * A comma-separated list of category types used for filtering. Only categories of the specified types will be returned. */ categoryType?: pulumi.Input; /** * A filter to return only log analytics category whose name matches the entire name given. The match is case-insensitive. */ name?: pulumi.Input; /** * The Logging Analytics namespace used for the request. */ namespace: pulumi.Input; } //# sourceMappingURL=getLogAnalyticsCategoriesList.d.ts.map