import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Log Analytics Entity Types in Oracle Cloud Infrastructure Log Analytics service. * * Return a list of log analytics entity types. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsEntityTypes = oci.loganalytics.getLogAnalyticsEntityTypes({ * namespace: logAnalyticsEntityTypeNamespace, * cloudType: logAnalyticsEntityTypeCloudType, * name: logAnalyticsEntityTypeName, * nameContains: logAnalyticsEntityTypeNameContains, * state: logAnalyticsEntityTypeState, * }); * ``` */ export declare function getLogAnalyticsEntityTypes(args: GetLogAnalyticsEntityTypesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsEntityTypes. */ export interface GetLogAnalyticsEntityTypesArgs { /** * A filter to return CLOUD or NON_CLOUD entity types. */ cloudType?: string; filters?: inputs.LogAnalytics.GetLogAnalyticsEntityTypesFilter[]; /** * A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive. */ name?: string; /** * A filter to return only log analytics entity types whose name or internalName contains name given. The match is case-insensitive. */ nameContains?: string; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; /** * A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getLogAnalyticsEntityTypes. */ export interface GetLogAnalyticsEntityTypesResult { /** * Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise. */ readonly cloudType?: string; readonly filters?: outputs.LogAnalytics.GetLogAnalyticsEntityTypesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of log_analytics_entity_type_collection. */ readonly logAnalyticsEntityTypeCollections: outputs.LogAnalytics.GetLogAnalyticsEntityTypesLogAnalyticsEntityTypeCollection[]; /** * Log analytics entity type name. */ readonly name?: string; readonly nameContains?: string; readonly namespace: string; /** * The current lifecycle state of the log analytics entity type. */ readonly state?: string; } /** * This data source provides the list of Log Analytics Entity Types in Oracle Cloud Infrastructure Log Analytics service. * * Return a list of log analytics entity types. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsEntityTypes = oci.loganalytics.getLogAnalyticsEntityTypes({ * namespace: logAnalyticsEntityTypeNamespace, * cloudType: logAnalyticsEntityTypeCloudType, * name: logAnalyticsEntityTypeName, * nameContains: logAnalyticsEntityTypeNameContains, * state: logAnalyticsEntityTypeState, * }); * ``` */ export declare function getLogAnalyticsEntityTypesOutput(args: GetLogAnalyticsEntityTypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsEntityTypes. */ export interface GetLogAnalyticsEntityTypesOutputArgs { /** * A filter to return CLOUD or NON_CLOUD entity types. */ cloudType?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive. */ name?: pulumi.Input; /** * A filter to return only log analytics entity types whose name or internalName contains name given. The match is case-insensitive. */ nameContains?: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; /** * A filter to return only those log analytics entities with the specified lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getLogAnalyticsEntityTypes.d.ts.map