import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Log Group resource in Oracle Cloud Infrastructure Logging service. * * Get the specified log group's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogGroup = oci.logging.getLogGroup({ * logGroupId: testLogGroupOciLoggingLogGroup.id, * }); * ``` */ export declare function getLogGroup(args: GetLogGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLogGroup. */ export interface GetLogGroupArgs { /** * OCID of a log group to work with. */ logGroupId: string; } /** * A collection of values returned by getLogGroup. */ export interface GetLogGroupResult { /** * The OCID of the compartment that the resource belongs to. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * Description for this resource. */ readonly description: string; /** * The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the resource. */ readonly id: string; readonly logGroupId: string; /** * The log group object state. */ readonly state: string; /** * Time the resource was created. */ readonly timeCreated: string; /** * Time the resource was last modified. */ readonly timeLastModified: string; } /** * This data source provides details about a specific Log Group resource in Oracle Cloud Infrastructure Logging service. * * Get the specified log group's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLogGroup = oci.logging.getLogGroup({ * logGroupId: testLogGroupOciLoggingLogGroup.id, * }); * ``` */ export declare function getLogGroupOutput(args: GetLogGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLogGroup. */ export interface GetLogGroupOutputArgs { /** * OCID of a log group to work with. */ logGroupId: pulumi.Input; } //# sourceMappingURL=getLogGroup.d.ts.map