import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Log Analytics Log Group resource in Oracle Cloud Infrastructure Log Analytics service. * * Gets detailed information about the specified log group such as display name, description, defined tags, and free-form tags. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsLogGroup = oci.loganalytics.getLogAnalyticsLogGroup({ * logAnalyticsLogGroupId: testLogAnalyticsLogGroupOciLogAnalyticsLogAnalyticsLogGroup.id, * namespace: logAnalyticsLogGroupNamespace, * }); * ``` */ export declare function getLogAnalyticsLogGroup(args: GetLogAnalyticsLogGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogAnalyticsLogGroup. */ export interface GetLogAnalyticsLogGroupArgs { /** * unique logAnalytics log group identifier */ logAnalyticsLogGroupId: 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 getLogAnalyticsLogGroup. */ export interface GetLogAnalyticsLogGroupResult { /** * Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * Description for this resource. */ readonly description: string; /** * A user-friendly name that is changeable and that does not have to be unique. Format: a leading alphanumeric, followed by zero or more alphanumerics, underscores, spaces, backslashes, or hyphens in any order). No trailing spaces allowed. */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The log analytics entity OCID. This ID is a reference used by log analytics features and it represents a resource that is provisioned and managed by the customer on their premises or on the cloud. */ readonly id: string; readonly logAnalyticsLogGroupId: string; readonly namespace: string; /** * The date and time the resource was created, in the format defined by RFC3339. */ readonly timeCreated: string; /** * The date and time the resource was last updated, in the format defined by RFC3339. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Log Analytics Log Group resource in Oracle Cloud Infrastructure Log Analytics service. * * Gets detailed information about the specified log group such as display name, description, defined tags, and free-form tags. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogAnalyticsLogGroup = oci.loganalytics.getLogAnalyticsLogGroup({ * logAnalyticsLogGroupId: testLogAnalyticsLogGroupOciLogAnalyticsLogAnalyticsLogGroup.id, * namespace: logAnalyticsLogGroupNamespace, * }); * ``` */ export declare function getLogAnalyticsLogGroupOutput(args: GetLogAnalyticsLogGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogAnalyticsLogGroup. */ export interface GetLogAnalyticsLogGroupOutputArgs { /** * unique logAnalytics log group identifier */ logAnalyticsLogGroupId: 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=getLogAnalyticsLogGroup.d.ts.map