Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.Logging.getLog
Explore with Pulumi AI
This data source provides details about a specific Log resource in Oracle Cloud Infrastructure Logging service.
Gets the log object configuration for the log object OCID.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testLog = oci.Logging.getLog({
    logGroupId: testLogGroup.id,
    logId: testLogOciLoggingLog.id,
});
import pulumi
import pulumi_oci as oci
test_log = oci.Logging.get_log(log_group_id=test_log_group["id"],
    log_id=test_log_oci_logging_log["id"])
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/logging"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := logging.GetLog(ctx, &logging.GetLogArgs{
			LogGroupId: testLogGroup.Id,
			LogId:      testLogOciLoggingLog.Id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testLog = Oci.Logging.GetLog.Invoke(new()
    {
        LogGroupId = testLogGroup.Id,
        LogId = testLogOciLoggingLog.Id,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Logging.LoggingFunctions;
import com.pulumi.oci.Logging.inputs.GetLogArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var testLog = LoggingFunctions.getLog(GetLogArgs.builder()
            .logGroupId(testLogGroup.id())
            .logId(testLogOciLoggingLog.id())
            .build());
    }
}
variables:
  testLog:
    fn::invoke:
      function: oci:Logging:getLog
      arguments:
        logGroupId: ${testLogGroup.id}
        logId: ${testLogOciLoggingLog.id}
Using getLog
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getLog(args: GetLogArgs, opts?: InvokeOptions): Promise<GetLogResult>
function getLogOutput(args: GetLogOutputArgs, opts?: InvokeOptions): Output<GetLogResult>def get_log(log_group_id: Optional[str] = None,
            log_id: Optional[str] = None,
            opts: Optional[InvokeOptions] = None) -> GetLogResult
def get_log_output(log_group_id: Optional[pulumi.Input[str]] = None,
            log_id: Optional[pulumi.Input[str]] = None,
            opts: Optional[InvokeOptions] = None) -> Output[GetLogResult]func LookupLog(ctx *Context, args *LookupLogArgs, opts ...InvokeOption) (*LookupLogResult, error)
func LookupLogOutput(ctx *Context, args *LookupLogOutputArgs, opts ...InvokeOption) LookupLogResultOutput> Note: This function is named LookupLog in the Go SDK.
public static class GetLog 
{
    public static Task<GetLogResult> InvokeAsync(GetLogArgs args, InvokeOptions? opts = null)
    public static Output<GetLogResult> Invoke(GetLogInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetLogResult> getLog(GetLogArgs args, InvokeOptions options)
public static Output<GetLogResult> getLog(GetLogArgs args, InvokeOptions options)
fn::invoke:
  function: oci:Logging/getLog:getLog
  arguments:
    # arguments dictionaryThe following arguments are supported:
- LogGroup stringId 
- OCID of a log group to work with.
- LogId string
- OCID of a log to work with.
- LogGroup stringId 
- OCID of a log group to work with.
- LogId string
- OCID of a log to work with.
- logGroup StringId 
- OCID of a log group to work with.
- logId String
- OCID of a log to work with.
- logGroup stringId 
- OCID of a log group to work with.
- logId string
- OCID of a log to work with.
- log_group_ strid 
- OCID of a log group to work with.
- log_id str
- OCID of a log to work with.
- logGroup StringId 
- OCID of a log group to work with.
- logId String
- OCID of a log to work with.
getLog Result
The following output properties are available:
- CompartmentId string
- The OCID of the compartment that the resource belongs to.
- Configurations
List<GetLog Configuration> 
- Log object configuration.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- Dictionary<string, 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. Example: {"Department": "Finance"}
- Id string
- The OCID of the resource.
- IsEnabled bool
- Whether or not this resource is currently enabled.
- LogGroup stringId 
- Log group OCID.
- LogId string
- LogType string
- The logType that the log object is for, whether custom or service.
- RetentionDuration int
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- State string
- The pipeline state.
- TenancyId string
- The OCID of the tenancy.
- TimeCreated string
- Time the resource was created.
- TimeLast stringModified 
- Time the resource was last modified.
- CompartmentId string
- The OCID of the compartment that the resource belongs to.
- Configurations
[]GetLog Configuration 
- Log object configuration.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- DisplayName string
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- map[string]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. Example: {"Department": "Finance"}
- Id string
- The OCID of the resource.
- IsEnabled bool
- Whether or not this resource is currently enabled.
- LogGroup stringId 
- Log group OCID.
- LogId string
- LogType string
- The logType that the log object is for, whether custom or service.
- RetentionDuration int
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- State string
- The pipeline state.
- TenancyId string
- The OCID of the tenancy.
- TimeCreated string
- Time the resource was created.
- TimeLast stringModified 
- Time the resource was last modified.
- compartmentId String
- The OCID of the compartment that the resource belongs to.
- configurations
List<GetLog Configuration> 
- Log object configuration.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- Map<String,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. Example: {"Department": "Finance"}
- id String
- The OCID of the resource.
- isEnabled Boolean
- Whether or not this resource is currently enabled.
- logGroup StringId 
- Log group OCID.
- logId String
- logType String
- The logType that the log object is for, whether custom or service.
- retentionDuration Integer
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- state String
- The pipeline state.
- tenancyId String
- The OCID of the tenancy.
- timeCreated String
- Time the resource was created.
- timeLast StringModified 
- Time the resource was last modified.
- compartmentId string
- The OCID of the compartment that the resource belongs to.
- configurations
GetLog Configuration[] 
- Log object configuration.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName string
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- {[key: string]: 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. Example: {"Department": "Finance"}
- id string
- The OCID of the resource.
- isEnabled boolean
- Whether or not this resource is currently enabled.
- logGroup stringId 
- Log group OCID.
- logId string
- logType string
- The logType that the log object is for, whether custom or service.
- retentionDuration number
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- state string
- The pipeline state.
- tenancyId string
- The OCID of the tenancy.
- timeCreated string
- Time the resource was created.
- timeLast stringModified 
- Time the resource was last modified.
- compartment_id str
- The OCID of the compartment that the resource belongs to.
- configurations
Sequence[GetLog Configuration] 
- Log object configuration.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- display_name str
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- 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. Example: {"Department": "Finance"}
- id str
- The OCID of the resource.
- is_enabled bool
- Whether or not this resource is currently enabled.
- log_group_ strid 
- Log group OCID.
- log_id str
- log_type str
- The logType that the log object is for, whether custom or service.
- retention_duration int
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- state str
- The pipeline state.
- tenancy_id str
- The OCID of the tenancy.
- time_created str
- Time the resource was created.
- time_last_ strmodified 
- Time the resource was last modified.
- compartmentId String
- The OCID of the compartment that the resource belongs to.
- configurations List<Property Map>
- Log object configuration.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
- displayName String
- The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
- Map<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. Example: {"Department": "Finance"}
- id String
- The OCID of the resource.
- isEnabled Boolean
- Whether or not this resource is currently enabled.
- logGroup StringId 
- Log group OCID.
- logId String
- logType String
- The logType that the log object is for, whether custom or service.
- retentionDuration Number
- Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
- state String
- The pipeline state.
- tenancyId String
- The OCID of the tenancy.
- timeCreated String
- Time the resource was created.
- timeLast StringModified 
- Time the resource was last modified.
Supporting Types
GetLogConfiguration  
- CompartmentId string
- The OCID of the compartment that the resource belongs to.
- Sources
List<GetLog Configuration Source> 
- The source the log object comes from.
- CompartmentId string
- The OCID of the compartment that the resource belongs to.
- Sources
[]GetLog Configuration Source 
- The source the log object comes from.
- compartmentId String
- The OCID of the compartment that the resource belongs to.
- sources
List<GetLog Configuration Source> 
- The source the log object comes from.
- compartmentId string
- The OCID of the compartment that the resource belongs to.
- sources
GetLog Configuration Source[] 
- The source the log object comes from.
- compartment_id str
- The OCID of the compartment that the resource belongs to.
- sources
Sequence[GetLog Configuration Source] 
- The source the log object comes from.
- compartmentId String
- The OCID of the compartment that the resource belongs to.
- sources List<Property Map>
- The source the log object comes from.
GetLogConfigurationSource   
- Category string
- Log object category.
- Parameters Dictionary<string, string>
- Log category parameters are stored here.
- Resource string
- The unique identifier of the resource emitting the log.
- Service string
- Service generating log.
- SourceType string
- The log source.- OCISERVICE: Oracle Service.
 
- Category string
- Log object category.
- Parameters map[string]string
- Log category parameters are stored here.
- Resource string
- The unique identifier of the resource emitting the log.
- Service string
- Service generating log.
- SourceType string
- The log source.- OCISERVICE: Oracle Service.
 
- category String
- Log object category.
- parameters Map<String,String>
- Log category parameters are stored here.
- resource String
- The unique identifier of the resource emitting the log.
- service String
- Service generating log.
- sourceType String
- The log source.- OCISERVICE: Oracle Service.
 
- category string
- Log object category.
- parameters {[key: string]: string}
- Log category parameters are stored here.
- resource string
- The unique identifier of the resource emitting the log.
- service string
- Service generating log.
- sourceType string
- The log source.- OCISERVICE: Oracle Service.
 
- category str
- Log object category.
- parameters Mapping[str, str]
- Log category parameters are stored here.
- resource str
- The unique identifier of the resource emitting the log.
- service str
- Service generating log.
- source_type str
- The log source.- OCISERVICE: Oracle Service.
 
- category String
- Log object category.
- parameters Map<String>
- Log category parameters are stored here.
- resource String
- The unique identifier of the resource emitting the log.
- service String
- Service generating log.
- sourceType String
- The log source.- OCISERVICE: Oracle Service.
 
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.