sumologic logo
Sumo Logic v0.13.0, Mar 27 23

sumologic.Hierarchy

Provides a Sumologic Hierarchy.

Example Usage

using System.Collections.Generic;
using Pulumi;
using SumoLogic = Pulumi.SumoLogic;

return await Deployment.RunAsync(() => 
{
    var exampleHierarchy = new SumoLogic.Hierarchy("exampleHierarchy", new()
    {
        Filter = new SumoLogic.Inputs.HierarchyFilterArgs
        {
            Key = "_origin",
            Value = "kubernetes",
        },
        Levels = new[]
        {
            new SumoLogic.Inputs.HierarchyLevelArgs
            {
                EntityType = "cluster",
                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelArgs
                {
                    EntityType = "node",
                },
                NextLevelsWithConditions = new[]
                {
                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionArgs
                    {
                        Condition = "testCondition",
                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelArgs
                        {
                            EntityType = "namespace",
                        },
                    },
                },
            },
        },
    });

});
package main

import (
	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sumologic.NewHierarchy(ctx, "exampleHierarchy", &sumologic.HierarchyArgs{
			Filter: &sumologic.HierarchyFilterArgs{
				Key:   pulumi.String("_origin"),
				Value: pulumi.String("kubernetes"),
			},
			Levels: sumologic.HierarchyLevelArray{
				&sumologic.HierarchyLevelArgs{
					EntityType: pulumi.String("cluster"),
					NextLevel: &sumologic.HierarchyLevelNextLevelArgs{
						EntityType: pulumi.String("node"),
					},
					NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionArray{
						&sumologic.HierarchyLevelNextLevelsWithConditionArgs{
							Condition: pulumi.String("testCondition"),
							Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs{
								EntityType: pulumi.String("namespace"),
							},
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sumologic.Hierarchy;
import com.pulumi.sumologic.HierarchyArgs;
import com.pulumi.sumologic.inputs.HierarchyFilterArgs;
import com.pulumi.sumologic.inputs.HierarchyLevelArgs;
import com.pulumi.sumologic.inputs.HierarchyLevelNextLevelArgs;
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 exampleHierarchy = new Hierarchy("exampleHierarchy", HierarchyArgs.builder()        
            .filter(HierarchyFilterArgs.builder()
                .key("_origin")
                .value("kubernetes")
                .build())
            .levels(HierarchyLevelArgs.builder()
                .entityType("cluster")
                .nextLevel(HierarchyLevelNextLevelArgs.builder()
                    .entityType("node")
                    .build())
                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionArgs.builder()
                    .condition("testCondition")
                    .level(HierarchyLevelNextLevelsWithConditionLevelArgs.builder()
                        .entityType("namespace")
                        .build())
                    .build())
                .build())
            .build());

    }
}
import pulumi
import pulumi_sumologic as sumologic

example_hierarchy = sumologic.Hierarchy("exampleHierarchy",
    filter=sumologic.HierarchyFilterArgs(
        key="_origin",
        value="kubernetes",
    ),
    levels=[sumologic.HierarchyLevelArgs(
        entity_type="cluster",
        next_level=sumologic.HierarchyLevelNextLevelArgs(
            entity_type="node",
        ),
        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionArgs(
            condition="testCondition",
            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs(
                entity_type="namespace",
            ),
        )],
    )])
import * as pulumi from "@pulumi/pulumi";
import * as sumologic from "@pulumi/sumologic";

const exampleHierarchy = new sumologic.Hierarchy("exampleHierarchy", {
    filter: {
        key: "_origin",
        value: "kubernetes",
    },
    levels: [{
        entityType: "cluster",
        nextLevel: {
            entityType: "node",
        },
        nextLevelsWithConditions: [{
            condition: "testCondition",
            level: {
                entityType: "namespace",
            },
        }],
    }],
});
resources:
  exampleHierarchy:
    type: sumologic:Hierarchy
    properties:
      filter:
        key: _origin
        value: kubernetes
      levels:
        - entityType: cluster
          nextLevel:
            entityType: node
          nextLevelsWithConditions:
            - condition: testCondition
              level:
                entityType: namespace

Create Hierarchy Resource

new Hierarchy(name: string, args: HierarchyArgs, opts?: CustomResourceOptions);
@overload
def Hierarchy(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              filter: Optional[HierarchyFilterArgs] = None,
              levels: Optional[Sequence[HierarchyLevelArgs]] = None,
              name: Optional[str] = None)
@overload
def Hierarchy(resource_name: str,
              args: HierarchyArgs,
              opts: Optional[ResourceOptions] = None)
func NewHierarchy(ctx *Context, name string, args HierarchyArgs, opts ...ResourceOption) (*Hierarchy, error)
public Hierarchy(string name, HierarchyArgs args, CustomResourceOptions? opts = null)
public Hierarchy(String name, HierarchyArgs args)
public Hierarchy(String name, HierarchyArgs args, CustomResourceOptions options)
type: sumologic:Hierarchy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args HierarchyArgs
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 HierarchyArgs
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 HierarchyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args HierarchyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args HierarchyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Hierarchy 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 Hierarchy resource accepts the following input properties:

Levels List<Pulumi.SumoLogic.Inputs.HierarchyLevelArgs>
Filter Pulumi.SumoLogic.Inputs.HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

Name string

Name of the hierarchy.

Levels []HierarchyLevelArgs
Filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

Name string

Name of the hierarchy.

levels List<HierarchyLevelArgs>
filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

name String

Name of the hierarchy.

levels HierarchyLevelArgs[]
filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

name string

Name of the hierarchy.

levels Sequence[HierarchyLevelArgs]
filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

name str

Name of the hierarchy.

levels List<Property Map>
filter Property Map

An optional clause that a hierarchy requires to be matched.

name String

Name of the hierarchy.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

Id string

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

id string

The provider-assigned unique ID for this managed resource.

id str

The provider-assigned unique ID for this managed resource.

id String

The provider-assigned unique ID for this managed resource.

Look up Existing Hierarchy Resource

Get an existing Hierarchy 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?: HierarchyState, opts?: CustomResourceOptions): Hierarchy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        filter: Optional[HierarchyFilterArgs] = None,
        levels: Optional[Sequence[HierarchyLevelArgs]] = None,
        name: Optional[str] = None) -> Hierarchy
func GetHierarchy(ctx *Context, name string, id IDInput, state *HierarchyState, opts ...ResourceOption) (*Hierarchy, error)
public static Hierarchy Get(string name, Input<string> id, HierarchyState? state, CustomResourceOptions? opts = null)
public static Hierarchy get(String name, Output<String> id, HierarchyState 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:
Filter Pulumi.SumoLogic.Inputs.HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

Levels List<Pulumi.SumoLogic.Inputs.HierarchyLevelArgs>
Name string

Name of the hierarchy.

Filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

Levels []HierarchyLevelArgs
Name string

Name of the hierarchy.

filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

levels List<HierarchyLevelArgs>
name String

Name of the hierarchy.

filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

levels HierarchyLevelArgs[]
name string

Name of the hierarchy.

filter HierarchyFilterArgs

An optional clause that a hierarchy requires to be matched.

levels Sequence[HierarchyLevelArgs]
name str

Name of the hierarchy.

filter Property Map

An optional clause that a hierarchy requires to be matched.

levels List<Property Map>
name String

Name of the hierarchy.

Supporting Types

Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.

HierarchyFilter

Key string

Filtering key.

Value string

Value required for the filtering key.

Key string

Filtering key.

Value string

Value required for the filtering key.

key String

Filtering key.

value String

Value required for the filtering key.

key string

Filtering key.

value string

Value required for the filtering key.

key str

Filtering key.

value str

Value required for the filtering key.

key String

Filtering key.

value String

Value required for the filtering key.

HierarchyLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition

Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
Condition string

Condition to be checked against for level.entityType value, for now full string match.

Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition string

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition str

Condition to be checked against for level.entityType value, for now full string match.

level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
condition String

Condition to be checked against for level.entityType value, for now full string match.

level Property Map

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

Next level without a condition.

next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

Next level without a condition.

nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevel Property Map

Next level without a condition.

nextLevelsWithConditions List<Property Map>

Zero or more next levels with conditions.

HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions List<string>

Zero or more next levels with conditions.

EntityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

NextLevelsWithConditions []string

Zero or more next levels with conditions.

entityType String

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions List<String>

Zero or more next levels with conditions.

entityType string

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

nextLevelsWithConditions string[]

Zero or more next levels with conditions.

entity_type str

Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.

next_levels_with_conditions Sequence[str]

Zero or more next levels with conditions.