import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Log Analytics Entity Type resource in Oracle Cloud Infrastructure Log Analytics service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/logan-api-spec/latest/LogAnalyticsEntityType * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/log_analytics * * Add custom log analytics entity type. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsEntityType = new oci.loganalytics.LogAnalyticsEntityType("test_log_analytics_entity_type", { * name: logAnalyticsEntityTypeName, * namespace: logAnalyticsEntityTypeNamespace, * category: logAnalyticsEntityTypeCategory, * properties: [{ * name: logAnalyticsEntityTypePropertiesName, * description: logAnalyticsEntityTypePropertiesDescription, * }], * }); * ``` * * ## Import * * LogAnalyticsEntityTypes can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:LogAnalytics/logAnalyticsEntityType:LogAnalyticsEntityType test_log_analytics_entity_type "namespaces/{namespaceName}/logAnalyticsEntityTypes" * ``` */ export declare class LogAnalyticsEntityType extends pulumi.CustomResource { /** * Get an existing LogAnalyticsEntityType resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: LogAnalyticsEntityTypeState, opts?: pulumi.CustomResourceOptions): LogAnalyticsEntityType; /** * Returns true if the given object is an instance of LogAnalyticsEntityType. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is LogAnalyticsEntityType; /** * Log analytics entity type category. Category will be used for grouping and filtering. */ readonly category: pulumi.Output; /** * Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise. */ readonly cloudType: pulumi.Output; /** * Internal name for the log analytics entity type. */ readonly internalName: pulumi.Output; readonly managementAgentEligibilityStatus: pulumi.Output; /** * Log analytics entity type name. */ readonly name: pulumi.Output; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ readonly namespace: pulumi.Output; /** * Log analytics entity type property definition. */ readonly properties: pulumi.Output; /** * The current lifecycle state of the log analytics entity type. */ readonly state: pulumi.Output; /** * Time the log analytics entity type was created. An RFC3339 formatted datetime string. */ readonly timeCreated: pulumi.Output; /** * Time the log analytics entity type was updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: pulumi.Output; /** * Create a LogAnalyticsEntityType resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LogAnalyticsEntityTypeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering LogAnalyticsEntityType resources. */ export interface LogAnalyticsEntityTypeState { /** * Log analytics entity type category. Category will be used for grouping and filtering. */ category?: pulumi.Input; /** * Log analytics entity type group. This can be CLOUD (OCI) or NON_CLOUD otherwise. */ cloudType?: pulumi.Input; /** * Internal name for the log analytics entity type. */ internalName?: pulumi.Input; managementAgentEligibilityStatus?: pulumi.Input; /** * Log analytics entity type name. */ name?: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace?: pulumi.Input; /** * Log analytics entity type property definition. */ properties?: pulumi.Input[] | undefined>; /** * The current lifecycle state of the log analytics entity type. */ state?: pulumi.Input; /** * Time the log analytics entity type was created. An RFC3339 formatted datetime string. */ timeCreated?: pulumi.Input; /** * Time the log analytics entity type was updated. An RFC3339 formatted datetime string. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a LogAnalyticsEntityType resource. */ export interface LogAnalyticsEntityTypeArgs { /** * Log analytics entity type category. Category will be used for grouping and filtering. */ category?: pulumi.Input; /** * Log analytics entity type name. */ name?: pulumi.Input; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; /** * Log analytics entity type property definition. */ properties?: pulumi.Input[] | undefined>; } //# sourceMappingURL=logAnalyticsEntityType.d.ts.map