1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. LogAnalytics
  5. LogAnalyticsLogGroup
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.LogAnalytics.LogAnalyticsLogGroup

Explore with Pulumi AI

This resource provides the Log Analytics Log Group resource in Oracle Cloud Infrastructure Log Analytics service.

Creates a new log group in the specified compartment with the input display name. You may also specify optional information such as description, defined tags, and free-form tags.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testLogAnalyticsLogGroup = new oci.loganalytics.LogAnalyticsLogGroup("test_log_analytics_log_group", {
    compartmentId: compartmentId,
    displayName: logAnalyticsLogGroupDisplayName,
    namespace: logAnalyticsLogGroupNamespace,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: logAnalyticsLogGroupDescription,
    freeformTags: {
        "bar-key": "value",
    },
});
Copy
import pulumi
import pulumi_oci as oci

test_log_analytics_log_group = oci.log_analytics.LogAnalyticsLogGroup("test_log_analytics_log_group",
    compartment_id=compartment_id,
    display_name=log_analytics_log_group_display_name,
    namespace=log_analytics_log_group_namespace,
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=log_analytics_log_group_description,
    freeform_tags={
        "bar-key": "value",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/loganalytics"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := loganalytics.NewLogAnalyticsLogGroup(ctx, "test_log_analytics_log_group", &loganalytics.LogAnalyticsLogGroupArgs{
			CompartmentId: pulumi.Any(compartmentId),
			DisplayName:   pulumi.Any(logAnalyticsLogGroupDisplayName),
			Namespace:     pulumi.Any(logAnalyticsLogGroupNamespace),
			DefinedTags: pulumi.StringMap{
				"foo-namespace.bar-key": pulumi.String("value"),
			},
			Description: pulumi.Any(logAnalyticsLogGroupDescription),
			FreeformTags: pulumi.StringMap{
				"bar-key": pulumi.String("value"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testLogAnalyticsLogGroup = new Oci.LogAnalytics.LogAnalyticsLogGroup("test_log_analytics_log_group", new()
    {
        CompartmentId = compartmentId,
        DisplayName = logAnalyticsLogGroupDisplayName,
        Namespace = logAnalyticsLogGroupNamespace,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = logAnalyticsLogGroupDescription,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LogAnalytics.LogAnalyticsLogGroup;
import com.pulumi.oci.LogAnalytics.LogAnalyticsLogGroupArgs;
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) {
        var testLogAnalyticsLogGroup = new LogAnalyticsLogGroup("testLogAnalyticsLogGroup", LogAnalyticsLogGroupArgs.builder()
            .compartmentId(compartmentId)
            .displayName(logAnalyticsLogGroupDisplayName)
            .namespace(logAnalyticsLogGroupNamespace)
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(logAnalyticsLogGroupDescription)
            .freeformTags(Map.of("bar-key", "value"))
            .build());

    }
}
Copy
resources:
  testLogAnalyticsLogGroup:
    type: oci:LogAnalytics:LogAnalyticsLogGroup
    name: test_log_analytics_log_group
    properties:
      compartmentId: ${compartmentId}
      displayName: ${logAnalyticsLogGroupDisplayName}
      namespace: ${logAnalyticsLogGroupNamespace}
      definedTags:
        foo-namespace.bar-key: value
      description: ${logAnalyticsLogGroupDescription}
      freeformTags:
        bar-key: value
Copy

Create LogAnalyticsLogGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new LogAnalyticsLogGroup(name: string, args: LogAnalyticsLogGroupArgs, opts?: CustomResourceOptions);
@overload
def LogAnalyticsLogGroup(resource_name: str,
                         args: LogAnalyticsLogGroupArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def LogAnalyticsLogGroup(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         compartment_id: Optional[str] = None,
                         display_name: Optional[str] = None,
                         namespace: Optional[str] = None,
                         defined_tags: Optional[Mapping[str, str]] = None,
                         description: Optional[str] = None,
                         freeform_tags: Optional[Mapping[str, str]] = None)
func NewLogAnalyticsLogGroup(ctx *Context, name string, args LogAnalyticsLogGroupArgs, opts ...ResourceOption) (*LogAnalyticsLogGroup, error)
public LogAnalyticsLogGroup(string name, LogAnalyticsLogGroupArgs args, CustomResourceOptions? opts = null)
public LogAnalyticsLogGroup(String name, LogAnalyticsLogGroupArgs args)
public LogAnalyticsLogGroup(String name, LogAnalyticsLogGroupArgs args, CustomResourceOptions options)
type: oci:LogAnalytics:LogAnalyticsLogGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. LogAnalyticsLogGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. LogAnalyticsLogGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. LogAnalyticsLogGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. LogAnalyticsLogGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. LogAnalyticsLogGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var logAnalyticsLogGroupResource = new Oci.LogAnalytics.LogAnalyticsLogGroup("logAnalyticsLogGroupResource", new()
{
    CompartmentId = "string",
    DisplayName = "string",
    Namespace = "string",
    DefinedTags = 
    {
        { "string", "string" },
    },
    Description = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := LogAnalytics.NewLogAnalyticsLogGroup(ctx, "logAnalyticsLogGroupResource", &LogAnalytics.LogAnalyticsLogGroupArgs{
	CompartmentId: pulumi.String("string"),
	DisplayName:   pulumi.String("string"),
	Namespace:     pulumi.String("string"),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Description: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var logAnalyticsLogGroupResource = new LogAnalyticsLogGroup("logAnalyticsLogGroupResource", LogAnalyticsLogGroupArgs.builder()
    .compartmentId("string")
    .displayName("string")
    .namespace("string")
    .definedTags(Map.of("string", "string"))
    .description("string")
    .freeformTags(Map.of("string", "string"))
    .build());
Copy
log_analytics_log_group_resource = oci.log_analytics.LogAnalyticsLogGroup("logAnalyticsLogGroupResource",
    compartment_id="string",
    display_name="string",
    namespace="string",
    defined_tags={
        "string": "string",
    },
    description="string",
    freeform_tags={
        "string": "string",
    })
Copy
const logAnalyticsLogGroupResource = new oci.loganalytics.LogAnalyticsLogGroup("logAnalyticsLogGroupResource", {
    compartmentId: "string",
    displayName: "string",
    namespace: "string",
    definedTags: {
        string: "string",
    },
    description: "string",
    freeformTags: {
        string: "string",
    },
});
Copy
type: oci:LogAnalytics:LogAnalyticsLogGroup
properties:
    compartmentId: string
    definedTags:
        string: string
    description: string
    displayName: string
    freeformTags:
        string: string
    namespace: string
Copy

LogAnalyticsLogGroup Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The LogAnalyticsLogGroup resource accepts the following input properties:

CompartmentId This property is required. string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
DisplayName This property is required. string
(Updatable) 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.
Namespace
This property is required.
Changes to this property will trigger replacement.
string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description for this resource.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
CompartmentId This property is required. string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
DisplayName This property is required. string
(Updatable) 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.
Namespace
This property is required.
Changes to this property will trigger replacement.
string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description for this resource.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. String
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
displayName This property is required. String
(Updatable) 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.
namespace
This property is required.
Changes to this property will trigger replacement.
String

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description for this resource.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
displayName This property is required. string
(Updatable) 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.
namespace
This property is required.
Changes to this property will trigger replacement.
string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description for this resource.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartment_id This property is required. str
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
display_name This property is required. str
(Updatable) 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.
namespace
This property is required.
Changes to this property will trigger replacement.
str

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description for this resource.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
compartmentId This property is required. String
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
displayName This property is required. String
(Updatable) 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.
namespace
This property is required.
Changes to this property will trigger replacement.
String

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description for this resource.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Outputs

All input properties are implicitly available as output properties. Additionally, the LogAnalyticsLogGroup resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
TimeCreated string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
Id string
The provider-assigned unique ID for this managed resource.
TimeCreated string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
id String
The provider-assigned unique ID for this managed resource.
timeCreated String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the format defined by RFC3339.
id string
The provider-assigned unique ID for this managed resource.
timeCreated string
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
id str
The provider-assigned unique ID for this managed resource.
time_created str
The date and time the resource was created, in the format defined by RFC3339.
time_updated str
The date and time the resource was last updated, in the format defined by RFC3339.
id String
The provider-assigned unique ID for this managed resource.
timeCreated String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the format defined by RFC3339.

Look up Existing LogAnalyticsLogGroup Resource

Get an existing LogAnalyticsLogGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: LogAnalyticsLogGroupState, opts?: CustomResourceOptions): LogAnalyticsLogGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        namespace: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None) -> LogAnalyticsLogGroup
func GetLogAnalyticsLogGroup(ctx *Context, name string, id IDInput, state *LogAnalyticsLogGroupState, opts ...ResourceOption) (*LogAnalyticsLogGroup, error)
public static LogAnalyticsLogGroup Get(string name, Input<string> id, LogAnalyticsLogGroupState? state, CustomResourceOptions? opts = null)
public static LogAnalyticsLogGroup get(String name, Output<String> id, LogAnalyticsLogGroupState state, CustomResourceOptions options)
resources:  _:    type: oci:LogAnalytics:LogAnalyticsLogGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
DefinedTags Dictionary<string, string>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description for this resource.
DisplayName string
(Updatable) 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.
FreeformTags Dictionary<string, string>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Namespace Changes to this property will trigger replacement. string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

TimeCreated string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
CompartmentId string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
DefinedTags map[string]string
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description string
(Updatable) Description for this resource.
DisplayName string
(Updatable) 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.
FreeformTags map[string]string
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Namespace Changes to this property will trigger replacement. string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

TimeCreated string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId String
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
definedTags Map<String,String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description for this resource.
displayName String
(Updatable) 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.
freeformTags Map<String,String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
namespace Changes to this property will trigger replacement. String

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId string
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
definedTags {[key: string]: string}
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description string
(Updatable) Description for this resource.
displayName string
(Updatable) 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.
freeformTags {[key: string]: string}
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
namespace Changes to this property will trigger replacement. string

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated string
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated string
The date and time the resource was last updated, in the format defined by RFC3339.
compartment_id str
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
defined_tags Mapping[str, str]
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description str
(Updatable) Description for this resource.
display_name str
(Updatable) 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.
freeform_tags Mapping[str, str]
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
namespace Changes to this property will trigger replacement. str

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

time_created str
The date and time the resource was created, in the format defined by RFC3339.
time_updated str
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId String
(Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
definedTags Map<String>
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description String
(Updatable) Description for this resource.
displayName String
(Updatable) 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.
freeformTags Map<String>
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
namespace Changes to this property will trigger replacement. String

The Logging Analytics namespace used for the request.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

timeCreated String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated String
The date and time the resource was last updated, in the format defined by RFC3339.

Import

LogAnalyticsLogGroups can be imported using the id, e.g.

$ pulumi import oci:LogAnalytics/logAnalyticsLogGroup:LogAnalyticsLogGroup test_log_analytics_log_group "namespaces/{namespaceName}/logAnalyticsLogGroups/{logAnalyticsLogGroupId}"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.