1. Packages
  2. Sumo Logic
  3. API Docs
  4. Hierarchy
Sumo Logic v0.23.1 published on Wednesday, Jul 3, 2024 by Pulumi

sumologic.Hierarchy

Explore with Pulumi AI

sumologic logo
Sumo Logic v0.23.1 published on Wednesday, Jul 3, 2024 by Pulumi

    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.SumoLogic.Inputs.HierarchyLevel>
    A 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.SumoLogic.Inputs.HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    Name string
    Name of the hierarchy.
    Levels []HierarchyLevelArgs
    A 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 HierarchyFilterArgs
    An optional clause that a hierarchy requires to be matched.
    Name string
    Name of the hierarchy.
    levels List<HierarchyLevel>
    A 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 HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    name String
    Name of the hierarchy.
    levels HierarchyLevel[]
    A 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 HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    name string
    Name of the hierarchy.
    levels Sequence[HierarchyLevelArgs]
    A 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 HierarchyFilterArgs
    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) -> Hierarchy
    func GetHierarchy(ctx *Context, name string, id IDInput, state *HierarchyState, opts ...ResourceOption) (*Hierarchy, error)
    public static Hierarchy Get(string name, Input<string> id, HierarchyState? state, CustomResourceOptions? opts = null)
    public static Hierarchy get(String name, Output<String> id, HierarchyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Filter Pulumi.SumoLogic.Inputs.HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    Levels List<Pulumi.SumoLogic.Inputs.HierarchyLevel>
    A 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 HierarchyFilterArgs
    An optional clause that a hierarchy requires to be matched.
    Levels []HierarchyLevelArgs
    A 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 HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    levels List<HierarchyLevel>
    A 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 HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    levels HierarchyLevel[]
    A 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 HierarchyFilterArgs
    An optional clause that a hierarchy requires to be matched.
    levels Sequence[HierarchyLevelArgs]
    A 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

    Key string
    Filtering key.
    Value string
    Value required for the filtering key.
    Key string
    Filtering key.
    Value string
    Value required for the filtering key.
    key String
    Filtering key.
    value String
    Value required for the filtering key.
    key string
    Filtering key.
    value string
    Value required for the filtering key.
    key str
    Filtering key.
    value str
    Value required for the filtering key.
    key String
    Filtering key.
    value String
    Value required for the filtering key.

    HierarchyLevel, HierarchyLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevel, HierarchyLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions List<Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    NextLevelsWithConditions []HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition[]
    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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevel Property Map

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

    Condition string
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    A hierarchy 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

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions List<Property Map>
    Zero or more next levels with conditions.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelArgs

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionArgs

    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelArgs

    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions List<string>
    Zero or more next levels with conditions.
    EntityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    NextLevelsWithConditions []string
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.
    entityType string
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions string[]
    Zero or more next levels with conditions.
    entity_type str
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    next_levels_with_conditions Sequence[str]
    Zero or more next levels with conditions.
    entityType String
    Indicates the name and type for all entities at this hierarchy level, e.g. service or pod in case of kubernetes entities.
    nextLevelsWithConditions List<String>
    Zero or more next levels with conditions.

    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 sumologic Terraform Provider.
    sumologic logo
    Sumo Logic v0.23.1 published on Wednesday, Jul 3, 2024 by Pulumi