1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. LogAnalytics
  5. getNamespaceIngestTimeRules
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

oci.LogAnalytics.getNamespaceIngestTimeRules

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi

This data source provides the list of Namespace Ingest Time Rules in Oracle Cloud Infrastructure Log Analytics service.

Returns a list of ingest time rules in a compartment. You may limit the number of rules, provide sorting options, and filter the results.

Example Usage

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

const testNamespaceIngestTimeRules = oci.LogAnalytics.getNamespaceIngestTimeRules({
    compartmentId: compartmentId,
    namespace: namespaceIngestTimeRuleNamespace,
    conditionKind: namespaceIngestTimeRuleConditionKind,
    displayName: namespaceIngestTimeRuleDisplayName,
    fieldName: namespaceIngestTimeRuleFieldName,
    fieldValue: namespaceIngestTimeRuleFieldValue,
    state: namespaceIngestTimeRuleState,
});
Copy
import pulumi
import pulumi_oci as oci

test_namespace_ingest_time_rules = oci.LogAnalytics.get_namespace_ingest_time_rules(compartment_id=compartment_id,
    namespace=namespace_ingest_time_rule_namespace,
    condition_kind=namespace_ingest_time_rule_condition_kind,
    display_name=namespace_ingest_time_rule_display_name,
    field_name=namespace_ingest_time_rule_field_name,
    field_value=namespace_ingest_time_rule_field_value,
    state=namespace_ingest_time_rule_state)
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.GetNamespaceIngestTimeRules(ctx, &loganalytics.GetNamespaceIngestTimeRulesArgs{
			CompartmentId: compartmentId,
			Namespace:     namespaceIngestTimeRuleNamespace,
			ConditionKind: pulumi.StringRef(namespaceIngestTimeRuleConditionKind),
			DisplayName:   pulumi.StringRef(namespaceIngestTimeRuleDisplayName),
			FieldName:     pulumi.StringRef(namespaceIngestTimeRuleFieldName),
			FieldValue:    pulumi.StringRef(namespaceIngestTimeRuleFieldValue),
			State:         pulumi.StringRef(namespaceIngestTimeRuleState),
		}, nil)
		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 testNamespaceIngestTimeRules = Oci.LogAnalytics.GetNamespaceIngestTimeRules.Invoke(new()
    {
        CompartmentId = compartmentId,
        Namespace = namespaceIngestTimeRuleNamespace,
        ConditionKind = namespaceIngestTimeRuleConditionKind,
        DisplayName = namespaceIngestTimeRuleDisplayName,
        FieldName = namespaceIngestTimeRuleFieldName,
        FieldValue = namespaceIngestTimeRuleFieldValue,
        State = namespaceIngestTimeRuleState,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.LogAnalytics.LogAnalyticsFunctions;
import com.pulumi.oci.LogAnalytics.inputs.GetNamespaceIngestTimeRulesArgs;
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 testNamespaceIngestTimeRules = LogAnalyticsFunctions.getNamespaceIngestTimeRules(GetNamespaceIngestTimeRulesArgs.builder()
            .compartmentId(compartmentId)
            .namespace(namespaceIngestTimeRuleNamespace)
            .conditionKind(namespaceIngestTimeRuleConditionKind)
            .displayName(namespaceIngestTimeRuleDisplayName)
            .fieldName(namespaceIngestTimeRuleFieldName)
            .fieldValue(namespaceIngestTimeRuleFieldValue)
            .state(namespaceIngestTimeRuleState)
            .build());

    }
}
Copy
variables:
  testNamespaceIngestTimeRules:
    fn::invoke:
      function: oci:LogAnalytics:getNamespaceIngestTimeRules
      arguments:
        compartmentId: ${compartmentId}
        namespace: ${namespaceIngestTimeRuleNamespace}
        conditionKind: ${namespaceIngestTimeRuleConditionKind}
        displayName: ${namespaceIngestTimeRuleDisplayName}
        fieldName: ${namespaceIngestTimeRuleFieldName}
        fieldValue: ${namespaceIngestTimeRuleFieldValue}
        state: ${namespaceIngestTimeRuleState}
Copy

Using getNamespaceIngestTimeRules

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 getNamespaceIngestTimeRules(args: GetNamespaceIngestTimeRulesArgs, opts?: InvokeOptions): Promise<GetNamespaceIngestTimeRulesResult>
function getNamespaceIngestTimeRulesOutput(args: GetNamespaceIngestTimeRulesOutputArgs, opts?: InvokeOptions): Output<GetNamespaceIngestTimeRulesResult>
Copy
def get_namespace_ingest_time_rules(compartment_id: Optional[str] = None,
                                    condition_kind: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    field_name: Optional[str] = None,
                                    field_value: Optional[str] = None,
                                    filters: Optional[Sequence[_loganalytics.GetNamespaceIngestTimeRulesFilter]] = None,
                                    namespace: Optional[str] = None,
                                    state: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetNamespaceIngestTimeRulesResult
def get_namespace_ingest_time_rules_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                    condition_kind: Optional[pulumi.Input[str]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    field_name: Optional[pulumi.Input[str]] = None,
                                    field_value: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_loganalytics.GetNamespaceIngestTimeRulesFilterArgs]]]] = None,
                                    namespace: Optional[pulumi.Input[str]] = None,
                                    state: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetNamespaceIngestTimeRulesResult]
Copy
func GetNamespaceIngestTimeRules(ctx *Context, args *GetNamespaceIngestTimeRulesArgs, opts ...InvokeOption) (*GetNamespaceIngestTimeRulesResult, error)
func GetNamespaceIngestTimeRulesOutput(ctx *Context, args *GetNamespaceIngestTimeRulesOutputArgs, opts ...InvokeOption) GetNamespaceIngestTimeRulesResultOutput
Copy

> Note: This function is named GetNamespaceIngestTimeRules in the Go SDK.

public static class GetNamespaceIngestTimeRules 
{
    public static Task<GetNamespaceIngestTimeRulesResult> InvokeAsync(GetNamespaceIngestTimeRulesArgs args, InvokeOptions? opts = null)
    public static Output<GetNamespaceIngestTimeRulesResult> Invoke(GetNamespaceIngestTimeRulesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetNamespaceIngestTimeRulesResult> getNamespaceIngestTimeRules(GetNamespaceIngestTimeRulesArgs args, InvokeOptions options)
public static Output<GetNamespaceIngestTimeRulesResult> getNamespaceIngestTimeRules(GetNamespaceIngestTimeRulesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:LogAnalytics/getNamespaceIngestTimeRules:getNamespaceIngestTimeRules
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Namespace This property is required. string
The Logging Analytics namespace used for the request.
ConditionKind string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
DisplayName string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
FieldName string
The field name used for filtering. Only rules using the specified field name will be returned.
FieldValue string
The field value used for filtering. Only rules using the specified field value will be returned.
Filters Changes to this property will trigger replacement. List<GetNamespaceIngestTimeRulesFilter>
State string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
Namespace This property is required. string
The Logging Analytics namespace used for the request.
ConditionKind string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
DisplayName string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
FieldName string
The field name used for filtering. Only rules using the specified field name will be returned.
FieldValue string
The field value used for filtering. Only rules using the specified field value will be returned.
Filters Changes to this property will trigger replacement. []GetNamespaceIngestTimeRulesFilter
State string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
namespace This property is required. String
The Logging Analytics namespace used for the request.
conditionKind String
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
displayName String
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName String
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue String
The field value used for filtering. Only rules using the specified field value will be returned.
filters Changes to this property will trigger replacement. List<GetNamespaceIngestTimeRulesFilter>
state String
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
namespace This property is required. string
The Logging Analytics namespace used for the request.
conditionKind string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
displayName string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName string
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue string
The field value used for filtering. Only rules using the specified field value will be returned.
filters Changes to this property will trigger replacement. GetNamespaceIngestTimeRulesFilter[]
state string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
namespace This property is required. str
The Logging Analytics namespace used for the request.
condition_kind str
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
display_name str
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
field_name str
The field name used for filtering. Only rules using the specified field name will be returned.
field_value str
The field value used for filtering. Only rules using the specified field value will be returned.
filters Changes to this property will trigger replacement. Sequence[loganalytics.GetNamespaceIngestTimeRulesFilter]
state str
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
namespace This property is required. String
The Logging Analytics namespace used for the request.
conditionKind String
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
displayName String
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName String
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue String
The field value used for filtering. Only rules using the specified field value will be returned.
filters Changes to this property will trigger replacement. List<Property Map>
state String
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.

getNamespaceIngestTimeRules Result

The following output properties are available:

CompartmentId string
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
Id string
The provider-assigned unique ID for this managed resource.
IngestTimeRuleSummaryCollections List<GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection>
The list of ingest_time_rule_summary_collection.
Namespace string
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
ConditionKind string
DisplayName string
The ingest time rule display name.
FieldName string
The field name to be evaluated.
FieldValue string
The field value to be evaluated.
Filters List<GetNamespaceIngestTimeRulesFilter>
State string
The current state of the ingest time rule.
CompartmentId string
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
Id string
The provider-assigned unique ID for this managed resource.
IngestTimeRuleSummaryCollections []GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection
The list of ingest_time_rule_summary_collection.
Namespace string
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
ConditionKind string
DisplayName string
The ingest time rule display name.
FieldName string
The field name to be evaluated.
FieldValue string
The field value to be evaluated.
Filters []GetNamespaceIngestTimeRulesFilter
State string
The current state of the ingest time rule.
compartmentId String
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
id String
The provider-assigned unique ID for this managed resource.
ingestTimeRuleSummaryCollections List<GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection>
The list of ingest_time_rule_summary_collection.
namespace String
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
conditionKind String
displayName String
The ingest time rule display name.
fieldName String
The field name to be evaluated.
fieldValue String
The field value to be evaluated.
filters List<GetNamespaceIngestTimeRulesFilter>
state String
The current state of the ingest time rule.
compartmentId string
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
id string
The provider-assigned unique ID for this managed resource.
ingestTimeRuleSummaryCollections GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection[]
The list of ingest_time_rule_summary_collection.
namespace string
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
conditionKind string
displayName string
The ingest time rule display name.
fieldName string
The field name to be evaluated.
fieldValue string
The field value to be evaluated.
filters GetNamespaceIngestTimeRulesFilter[]
state string
The current state of the ingest time rule.
compartment_id str
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
id str
The provider-assigned unique ID for this managed resource.
ingest_time_rule_summary_collections Sequence[loganalytics.GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection]
The list of ingest_time_rule_summary_collection.
namespace str
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
condition_kind str
display_name str
The ingest time rule display name.
field_name str
The field name to be evaluated.
field_value str
The field value to be evaluated.
filters Sequence[loganalytics.GetNamespaceIngestTimeRulesFilter]
state str
The current state of the ingest time rule.
compartmentId String
Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
id String
The provider-assigned unique ID for this managed resource.
ingestTimeRuleSummaryCollections List<Property Map>
The list of ingest_time_rule_summary_collection.
namespace String
The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
conditionKind String
displayName String
The ingest time rule display name.
fieldName String
The field name to be evaluated.
fieldValue String
The field value to be evaluated.
filters List<Property Map>
state String
The current state of the ingest time rule.

Supporting Types

GetNamespaceIngestTimeRulesFilter

Name This property is required. string
Values This property is required. List<string>
Regex bool
Name This property is required. string
Values This property is required. []string
Regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean
name This property is required. string
values This property is required. string[]
regex boolean
name This property is required. str
values This property is required. Sequence[str]
regex bool
name This property is required. String
values This property is required. List<String>
regex Boolean

GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollection

items This property is required. List<Property Map>

GetNamespaceIngestTimeRulesIngestTimeRuleSummaryCollectionItem

CompartmentId This property is required. string
The ID of the compartment in which to list resources.
ConditionKind This property is required. string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Description for this resource.
DisplayName This property is required. string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
FieldName This property is required. string
The field name used for filtering. Only rules using the specified field name will be returned.
FieldValue This property is required. string
The field value used for filtering. Only rules using the specified field value will be returned.
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. 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.
IsEnabled This property is required. bool
A flag indicating whether or not the ingest time rule is enabled.
State This property is required. string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
TimeCreated This property is required. string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the resource was last updated, in the format defined by RFC3339.
CompartmentId This property is required. string
The ID of the compartment in which to list resources.
ConditionKind This property is required. string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Description for this resource.
DisplayName This property is required. string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
FieldName This property is required. string
The field name used for filtering. Only rules using the specified field name will be returned.
FieldValue This property is required. string
The field value used for filtering. Only rules using the specified field value will be returned.
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. 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.
IsEnabled This property is required. bool
A flag indicating whether or not the ingest time rule is enabled.
State This property is required. string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
TimeCreated This property is required. string
The date and time the resource was created, in the format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
conditionKind This property is required. String
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Description for this resource.
displayName This property is required. String
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName This property is required. String
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue This property is required. String
The field value used for filtering. Only rules using the specified field value will be returned.
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. 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.
isEnabled This property is required. Boolean
A flag indicating whether or not the ingest time rule is enabled.
state This property is required. String
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
timeCreated This property is required. String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId This property is required. string
The ID of the compartment in which to list resources.
conditionKind This property is required. string
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
Description for this resource.
displayName This property is required. string
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName This property is required. string
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue This property is required. string
The field value used for filtering. Only rules using the specified field value will be returned.
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. 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.
isEnabled This property is required. boolean
A flag indicating whether or not the ingest time rule is enabled.
state This property is required. string
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
timeCreated This property is required. string
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated This property is required. string
The date and time the resource was last updated, in the format defined by RFC3339.
compartment_id This property is required. str
The ID of the compartment in which to list resources.
condition_kind This property is required. str
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
Description for this resource.
display_name This property is required. str
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
field_name This property is required. str
The field name used for filtering. Only rules using the specified field name will be returned.
field_value This property is required. str
The field value used for filtering. Only rules using the specified field value will be returned.
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
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.
is_enabled This property is required. bool
A flag indicating whether or not the ingest time rule is enabled.
state This property is required. str
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
time_created This property is required. str
The date and time the resource was created, in the format defined by RFC3339.
time_updated This property is required. str
The date and time the resource was last updated, in the format defined by RFC3339.
compartmentId This property is required. String
The ID of the compartment in which to list resources.
conditionKind This property is required. String
The ingest time rule condition kind used for filtering. Only rules with conditions of the specified kind will be returned.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Description for this resource.
displayName This property is required. String
A filter to return rules whose displayName matches in whole or in part the specified value. The match is case-insensitive.
fieldName This property is required. String
The field name used for filtering. Only rules using the specified field name will be returned.
fieldValue This property is required. String
The field value used for filtering. Only rules using the specified field value will be returned.
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. 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.
isEnabled This property is required. Boolean
A flag indicating whether or not the ingest time rule is enabled.
state This property is required. String
The rule lifecycle state used for filtering. Currently supported values are ACTIVE and DELETED.
timeCreated This property is required. String
The date and time the resource was created, in the format defined by RFC3339.
timeUpdated This property is required. String
The date and time the resource was last updated, in the format defined by RFC3339.

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.30.0 published on Monday, Apr 14, 2025 by Pulumi