1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. LogAnalytics
  5. NamespaceIngestTimeRule
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

oci.LogAnalytics.NamespaceIngestTimeRule

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

    This resource provides the Namespace Ingest Time Rule resource in Oracle Cloud Infrastructure Log Analytics service.

    Creates a new ingest time rule in the specified compartment. 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 testNamespaceIngestTimeRule = new oci.loganalytics.NamespaceIngestTimeRule("test_namespace_ingest_time_rule", {
        actions: [{
            compartmentId: compartmentId,
            metricName: testMetric.name,
            namespace: namespaceIngestTimeRuleActionsNamespace,
            type: namespaceIngestTimeRuleActionsType,
            dimensions: namespaceIngestTimeRuleActionsDimensions,
            resourceGroup: namespaceIngestTimeRuleActionsResourceGroup,
        }],
        compartmentId: compartmentId,
        conditions: {
            fieldName: namespaceIngestTimeRuleConditionsFieldName,
            fieldOperator: namespaceIngestTimeRuleConditionsFieldOperator,
            fieldValue: namespaceIngestTimeRuleConditionsFieldValue,
            kind: namespaceIngestTimeRuleConditionsKind,
            additionalConditions: [{
                conditionField: namespaceIngestTimeRuleConditionsAdditionalConditionsConditionField,
                conditionOperator: namespaceIngestTimeRuleConditionsAdditionalConditionsConditionOperator,
                conditionValue: namespaceIngestTimeRuleConditionsAdditionalConditionsConditionValue,
            }],
        },
        displayName: namespaceIngestTimeRuleDisplayName,
        namespace: namespaceIngestTimeRuleNamespace,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: namespaceIngestTimeRuleDescription,
        freeformTags: {
            "bar-key": "value",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_namespace_ingest_time_rule = oci.log_analytics.NamespaceIngestTimeRule("test_namespace_ingest_time_rule",
        actions=[oci.log_analytics.NamespaceIngestTimeRuleActionArgs(
            compartment_id=compartment_id,
            metric_name=test_metric["name"],
            namespace=namespace_ingest_time_rule_actions_namespace,
            type=namespace_ingest_time_rule_actions_type,
            dimensions=namespace_ingest_time_rule_actions_dimensions,
            resource_group=namespace_ingest_time_rule_actions_resource_group,
        )],
        compartment_id=compartment_id,
        conditions=oci.log_analytics.NamespaceIngestTimeRuleConditionsArgs(
            field_name=namespace_ingest_time_rule_conditions_field_name,
            field_operator=namespace_ingest_time_rule_conditions_field_operator,
            field_value=namespace_ingest_time_rule_conditions_field_value,
            kind=namespace_ingest_time_rule_conditions_kind,
            additional_conditions=[oci.log_analytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs(
                condition_field=namespace_ingest_time_rule_conditions_additional_conditions_condition_field,
                condition_operator=namespace_ingest_time_rule_conditions_additional_conditions_condition_operator,
                condition_value=namespace_ingest_time_rule_conditions_additional_conditions_condition_value,
            )],
        ),
        display_name=namespace_ingest_time_rule_display_name,
        namespace=namespace_ingest_time_rule_namespace,
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=namespace_ingest_time_rule_description,
        freeform_tags={
            "bar-key": "value",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/LogAnalytics"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := LogAnalytics.NewNamespaceIngestTimeRule(ctx, "test_namespace_ingest_time_rule", &LogAnalytics.NamespaceIngestTimeRuleArgs{
    			Actions: loganalytics.NamespaceIngestTimeRuleActionArray{
    				&loganalytics.NamespaceIngestTimeRuleActionArgs{
    					CompartmentId: pulumi.Any(compartmentId),
    					MetricName:    pulumi.Any(testMetric.Name),
    					Namespace:     pulumi.Any(namespaceIngestTimeRuleActionsNamespace),
    					Type:          pulumi.Any(namespaceIngestTimeRuleActionsType),
    					Dimensions:    pulumi.Any(namespaceIngestTimeRuleActionsDimensions),
    					ResourceGroup: pulumi.Any(namespaceIngestTimeRuleActionsResourceGroup),
    				},
    			},
    			CompartmentId: pulumi.Any(compartmentId),
    			Conditions: &loganalytics.NamespaceIngestTimeRuleConditionsArgs{
    				FieldName:     pulumi.Any(namespaceIngestTimeRuleConditionsFieldName),
    				FieldOperator: pulumi.Any(namespaceIngestTimeRuleConditionsFieldOperator),
    				FieldValue:    pulumi.Any(namespaceIngestTimeRuleConditionsFieldValue),
    				Kind:          pulumi.Any(namespaceIngestTimeRuleConditionsKind),
    				AdditionalConditions: loganalytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArray{
    					&loganalytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs{
    						ConditionField:    pulumi.Any(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionField),
    						ConditionOperator: pulumi.Any(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionOperator),
    						ConditionValue:    pulumi.Any(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionValue),
    					},
    				},
    			},
    			DisplayName: pulumi.Any(namespaceIngestTimeRuleDisplayName),
    			Namespace:   pulumi.Any(namespaceIngestTimeRuleNamespace),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(namespaceIngestTimeRuleDescription),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    		})
    		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 testNamespaceIngestTimeRule = new Oci.LogAnalytics.NamespaceIngestTimeRule("test_namespace_ingest_time_rule", new()
        {
            Actions = new[]
            {
                new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleActionArgs
                {
                    CompartmentId = compartmentId,
                    MetricName = testMetric.Name,
                    Namespace = namespaceIngestTimeRuleActionsNamespace,
                    Type = namespaceIngestTimeRuleActionsType,
                    Dimensions = namespaceIngestTimeRuleActionsDimensions,
                    ResourceGroup = namespaceIngestTimeRuleActionsResourceGroup,
                },
            },
            CompartmentId = compartmentId,
            Conditions = new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleConditionsArgs
            {
                FieldName = namespaceIngestTimeRuleConditionsFieldName,
                FieldOperator = namespaceIngestTimeRuleConditionsFieldOperator,
                FieldValue = namespaceIngestTimeRuleConditionsFieldValue,
                Kind = namespaceIngestTimeRuleConditionsKind,
                AdditionalConditions = new[]
                {
                    new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs
                    {
                        ConditionField = namespaceIngestTimeRuleConditionsAdditionalConditionsConditionField,
                        ConditionOperator = namespaceIngestTimeRuleConditionsAdditionalConditionsConditionOperator,
                        ConditionValue = namespaceIngestTimeRuleConditionsAdditionalConditionsConditionValue,
                    },
                },
            },
            DisplayName = namespaceIngestTimeRuleDisplayName,
            Namespace = namespaceIngestTimeRuleNamespace,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = namespaceIngestTimeRuleDescription,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.LogAnalytics.NamespaceIngestTimeRule;
    import com.pulumi.oci.LogAnalytics.NamespaceIngestTimeRuleArgs;
    import com.pulumi.oci.LogAnalytics.inputs.NamespaceIngestTimeRuleActionArgs;
    import com.pulumi.oci.LogAnalytics.inputs.NamespaceIngestTimeRuleConditionsArgs;
    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 testNamespaceIngestTimeRule = new NamespaceIngestTimeRule("testNamespaceIngestTimeRule", NamespaceIngestTimeRuleArgs.builder()
                .actions(NamespaceIngestTimeRuleActionArgs.builder()
                    .compartmentId(compartmentId)
                    .metricName(testMetric.name())
                    .namespace(namespaceIngestTimeRuleActionsNamespace)
                    .type(namespaceIngestTimeRuleActionsType)
                    .dimensions(namespaceIngestTimeRuleActionsDimensions)
                    .resourceGroup(namespaceIngestTimeRuleActionsResourceGroup)
                    .build())
                .compartmentId(compartmentId)
                .conditions(NamespaceIngestTimeRuleConditionsArgs.builder()
                    .fieldName(namespaceIngestTimeRuleConditionsFieldName)
                    .fieldOperator(namespaceIngestTimeRuleConditionsFieldOperator)
                    .fieldValue(namespaceIngestTimeRuleConditionsFieldValue)
                    .kind(namespaceIngestTimeRuleConditionsKind)
                    .additionalConditions(NamespaceIngestTimeRuleConditionsAdditionalConditionArgs.builder()
                        .conditionField(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionField)
                        .conditionOperator(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionOperator)
                        .conditionValue(namespaceIngestTimeRuleConditionsAdditionalConditionsConditionValue)
                        .build())
                    .build())
                .displayName(namespaceIngestTimeRuleDisplayName)
                .namespace(namespaceIngestTimeRuleNamespace)
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(namespaceIngestTimeRuleDescription)
                .freeformTags(Map.of("bar-key", "value"))
                .build());
    
        }
    }
    
    resources:
      testNamespaceIngestTimeRule:
        type: oci:LogAnalytics:NamespaceIngestTimeRule
        name: test_namespace_ingest_time_rule
        properties:
          actions:
            - compartmentId: ${compartmentId}
              metricName: ${testMetric.name}
              namespace: ${namespaceIngestTimeRuleActionsNamespace}
              type: ${namespaceIngestTimeRuleActionsType}
              dimensions: ${namespaceIngestTimeRuleActionsDimensions}
              resourceGroup: ${namespaceIngestTimeRuleActionsResourceGroup}
          compartmentId: ${compartmentId}
          conditions:
            fieldName: ${namespaceIngestTimeRuleConditionsFieldName}
            fieldOperator: ${namespaceIngestTimeRuleConditionsFieldOperator}
            fieldValue: ${namespaceIngestTimeRuleConditionsFieldValue}
            kind: ${namespaceIngestTimeRuleConditionsKind}
            additionalConditions:
              - conditionField: ${namespaceIngestTimeRuleConditionsAdditionalConditionsConditionField}
                conditionOperator: ${namespaceIngestTimeRuleConditionsAdditionalConditionsConditionOperator}
                conditionValue: ${namespaceIngestTimeRuleConditionsAdditionalConditionsConditionValue}
          displayName: ${namespaceIngestTimeRuleDisplayName}
          namespace: ${namespaceIngestTimeRuleNamespace}
          definedTags:
            foo-namespace.bar-key: value
          description: ${namespaceIngestTimeRuleDescription}
          freeformTags:
            bar-key: value
    

    Create NamespaceIngestTimeRule Resource

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

    Constructor syntax

    new NamespaceIngestTimeRule(name: string, args: NamespaceIngestTimeRuleArgs, opts?: CustomResourceOptions);
    @overload
    def NamespaceIngestTimeRule(resource_name: str,
                                args: NamespaceIngestTimeRuleArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def NamespaceIngestTimeRule(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                actions: Optional[Sequence[_loganalytics.NamespaceIngestTimeRuleActionArgs]] = None,
                                compartment_id: Optional[str] = None,
                                conditions: Optional[_loganalytics.NamespaceIngestTimeRuleConditionsArgs] = None,
                                display_name: Optional[str] = None,
                                namespace: Optional[str] = None,
                                defined_tags: Optional[Mapping[str, Any]] = None,
                                description: Optional[str] = None,
                                freeform_tags: Optional[Mapping[str, Any]] = None)
    func NewNamespaceIngestTimeRule(ctx *Context, name string, args NamespaceIngestTimeRuleArgs, opts ...ResourceOption) (*NamespaceIngestTimeRule, error)
    public NamespaceIngestTimeRule(string name, NamespaceIngestTimeRuleArgs args, CustomResourceOptions? opts = null)
    public NamespaceIngestTimeRule(String name, NamespaceIngestTimeRuleArgs args)
    public NamespaceIngestTimeRule(String name, NamespaceIngestTimeRuleArgs args, CustomResourceOptions options)
    
    type: oci:LogAnalytics:NamespaceIngestTimeRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args NamespaceIngestTimeRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args NamespaceIngestTimeRuleArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args NamespaceIngestTimeRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NamespaceIngestTimeRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NamespaceIngestTimeRuleArgs
    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 namespaceIngestTimeRuleResource = new Oci.LogAnalytics.NamespaceIngestTimeRule("namespaceIngestTimeRuleResource", new()
    {
        Actions = new[]
        {
            new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleActionArgs
            {
                CompartmentId = "string",
                MetricName = "string",
                Namespace = "string",
                Type = "string",
                Dimensions = new[]
                {
                    "string",
                },
                ResourceGroup = "string",
            },
        },
        CompartmentId = "string",
        Conditions = new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleConditionsArgs
        {
            FieldName = "string",
            FieldOperator = "string",
            FieldValue = "string",
            Kind = "string",
            AdditionalConditions = new[]
            {
                new Oci.LogAnalytics.Inputs.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs
                {
                    ConditionField = "string",
                    ConditionOperator = "string",
                    ConditionValue = "string",
                },
            },
        },
        DisplayName = "string",
        Namespace = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
    });
    
    example, err := LogAnalytics.NewNamespaceIngestTimeRule(ctx, "namespaceIngestTimeRuleResource", &LogAnalytics.NamespaceIngestTimeRuleArgs{
    	Actions: loganalytics.NamespaceIngestTimeRuleActionArray{
    		&loganalytics.NamespaceIngestTimeRuleActionArgs{
    			CompartmentId: pulumi.String("string"),
    			MetricName:    pulumi.String("string"),
    			Namespace:     pulumi.String("string"),
    			Type:          pulumi.String("string"),
    			Dimensions: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ResourceGroup: pulumi.String("string"),
    		},
    	},
    	CompartmentId: pulumi.String("string"),
    	Conditions: &loganalytics.NamespaceIngestTimeRuleConditionsArgs{
    		FieldName:     pulumi.String("string"),
    		FieldOperator: pulumi.String("string"),
    		FieldValue:    pulumi.String("string"),
    		Kind:          pulumi.String("string"),
    		AdditionalConditions: loganalytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArray{
    			&loganalytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs{
    				ConditionField:    pulumi.String("string"),
    				ConditionOperator: pulumi.String("string"),
    				ConditionValue:    pulumi.String("string"),
    			},
    		},
    	},
    	DisplayName: pulumi.String("string"),
    	Namespace:   pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    })
    
    var namespaceIngestTimeRuleResource = new NamespaceIngestTimeRule("namespaceIngestTimeRuleResource", NamespaceIngestTimeRuleArgs.builder()
        .actions(NamespaceIngestTimeRuleActionArgs.builder()
            .compartmentId("string")
            .metricName("string")
            .namespace("string")
            .type("string")
            .dimensions("string")
            .resourceGroup("string")
            .build())
        .compartmentId("string")
        .conditions(NamespaceIngestTimeRuleConditionsArgs.builder()
            .fieldName("string")
            .fieldOperator("string")
            .fieldValue("string")
            .kind("string")
            .additionalConditions(NamespaceIngestTimeRuleConditionsAdditionalConditionArgs.builder()
                .conditionField("string")
                .conditionOperator("string")
                .conditionValue("string")
                .build())
            .build())
        .displayName("string")
        .namespace("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .build());
    
    namespace_ingest_time_rule_resource = oci.log_analytics.NamespaceIngestTimeRule("namespaceIngestTimeRuleResource",
        actions=[oci.log_analytics.NamespaceIngestTimeRuleActionArgs(
            compartment_id="string",
            metric_name="string",
            namespace="string",
            type="string",
            dimensions=["string"],
            resource_group="string",
        )],
        compartment_id="string",
        conditions=oci.log_analytics.NamespaceIngestTimeRuleConditionsArgs(
            field_name="string",
            field_operator="string",
            field_value="string",
            kind="string",
            additional_conditions=[oci.log_analytics.NamespaceIngestTimeRuleConditionsAdditionalConditionArgs(
                condition_field="string",
                condition_operator="string",
                condition_value="string",
            )],
        ),
        display_name="string",
        namespace="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        })
    
    const namespaceIngestTimeRuleResource = new oci.loganalytics.NamespaceIngestTimeRule("namespaceIngestTimeRuleResource", {
        actions: [{
            compartmentId: "string",
            metricName: "string",
            namespace: "string",
            type: "string",
            dimensions: ["string"],
            resourceGroup: "string",
        }],
        compartmentId: "string",
        conditions: {
            fieldName: "string",
            fieldOperator: "string",
            fieldValue: "string",
            kind: "string",
            additionalConditions: [{
                conditionField: "string",
                conditionOperator: "string",
                conditionValue: "string",
            }],
        },
        displayName: "string",
        namespace: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
    });
    
    type: oci:LogAnalytics:NamespaceIngestTimeRule
    properties:
        actions:
            - compartmentId: string
              dimensions:
                - string
              metricName: string
              namespace: string
              resourceGroup: string
              type: string
        compartmentId: string
        conditions:
            additionalConditions:
                - conditionField: string
                  conditionOperator: string
                  conditionValue: string
            fieldName: string
            fieldOperator: string
            fieldValue: string
            kind: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        namespace: string
    

    NamespaceIngestTimeRule Resource Properties

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

    Inputs

    The NamespaceIngestTimeRule resource accepts the following input properties:

    Actions List<NamespaceIngestTimeRuleAction>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    CompartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    Conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    DisplayName string
    (Updatable) The ingest time rule display name.
    Namespace 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, object>
    (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, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Actions []NamespaceIngestTimeRuleActionArgs
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    CompartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    Conditions NamespaceIngestTimeRuleConditionsArgs
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    DisplayName string
    (Updatable) The ingest time rule display name.
    Namespace 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]interface{}
    (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]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    actions List<NamespaceIngestTimeRuleAction>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId String
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    displayName String
    (Updatable) The ingest time rule display name.
    namespace 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,Object>
    (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,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    actions NamespaceIngestTimeRuleAction[]
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    displayName string
    (Updatable) The ingest time rule display name.
    namespace 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]: any}
    (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]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    actions Sequence[loganalytics.NamespaceIngestTimeRuleActionArgs]
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartment_id str
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions loganalytics.NamespaceIngestTimeRuleConditionsArgs
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    display_name str
    (Updatable) The ingest time rule display name.
    namespace 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, Any]
    (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, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    actions List<Property Map>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId String
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions Property Map
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    displayName String
    (Updatable) The ingest time rule display name.
    namespace 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<Any>
    (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<Any>
    (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 NamespaceIngestTimeRule resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    IngestTimeRuleId string
    IsEnabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    State string
    The current state of the ingest time rule.
    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.
    IngestTimeRuleId string
    IsEnabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    State string
    The current state of the ingest time rule.
    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.
    ingestTimeRuleId String
    isEnabled Boolean
    A flag indicating whether or not the ingest time rule is enabled.
    state String
    The current state of the ingest time rule.
    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.
    ingestTimeRuleId string
    isEnabled boolean
    A flag indicating whether or not the ingest time rule is enabled.
    state string
    The current state of the ingest time rule.
    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.
    ingest_time_rule_id str
    is_enabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    state str
    The current state of the ingest time rule.
    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.
    ingestTimeRuleId String
    isEnabled Boolean
    A flag indicating whether or not the ingest time rule is enabled.
    state String
    The current state of the ingest time rule.
    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 NamespaceIngestTimeRule Resource

    Get an existing NamespaceIngestTimeRule 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?: NamespaceIngestTimeRuleState, opts?: CustomResourceOptions): NamespaceIngestTimeRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            actions: Optional[Sequence[_loganalytics.NamespaceIngestTimeRuleActionArgs]] = None,
            compartment_id: Optional[str] = None,
            conditions: Optional[_loganalytics.NamespaceIngestTimeRuleConditionsArgs] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            ingest_time_rule_id: Optional[str] = None,
            is_enabled: Optional[bool] = None,
            namespace: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> NamespaceIngestTimeRule
    func GetNamespaceIngestTimeRule(ctx *Context, name string, id IDInput, state *NamespaceIngestTimeRuleState, opts ...ResourceOption) (*NamespaceIngestTimeRule, error)
    public static NamespaceIngestTimeRule Get(string name, Input<string> id, NamespaceIngestTimeRuleState? state, CustomResourceOptions? opts = null)
    public static NamespaceIngestTimeRule get(String name, Output<String> id, NamespaceIngestTimeRuleState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    Actions List<NamespaceIngestTimeRuleAction>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    CompartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    Conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    DefinedTags Dictionary<string, object>
    (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) The ingest time rule display name.
    FreeformTags Dictionary<string, object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IngestTimeRuleId string
    IsEnabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    Namespace 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

    State string
    The current state of the ingest time rule.
    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.
    Actions []NamespaceIngestTimeRuleActionArgs
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    CompartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    Conditions NamespaceIngestTimeRuleConditionsArgs
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    DefinedTags map[string]interface{}
    (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) The ingest time rule display name.
    FreeformTags map[string]interface{}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    IngestTimeRuleId string
    IsEnabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    Namespace 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

    State string
    The current state of the ingest time rule.
    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.
    actions List<NamespaceIngestTimeRuleAction>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId String
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    definedTags Map<String,Object>
    (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) The ingest time rule display name.
    freeformTags Map<String,Object>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ingestTimeRuleId String
    isEnabled Boolean
    A flag indicating whether or not the ingest time rule is enabled.
    namespace 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

    state String
    The current state of the ingest time rule.
    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.
    actions NamespaceIngestTimeRuleAction[]
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId string
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions NamespaceIngestTimeRuleConditions
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    definedTags {[key: string]: any}
    (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) The ingest time rule display name.
    freeformTags {[key: string]: any}
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ingestTimeRuleId string
    isEnabled boolean
    A flag indicating whether or not the ingest time rule is enabled.
    namespace 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

    state string
    The current state of the ingest time rule.
    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.
    actions Sequence[loganalytics.NamespaceIngestTimeRuleActionArgs]
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartment_id str
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions loganalytics.NamespaceIngestTimeRuleConditionsArgs
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    defined_tags Mapping[str, Any]
    (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) The ingest time rule display name.
    freeform_tags Mapping[str, Any]
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ingest_time_rule_id str
    is_enabled bool
    A flag indicating whether or not the ingest time rule is enabled.
    namespace 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

    state str
    The current state of the ingest time rule.
    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.
    actions List<Property Map>
    (Updatable) The action(s) to be performed if the ingest time rule condition(s) are satisfied.
    compartmentId String
    (Updatable) Compartment Identifier [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
    conditions Property Map
    (Updatable) The condition(s) to evaluate for an ingest time rule.
    definedTags Map<Any>
    (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) The ingest time rule display name.
    freeformTags Map<Any>
    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    ingestTimeRuleId String
    isEnabled Boolean
    A flag indicating whether or not the ingest time rule is enabled.
    namespace 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

    state String
    The current state of the ingest time rule.
    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.

    Supporting Types

    NamespaceIngestTimeRuleAction, NamespaceIngestTimeRuleActionArgs

    CompartmentId string
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    MetricName string
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    Namespace string
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    Type string
    (Updatable) Discriminator.
    Dimensions List<string>
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    ResourceGroup string
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    CompartmentId string
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    MetricName string
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    Namespace string
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    Type string
    (Updatable) Discriminator.
    Dimensions []string
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    ResourceGroup string
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    compartmentId String
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    metricName String
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    namespace String
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    type String
    (Updatable) Discriminator.
    dimensions List<String>
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    resourceGroup String
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    compartmentId string
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    metricName string
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    namespace string
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    type string
    (Updatable) Discriminator.
    dimensions string[]
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    resourceGroup string
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    compartment_id str
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    metric_name str
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    namespace str
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    type str
    (Updatable) Discriminator.
    dimensions Sequence[str]
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    resource_group str
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    compartmentId String
    (Updatable) The compartment OCID (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the extracted metric.
    metricName String
    (Updatable) The metric name of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).
    namespace String
    (Updatable) The namespace of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters and underscores (_).
    type String
    (Updatable) Discriminator.
    dimensions List<String>
    (Updatable) Additional dimensions to publish for the extracted metric. A valid list contains the source field names whose values are to be published as dimensions. The source name itself is specified using a special macro SOURCE_NAME
    resourceGroup String
    (Updatable) The resourceGroup of the extracted metric. A valid value starts with an alphabetical character and includes only alphanumeric characters, periods (.), underscores (_), hyphens (-), and dollar signs ($).

    NamespaceIngestTimeRuleConditions, NamespaceIngestTimeRuleConditionsArgs

    FieldName string
    (Updatable) The field name to be evaluated.
    FieldOperator string
    (Updatable) The operator to be used for evaluating the field.
    FieldValue string
    (Updatable) The field value to be evaluated.
    Kind string
    (Updatable) Discriminator.
    AdditionalConditions List<NamespaceIngestTimeRuleConditionsAdditionalCondition>
    (Updatable) Optional additional condition(s) to be evaluated.
    FieldName string
    (Updatable) The field name to be evaluated.
    FieldOperator string
    (Updatable) The operator to be used for evaluating the field.
    FieldValue string
    (Updatable) The field value to be evaluated.
    Kind string
    (Updatable) Discriminator.
    AdditionalConditions []NamespaceIngestTimeRuleConditionsAdditionalCondition
    (Updatable) Optional additional condition(s) to be evaluated.
    fieldName String
    (Updatable) The field name to be evaluated.
    fieldOperator String
    (Updatable) The operator to be used for evaluating the field.
    fieldValue String
    (Updatable) The field value to be evaluated.
    kind String
    (Updatable) Discriminator.
    additionalConditions List<NamespaceIngestTimeRuleConditionsAdditionalCondition>
    (Updatable) Optional additional condition(s) to be evaluated.
    fieldName string
    (Updatable) The field name to be evaluated.
    fieldOperator string
    (Updatable) The operator to be used for evaluating the field.
    fieldValue string
    (Updatable) The field value to be evaluated.
    kind string
    (Updatable) Discriminator.
    additionalConditions NamespaceIngestTimeRuleConditionsAdditionalCondition[]
    (Updatable) Optional additional condition(s) to be evaluated.
    field_name str
    (Updatable) The field name to be evaluated.
    field_operator str
    (Updatable) The operator to be used for evaluating the field.
    field_value str
    (Updatable) The field value to be evaluated.
    kind str
    (Updatable) Discriminator.
    additional_conditions Sequence[loganalytics.NamespaceIngestTimeRuleConditionsAdditionalCondition]
    (Updatable) Optional additional condition(s) to be evaluated.
    fieldName String
    (Updatable) The field name to be evaluated.
    fieldOperator String
    (Updatable) The operator to be used for evaluating the field.
    fieldValue String
    (Updatable) The field value to be evaluated.
    kind String
    (Updatable) Discriminator.
    additionalConditions List<Property Map>
    (Updatable) Optional additional condition(s) to be evaluated.

    NamespaceIngestTimeRuleConditionsAdditionalCondition, NamespaceIngestTimeRuleConditionsAdditionalConditionArgs

    ConditionField string
    (Updatable) The additional field name to be evaluated.
    ConditionOperator string
    (Updatable) The operator to be used for evaluating the additional field.
    ConditionValue string
    (Updatable) The additional field value to be evaluated.
    ConditionField string
    (Updatable) The additional field name to be evaluated.
    ConditionOperator string
    (Updatable) The operator to be used for evaluating the additional field.
    ConditionValue string
    (Updatable) The additional field value to be evaluated.
    conditionField String
    (Updatable) The additional field name to be evaluated.
    conditionOperator String
    (Updatable) The operator to be used for evaluating the additional field.
    conditionValue String
    (Updatable) The additional field value to be evaluated.
    conditionField string
    (Updatable) The additional field name to be evaluated.
    conditionOperator string
    (Updatable) The operator to be used for evaluating the additional field.
    conditionValue string
    (Updatable) The additional field value to be evaluated.
    condition_field str
    (Updatable) The additional field name to be evaluated.
    condition_operator str
    (Updatable) The operator to be used for evaluating the additional field.
    condition_value str
    (Updatable) The additional field value to be evaluated.
    conditionField String
    (Updatable) The additional field name to be evaluated.
    conditionOperator String
    (Updatable) The operator to be used for evaluating the additional field.
    conditionValue String
    (Updatable) The additional field value to be evaluated.

    Import

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

    $ pulumi import oci:LogAnalytics/namespaceIngestTimeRule:NamespaceIngestTimeRule test_namespace_ingest_time_rule "namespaces/{namespaceName}/ingestTimeRules/{ingestTimeRuleId}"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi