sumologic.Hierarchy
Explore with Pulumi AI
Provides a Sumologic Hierarchy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sumologic from "@pulumi/sumologic";
const exampleHierarchy = new sumologic.Hierarchy("example_hierarchy", {
    name: "testK8sHierarchy",
    filter: {
        key: "_origin",
        value: "kubernetes",
    },
    levels: [{
        entityType: "cluster",
        nextLevelsWithConditions: [{
            condition: "testCondition",
            level: {
                entityType: "namespace",
            },
        }],
        nextLevel: {
            entityType: "node",
        },
    }],
});
import pulumi
import pulumi_sumologic as sumologic
example_hierarchy = sumologic.Hierarchy("example_hierarchy",
    name="testK8sHierarchy",
    filter=sumologic.HierarchyFilterArgs(
        key="_origin",
        value="kubernetes",
    ),
    levels=[sumologic.HierarchyLevelArgs(
        entity_type="cluster",
        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionArgs(
            condition="testCondition",
            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs(
                entity_type="namespace",
            ),
        )],
        next_level=sumologic.HierarchyLevelNextLevelArgs(
            entity_type="node",
        ),
    )])
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, "example_hierarchy", &sumologic.HierarchyArgs{
			Name: pulumi.String("testK8sHierarchy"),
			Filter: &sumologic.HierarchyFilterArgs{
				Key:   pulumi.String("_origin"),
				Value: pulumi.String("kubernetes"),
			},
			Levels: sumologic.HierarchyLevelArray{
				&sumologic.HierarchyLevelArgs{
					EntityType: pulumi.String("cluster"),
					NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionArray{
						&sumologic.HierarchyLevelNextLevelsWithConditionArgs{
							Condition: pulumi.String("testCondition"),
							Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs{
								EntityType: pulumi.String("namespace"),
							},
						},
					},
					NextLevel: &sumologic.HierarchyLevelNextLevelArgs{
						EntityType: pulumi.String("node"),
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SumoLogic = Pulumi.SumoLogic;
return await Deployment.RunAsync(() => 
{
    var exampleHierarchy = new SumoLogic.Hierarchy("example_hierarchy", new()
    {
        Name = "testK8sHierarchy",
        Filter = new SumoLogic.Inputs.HierarchyFilterArgs
        {
            Key = "_origin",
            Value = "kubernetes",
        },
        Levels = new[]
        {
            new SumoLogic.Inputs.HierarchyLevelArgs
            {
                EntityType = "cluster",
                NextLevelsWithConditions = new[]
                {
                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionArgs
                    {
                        Condition = "testCondition",
                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelArgs
                        {
                            EntityType = "namespace",
                        },
                    },
                },
                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelArgs
                {
                    EntityType = "node",
                },
            },
        },
    });
});
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()
            .name("testK8sHierarchy")
            .filter(HierarchyFilterArgs.builder()
                .key("_origin")
                .value("kubernetes")
                .build())
            .levels(HierarchyLevelArgs.builder()
                .entityType("cluster")
                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionArgs.builder()
                    .condition("testCondition")
                    .level(HierarchyLevelNextLevelsWithConditionLevelArgs.builder()
                        .entityType("namespace")
                        .build())
                    .build())
                .nextLevel(HierarchyLevelNextLevelArgs.builder()
                    .entityType("node")
                    .build())
                .build())
            .build());
    }
}
resources:
  exampleHierarchy:
    type: sumologic:Hierarchy
    name: example_hierarchy
    properties:
      name: testK8sHierarchy
      filter:
        key: _origin
        value: kubernetes
      levels:
        - entityType: cluster
          nextLevelsWithConditions:
            - condition: testCondition
              level:
                entityType: namespace
          nextLevel:
            entityType: node
Create Hierarchy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Hierarchy(name: string, args: HierarchyArgs, opts?: CustomResourceOptions);@overload
def Hierarchy(resource_name: str,
              args: HierarchyArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def Hierarchy(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              levels: Optional[Sequence[HierarchyLevelArgs]] = None,
              filter: Optional[HierarchyFilterArgs] = None,
              name: Optional[str] = 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.
Parameters
- 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.
 
Constructor example
The following reference example uses placeholder values for all input properties.
var hierarchyResource = new SumoLogic.Hierarchy("hierarchyResource", new()
{
    Levels = new[]
    {
        new SumoLogic.Inputs.HierarchyLevelArgs
        {
            EntityType = "string",
            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelArgs
            {
                EntityType = "string",
                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelArgs
                {
                    EntityType = "string",
                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelArgs
                    {
                        EntityType = "string",
                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs
                        {
                            EntityType = "string",
                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                            {
                                EntityType = "string",
                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevelsWithConditions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                        },
                                    },
                                },
                                NextLevelsWithConditions = new[]
                                {
                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                    {
                                        Condition = "string",
                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                            NextLevelsWithConditions = new[]
                            {
                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                {
                                    Condition = "string",
                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        NextLevelsWithConditions = new[]
                        {
                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                            {
                                Condition = "string",
                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                    NextLevelsWithConditions = new[]
                    {
                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs
                        {
                            Condition = "string",
                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                            {
                                EntityType = "string",
                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                NextLevelsWithConditions = new[]
                                {
                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                    {
                                        Condition = "string",
                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
                NextLevelsWithConditions = new[]
                {
                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionArgs
                    {
                        Condition = "string",
                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelArgs
                        {
                            EntityType = "string",
                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                            {
                                EntityType = "string",
                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                NextLevelsWithConditions = new[]
                                {
                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                    {
                                        Condition = "string",
                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                            NextLevelsWithConditions = new[]
                            {
                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                {
                                    Condition = "string",
                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                    {
                                                                        Condition = "string",
                                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
            },
            NextLevelsWithConditions = new[]
            {
                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionArgs
                {
                    Condition = "string",
                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelArgs
                    {
                        EntityType = "string",
                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs
                        {
                            EntityType = "string",
                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                            {
                                EntityType = "string",
                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevelsWithConditions = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                NextLevelsWithConditions = new[]
                                {
                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                    {
                                        Condition = "string",
                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                            NextLevelsWithConditions = new[]
                            {
                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                {
                                    Condition = "string",
                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                    {
                                                                        Condition = "string",
                                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                        NextLevelsWithConditions = new[]
                        {
                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                            {
                                Condition = "string",
                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                {
                                    EntityType = "string",
                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                    {
                                        EntityType = "string",
                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                        {
                                            EntityType = "string",
                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                            NextLevelsWithConditions = new[]
                                            {
                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                {
                                                    Condition = "string",
                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                        NextLevelsWithConditions = new[]
                                        {
                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                            {
                                                Condition = "string",
                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                    {
                                                                        Condition = "string",
                                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    NextLevelsWithConditions = new[]
                                    {
                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                        {
                                            Condition = "string",
                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                            {
                                                EntityType = "string",
                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                {
                                                    EntityType = "string",
                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                    {
                                                        EntityType = "string",
                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                        NextLevelsWithConditions = new[]
                                                        {
                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                            {
                                                                Condition = "string",
                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    NextLevelsWithConditions = new[]
                                                    {
                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                        {
                                                            Condition = "string",
                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                    {
                                                                        Condition = "string",
                                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                                NextLevelsWithConditions = new[]
                                                {
                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                    {
                                                        Condition = "string",
                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                        {
                                                            EntityType = "string",
                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                            {
                                                                EntityType = "string",
                                                                NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                {
                                                                    EntityType = "string",
                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                    NextLevelsWithConditions = new[]
                                                                    {
                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs
                                                                        {
                                                                            Condition = "string",
                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                                NextLevelsWithConditions = new[]
                                                                {
                                                                    new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                    {
                                                                        Condition = "string",
                                                                        Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            NextLevelsWithConditions = new[]
                                                            {
                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                {
                                                                    Condition = "string",
                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                    {
                                                                        EntityType = "string",
                                                                        NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                        {
                                                                            EntityType = "string",
                                                                            NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs
                                                                            {
                                                                                EntityType = "string",
                                                                                NextLevelsWithConditions = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                            },
                                                                            NextLevelsWithConditions = new[]
                                                                            {
                                                                                new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs
                                                                                {
                                                                                    Condition = "string",
                                                                                    Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                        NextLevelsWithConditions = new[]
                                                                        {
                                                                            new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                            {
                                                                                Condition = "string",
                                                                                Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                {
                                                                                    EntityType = "string",
                                                                                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs
                                                                                    {
                                                                                        EntityType = "string",
                                                                                        NextLevelsWithConditions = new[]
                                                                                        {
                                                                                            "string",
                                                                                        },
                                                                                    },
                                                                                    NextLevelsWithConditions = new[]
                                                                                    {
                                                                                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs
                                                                                        {
                                                                                            Condition = "string",
                                                                                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs
                                                                                            {
                                                                                                EntityType = "string",
                                                                                                NextLevelsWithConditions = new[]
                                                                                                {
                                                                                                    "string",
                                                                                                },
                                                                                            },
                                                                                        },
                                                                                    },
                                                                                },
                                                                            },
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
            },
        },
    },
    Filter = new SumoLogic.Inputs.HierarchyFilterArgs
    {
        Key = "string",
        Value = "string",
    },
    Name = "string",
});
example, err := sumologic.NewHierarchy(ctx, "hierarchyResource", &sumologic.HierarchyArgs{
	Levels: sumologic.HierarchyLevelArray{
		&sumologic.HierarchyLevelArgs{
			EntityType: pulumi.String("string"),
			NextLevel: &sumologic.HierarchyLevelNextLevelArgs{
				EntityType: pulumi.String("string"),
				NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelArgs{
					EntityType: pulumi.String("string"),
					NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelArgs{
						EntityType: pulumi.String("string"),
						NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs{
							EntityType: pulumi.String("string"),
							NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
								EntityType: pulumi.String("string"),
								NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevelsWithConditions: pulumi.StringArray{
											pulumi.String("string"),
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
										},
									},
								},
								NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
									&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
										Condition: pulumi.String("string"),
										Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
									},
								},
							},
							NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
								&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
									Condition: pulumi.String("string"),
									Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
						NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
							&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
								Condition: pulumi.String("string"),
								Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
											},
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
					},
					NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArray{
						&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs{
							Condition: pulumi.String("string"),
							Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
								EntityType: pulumi.String("string"),
								NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
											},
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
								NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
									&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
										Condition: pulumi.String("string"),
										Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
					},
				},
				NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionArray{
					&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionArgs{
						Condition: pulumi.String("string"),
						Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelArgs{
							EntityType: pulumi.String("string"),
							NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
								EntityType: pulumi.String("string"),
								NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
											},
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
								NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
									&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
										Condition: pulumi.String("string"),
										Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
							NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
								&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
									Condition: pulumi.String("string"),
									Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
																NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																	&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																		Condition: pulumi.String("string"),
																		Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
					},
				},
			},
			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionArray{
				&sumologic.HierarchyLevelNextLevelsWithConditionArgs{
					Condition: pulumi.String("string"),
					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs{
						EntityType: pulumi.String("string"),
						NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs{
							EntityType: pulumi.String("string"),
							NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
								EntityType: pulumi.String("string"),
								NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevelsWithConditions: pulumi.StringArray{
													pulumi.String("string"),
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
											},
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
								NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
									&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
										Condition: pulumi.String("string"),
										Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
							NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
								&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
									Condition: pulumi.String("string"),
									Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
																NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																	&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																		Condition: pulumi.String("string"),
																		Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
						NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
							&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
								Condition: pulumi.String("string"),
								Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
									EntityType: pulumi.String("string"),
									NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
										EntityType: pulumi.String("string"),
										NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
											EntityType: pulumi.String("string"),
											NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevelsWithConditions: pulumi.StringArray{
															pulumi.String("string"),
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
													},
												},
											},
											NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
												&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
													Condition: pulumi.String("string"),
													Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
										NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
											&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
												Condition: pulumi.String("string"),
												Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
																NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																	&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																		Condition: pulumi.String("string"),
																		Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
									NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
										&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
											Condition: pulumi.String("string"),
											Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
												EntityType: pulumi.String("string"),
												NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
													EntityType: pulumi.String("string"),
													NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
														EntityType: pulumi.String("string"),
														NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevelsWithConditions: pulumi.StringArray{
																	pulumi.String("string"),
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																},
															},
														},
														NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
															&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																Condition: pulumi.String("string"),
																Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
															},
														},
													},
													NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
														&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
															Condition: pulumi.String("string"),
															Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
																NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																	&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																		Condition: pulumi.String("string"),
																		Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
												NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
													&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
														Condition: pulumi.String("string"),
														Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
															EntityType: pulumi.String("string"),
															NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																EntityType: pulumi.String("string"),
																NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																	EntityType: pulumi.String("string"),
																	NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevelsWithConditions: pulumi.StringArray{
																			pulumi.String("string"),
																		},
																	},
																	NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArray{
																		&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs{
																			Condition: pulumi.String("string"),
																			Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																		},
																	},
																},
																NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																	&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																		Condition: pulumi.String("string"),
																		Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
															NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																	Condition: pulumi.String("string"),
																	Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																		EntityType: pulumi.String("string"),
																		NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																			EntityType: pulumi.String("string"),
																			NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs{
																				EntityType: pulumi.String("string"),
																				NextLevelsWithConditions: pulumi.StringArray{
																					pulumi.String("string"),
																				},
																			},
																			NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArray{
																				&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs{
																					Condition: pulumi.String("string"),
																					Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																				},
																			},
																		},
																		NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																			&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																				Condition: pulumi.String("string"),
																				Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																					EntityType: pulumi.String("string"),
																					NextLevel: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs{
																						EntityType: pulumi.String("string"),
																						NextLevelsWithConditions: pulumi.StringArray{
																							pulumi.String("string"),
																						},
																					},
																					NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArray{
																						&sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs{
																							Condition: pulumi.String("string"),
																							Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs{
																								EntityType: pulumi.String("string"),
																								NextLevelsWithConditions: pulumi.StringArray{
																									pulumi.String("string"),
																								},
																							},
																						},
																					},
																				},
																			},
																		},
																	},
																},
															},
														},
													},
												},
											},
										},
									},
								},
							},
						},
					},
				},
			},
		},
	},
	Filter: &sumologic.HierarchyFilterArgs{
		Key:   pulumi.String("string"),
		Value: pulumi.String("string"),
	},
	Name: pulumi.String("string"),
})
var hierarchyResource = new Hierarchy("hierarchyResource", HierarchyArgs.builder()
    .levels(HierarchyLevelArgs.builder()
        .entityType("string")
        .nextLevel(HierarchyLevelNextLevelArgs.builder()
            .entityType("string")
            .nextLevel(HierarchyLevelNextLevelNextLevelArgs.builder()
                .entityType("string")
                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelArgs.builder()
                    .entityType("string")
                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                        .entityType("string")
                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevelsWithConditions("string")
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                            .condition("string")
                            .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                        .condition("string")
                        .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                    .condition("string")
                    .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                        .entityType("string")
                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                            .condition("string")
                            .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .build())
            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionArgs.builder()
                .condition("string")
                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                    .entityType("string")
                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                        .entityType("string")
                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                            .condition("string")
                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                        .condition("string")
                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .build())
            .build())
        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionArgs.builder()
            .condition("string")
            .level(HierarchyLevelNextLevelsWithConditionLevelArgs.builder()
                .entityType("string")
                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                    .entityType("string")
                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                        .entityType("string")
                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevelsWithConditions("string")
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                            .condition("string")
                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                        .condition("string")
                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                    .condition("string")
                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                        .entityType("string")
                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                            .entityType("string")
                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevelsWithConditions("string")
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                .condition("string")
                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                            .condition("string")
                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                .entityType("string")
                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                    .entityType("string")
                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevelsWithConditions("string")
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                        .condition("string")
                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                    .condition("string")
                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                        .entityType("string")
                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                            .entityType("string")
                                            .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevelsWithConditions("string")
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .build())
                                                .build())
                                            .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                .condition("string")
                                                .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                            .condition("string")
                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                .entityType("string")
                                                .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                    .entityType("string")
                                                    .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevelsWithConditions("string")
                                                        .build())
                                                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs.builder()
                                                        .condition("string")
                                                        .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .build())
                                                    .build())
                                                .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                    .condition("string")
                                                    .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                        .entityType("string")
                                                        .nextLevel(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs.builder()
                                                            .entityType("string")
                                                            .nextLevelsWithConditions("string")
                                                            .build())
                                                        .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs.builder()
                                                            .condition("string")
                                                            .level(HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs.builder()
                                                                .entityType("string")
                                                                .nextLevelsWithConditions("string")
                                                                .build())
                                                            .build())
                                                        .build())
                                                    .build())
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .build())
                    .build())
                .build())
            .build())
        .build())
    .filter(HierarchyFilterArgs.builder()
        .key("string")
        .value("string")
        .build())
    .name("string")
    .build());
hierarchy_resource = sumologic.Hierarchy("hierarchyResource",
    levels=[sumologic.HierarchyLevelArgs(
        entity_type="string",
        next_level=sumologic.HierarchyLevelNextLevelArgs(
            entity_type="string",
            next_level=sumologic.HierarchyLevelNextLevelNextLevelArgs(
                entity_type="string",
                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelArgs(
                    entity_type="string",
                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs(
                        entity_type="string",
                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_levels_with_conditions=["string"],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                            condition="string",
                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                        )],
                    ),
                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                        condition="string",
                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                    )],
                ),
                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                    condition="string",
                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                        entity_type="string",
                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                            condition="string",
                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                        )],
                    ),
                )],
            ),
            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionArgs(
                condition="string",
                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelArgs(
                    entity_type="string",
                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                        entity_type="string",
                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                            condition="string",
                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                        )],
                    ),
                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                        condition="string",
                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                    )],
                ),
            )],
        ),
        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionArgs(
            condition="string",
            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs(
                entity_type="string",
                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs(
                    entity_type="string",
                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                        entity_type="string",
                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_levels_with_conditions=["string"],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                            condition="string",
                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                        )],
                    ),
                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                        condition="string",
                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                    )],
                ),
                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                    condition="string",
                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                        entity_type="string",
                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                            entity_type="string",
                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_levels_with_conditions=["string"],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                condition="string",
                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                            )],
                        ),
                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                            condition="string",
                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                entity_type="string",
                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                    entity_type="string",
                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_levels_with_conditions=["string"],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                        condition="string",
                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                            )],
                                        ),
                                    )],
                                ),
                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                    condition="string",
                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                        entity_type="string",
                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                            entity_type="string",
                                            next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_levels_with_conditions=["string"],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                )],
                                            ),
                                            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                condition="string",
                                                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                            )],
                                        ),
                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                            condition="string",
                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                entity_type="string",
                                                next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                    entity_type="string",
                                                    next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs(
                                                        entity_type="string",
                                                        next_levels_with_conditions=["string"],
                                                    ),
                                                    next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs(
                                                        condition="string",
                                                        level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                    )],
                                                ),
                                                next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                    condition="string",
                                                    level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                        entity_type="string",
                                                        next_level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs(
                                                            entity_type="string",
                                                            next_levels_with_conditions=["string"],
                                                        ),
                                                        next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs(
                                                            condition="string",
                                                            level=sumologic.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs(
                                                                entity_type="string",
                                                                next_levels_with_conditions=["string"],
                                                            ),
                                                        )],
                                                    ),
                                                )],
                                            ),
                                        )],
                                    ),
                                )],
                            ),
                        )],
                    ),
                )],
            ),
        )],
    )],
    filter=sumologic.HierarchyFilterArgs(
        key="string",
        value="string",
    ),
    name="string")
const hierarchyResource = new sumologic.Hierarchy("hierarchyResource", {
    levels: [{
        entityType: "string",
        nextLevel: {
            entityType: "string",
            nextLevel: {
                entityType: "string",
                nextLevel: {
                    entityType: "string",
                    nextLevel: {
                        entityType: "string",
                        nextLevel: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevelsWithConditions: ["string"],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                            }],
                        },
                        nextLevelsWithConditions: [{
                            condition: "string",
                            level: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                }],
                            },
                        }],
                    },
                    nextLevelsWithConditions: [{
                        condition: "string",
                        level: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                    }],
                },
                nextLevelsWithConditions: [{
                    condition: "string",
                    level: {
                        entityType: "string",
                        nextLevel: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                        nextLevelsWithConditions: [{
                            condition: "string",
                            level: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                        }],
                    },
                }],
            },
            nextLevelsWithConditions: [{
                condition: "string",
                level: {
                    entityType: "string",
                    nextLevel: {
                        entityType: "string",
                        nextLevel: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                        nextLevelsWithConditions: [{
                            condition: "string",
                            level: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                        }],
                    },
                    nextLevelsWithConditions: [{
                        condition: "string",
                        level: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                    }],
                },
            }],
        },
        nextLevelsWithConditions: [{
            condition: "string",
            level: {
                entityType: "string",
                nextLevel: {
                    entityType: "string",
                    nextLevel: {
                        entityType: "string",
                        nextLevel: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevelsWithConditions: ["string"],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                        nextLevelsWithConditions: [{
                            condition: "string",
                            level: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                        }],
                    },
                    nextLevelsWithConditions: [{
                        condition: "string",
                        level: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                    }],
                },
                nextLevelsWithConditions: [{
                    condition: "string",
                    level: {
                        entityType: "string",
                        nextLevel: {
                            entityType: "string",
                            nextLevel: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevelsWithConditions: ["string"],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                            nextLevelsWithConditions: [{
                                condition: "string",
                                level: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                            }],
                                        },
                                    }],
                                },
                            }],
                        },
                        nextLevelsWithConditions: [{
                            condition: "string",
                            level: {
                                entityType: "string",
                                nextLevel: {
                                    entityType: "string",
                                    nextLevel: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevelsWithConditions: ["string"],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                    nextLevelsWithConditions: [{
                                        condition: "string",
                                        level: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                            }],
                                        },
                                    }],
                                },
                                nextLevelsWithConditions: [{
                                    condition: "string",
                                    level: {
                                        entityType: "string",
                                        nextLevel: {
                                            entityType: "string",
                                            nextLevel: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevelsWithConditions: ["string"],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                }],
                                            },
                                            nextLevelsWithConditions: [{
                                                condition: "string",
                                                level: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                            }],
                                        },
                                        nextLevelsWithConditions: [{
                                            condition: "string",
                                            level: {
                                                entityType: "string",
                                                nextLevel: {
                                                    entityType: "string",
                                                    nextLevel: {
                                                        entityType: "string",
                                                        nextLevelsWithConditions: ["string"],
                                                    },
                                                    nextLevelsWithConditions: [{
                                                        condition: "string",
                                                        level: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                    }],
                                                },
                                                nextLevelsWithConditions: [{
                                                    condition: "string",
                                                    level: {
                                                        entityType: "string",
                                                        nextLevel: {
                                                            entityType: "string",
                                                            nextLevelsWithConditions: ["string"],
                                                        },
                                                        nextLevelsWithConditions: [{
                                                            condition: "string",
                                                            level: {
                                                                entityType: "string",
                                                                nextLevelsWithConditions: ["string"],
                                                            },
                                                        }],
                                                    },
                                                }],
                                            },
                                        }],
                                    },
                                }],
                            },
                        }],
                    },
                }],
            },
        }],
    }],
    filter: {
        key: "string",
        value: "string",
    },
    name: "string",
});
type: sumologic:Hierarchy
properties:
    filter:
        key: string
        value: string
    levels:
        - entityType: string
          nextLevel:
            entityType: string
            nextLevel:
                entityType: string
                nextLevel:
                    entityType: string
                    nextLevel:
                        entityType: string
                        nextLevel:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevelsWithConditions:
                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                        nextLevelsWithConditions:
                            - condition: string
                              level:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                    nextLevelsWithConditions:
                        - condition: string
                          level:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                nextLevelsWithConditions:
                    - condition: string
                      level:
                        entityType: string
                        nextLevel:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                        nextLevelsWithConditions:
                            - condition: string
                              level:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
            nextLevelsWithConditions:
                - condition: string
                  level:
                    entityType: string
                    nextLevel:
                        entityType: string
                        nextLevel:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                        nextLevelsWithConditions:
                            - condition: string
                              level:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                    nextLevelsWithConditions:
                        - condition: string
                          level:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
          nextLevelsWithConditions:
            - condition: string
              level:
                entityType: string
                nextLevel:
                    entityType: string
                    nextLevel:
                        entityType: string
                        nextLevel:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevelsWithConditions:
                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                        nextLevelsWithConditions:
                            - condition: string
                              level:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                    nextLevelsWithConditions:
                        - condition: string
                          level:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                nextLevelsWithConditions:
                    - condition: string
                      level:
                        entityType: string
                        nextLevel:
                            entityType: string
                            nextLevel:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevelsWithConditions:
                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                            nextLevelsWithConditions:
                                - condition: string
                                  level:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                        nextLevelsWithConditions:
                            - condition: string
                              level:
                                entityType: string
                                nextLevel:
                                    entityType: string
                                    nextLevel:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevelsWithConditions:
                                                    - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                    nextLevelsWithConditions:
                                        - condition: string
                                          level:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                                nextLevelsWithConditions:
                                    - condition: string
                                      level:
                                        entityType: string
                                        nextLevel:
                                            entityType: string
                                            nextLevel:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevelsWithConditions:
                                                        - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                            nextLevelsWithConditions:
                                                - condition: string
                                                  level:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                                        nextLevelsWithConditions:
                                            - condition: string
                                              level:
                                                entityType: string
                                                nextLevel:
                                                    entityType: string
                                                    nextLevel:
                                                        entityType: string
                                                        nextLevelsWithConditions:
                                                            - string
                                                    nextLevelsWithConditions:
                                                        - condition: string
                                                          level:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                                                nextLevelsWithConditions:
                                                    - condition: string
                                                      level:
                                                        entityType: string
                                                        nextLevel:
                                                            entityType: string
                                                            nextLevelsWithConditions:
                                                                - string
                                                        nextLevelsWithConditions:
                                                            - condition: string
                                                              level:
                                                                entityType: string
                                                                nextLevelsWithConditions:
                                                                    - string
    name: string
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.
Sumo Logic. Inputs. Hierarchy Level>  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - Filter
Pulumi.
Sumo Logic. Inputs. Hierarchy Filter  - An optional clause that a hierarchy requires to be matched.
 - Name string
 - Name of the hierarchy.
 
- Levels
[]Hierarchy
Level Args  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - Filter
Hierarchy
Filter Args  - An optional clause that a hierarchy requires to be matched.
 - Name string
 - Name of the hierarchy.
 
- levels
List<Hierarchy
Level>  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - filter
Hierarchy
Filter  - An optional clause that a hierarchy requires to be matched.
 - name String
 - Name of the hierarchy.
 
- levels
Hierarchy
Level[]  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - filter
Hierarchy
Filter  - An optional clause that a hierarchy requires to be matched.
 - name string
 - Name of the hierarchy.
 
- levels
Sequence[Hierarchy
Level Args]  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - filter
Hierarchy
Filter Args  - An optional clause that a hierarchy requires to be matched.
 - name str
 - Name of the hierarchy.
 
- levels List<Property Map>
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - 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) -> Hierarchyfunc 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.
 
- Filter
Pulumi.
Sumo Logic. Inputs. Hierarchy Filter  - An optional clause that a hierarchy requires to be matched.
 - Levels
List<Pulumi.
Sumo Logic. Inputs. Hierarchy Level>  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - Name string
 - Name of the hierarchy.
 
- Filter
Hierarchy
Filter Args  - An optional clause that a hierarchy requires to be matched.
 - Levels
[]Hierarchy
Level Args  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - Name string
 - Name of the hierarchy.
 
- filter
Hierarchy
Filter  - An optional clause that a hierarchy requires to be matched.
 - levels
List<Hierarchy
Level>  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - name String
 - Name of the hierarchy.
 
- filter
Hierarchy
Filter  - An optional clause that a hierarchy requires to be matched.
 - levels
Hierarchy
Level[]  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - name string
 - Name of the hierarchy.
 
- filter
Hierarchy
Filter Args  - An optional clause that a hierarchy requires to be matched.
 - levels
Sequence[Hierarchy
Level Args]  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - name str
 - Name of the hierarchy.
 
- filter Property Map
 - An optional clause that a hierarchy requires to be matched.
 - levels List<Property Map>
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 - name String
 - Name of the hierarchy.
 
Supporting Types
HierarchyFilter, HierarchyFilterArgs    
HierarchyLevel, HierarchyLevelArgs    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevel, HierarchyLevelNextLevelArgs        
HierarchyLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelArgs            
HierarchyLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelArgs                
HierarchyLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs                    
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                        
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                            
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                                
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                    
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                  
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                        
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                              
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                  
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs                    
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                          
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                              
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                  
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                              
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionArgs                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelArgs                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                      
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                          
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                              
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                  
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                              
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                          
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                    
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                          
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                              
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionArgs            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelArgs              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs                  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                      
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                          
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                              
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                                  
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                                      
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                              
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                          
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                    
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                          
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                              
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                            
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                        
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition>  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition>  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs                                            
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                        
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                    
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                          
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                              
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                  
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                      
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                          
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                              
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs                                                  
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                      
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                        
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                              
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                          
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                            
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                    
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs                                                        
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs                                                            
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelArgs                                                              
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                        
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                    
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                      
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                          
- Entity
Type string - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- Entity
Type string - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition  
- entity
Type String - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition>  
- entity
Type string - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition[]  
- entity_
type str - next_
level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Level  - next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition]  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs                                                              
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs                                                                  
- Condition string
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- Condition string
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition string
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition str
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level Next Levels With Condition Level  - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
- condition String
 - level Property Map
 - A hierarchy of entities. The order is up-down, left to right levels with condition, then level without condition. Maximum supported total depth is 6.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelArgs                                                                    
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                              
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level Pulumi.Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels List<Pulumi.With Conditions Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- Next
Levels []HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels List<HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition>  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next
Levels HierarchyWith Conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition[]  - 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 HierarchyLevel Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Level  Next level without a condition.
The following attributes are exported:
- next_
levels_ Sequence[Hierarchywith_ conditions Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition]  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Level Property Map Next level without a condition.
The following attributes are exported:
- next
Levels List<Property Map>With Conditions  - Zero or more next levels with conditions.
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs                                                                    
- Entity
Type string - Next
Levels List<string>With Conditions  
- Entity
Type string - Next
Levels []stringWith Conditions  
- entity
Type String - next
Levels List<String>With Conditions  
- entity
Type string - next
Levels string[]With Conditions  
- entity_
type str - next_
levels_ Sequence[str]with_ conditions  
- entity
Type String - next
Levels List<String>With Conditions  
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs                                                                        
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Pulumi.
Sumo Logic. Inputs. Hierarchy Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- Condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - Level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition string
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition str
 - Condition to be checked against for level.entityType value, for now full string match.
 - level
Hierarchy
Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level Next Levels With Condition Level  
- condition String
 - Condition to be checked against for level.entityType value, for now full string match.
 - level Property Map
 
HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs                                                                          
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels List<string>With Conditions  - Zero or more next levels with conditions.
 
- Entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - Next
Levels []stringWith Conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
- entity
Type string - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels string[]With Conditions  - 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_ Sequence[str]with_ conditions  - Zero or more next levels with conditions.
 
- entity
Type String - Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
 - next
Levels List<String>With Conditions  - Zero or more next levels with conditions.
 
Import
Hierarchies can be imported using the id, e.g.:
hcl
$ pulumi import sumologic:index/hierarchy:Hierarchy test id
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
 - Sumo Logic pulumi/pulumi-sumologic
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
sumologicTerraform Provider.