1. Packages
  2. Sumo Logic
  3. API Docs
  4. Hierarchy
Sumo Logic v0.21.0 published on Thursday, Apr 11, 2024 by Pulumi

sumologic.Hierarchy

Explore with Pulumi AI

sumologic logo
Sumo Logic v0.21.0 published on Thursday, Apr 11, 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("exampleHierarchy", {
        filter: {
            key: "_origin",
            value: "kubernetes",
        },
        levels: [{
            entityType: "cluster",
            nextLevel: {
                entityType: "node",
            },
            nextLevelsWithConditions: [{
                condition: "testCondition",
                level: {
                    entityType: "namespace",
                },
            }],
        }],
    });
    
    import pulumi
    import pulumi_sumologic as sumologic
    
    example_hierarchy = sumologic.Hierarchy("exampleHierarchy",
        filter=sumologic.HierarchyFilterArgs(
            key="_origin",
            value="kubernetes",
        ),
        levels=[sumologic.HierarchyLevelArgs(
            entity_type="cluster",
            next_level=sumologic.HierarchyLevelNextLevelArgs(
                entity_type="node",
            ),
            next_levels_with_conditions=[sumologic.HierarchyLevelNextLevelsWithConditionArgs(
                condition="testCondition",
                level=sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs(
                    entity_type="namespace",
                ),
            )],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sumologic.NewHierarchy(ctx, "exampleHierarchy", &sumologic.HierarchyArgs{
    			Filter: &sumologic.HierarchyFilterArgs{
    				Key:   pulumi.String("_origin"),
    				Value: pulumi.String("kubernetes"),
    			},
    			Levels: sumologic.HierarchyLevelArray{
    				&sumologic.HierarchyLevelArgs{
    					EntityType: pulumi.String("cluster"),
    					NextLevel: &sumologic.HierarchyLevelNextLevelArgs{
    						EntityType: pulumi.String("node"),
    					},
    					NextLevelsWithConditions: sumologic.HierarchyLevelNextLevelsWithConditionArray{
    						&sumologic.HierarchyLevelNextLevelsWithConditionArgs{
    							Condition: pulumi.String("testCondition"),
    							Level: &sumologic.HierarchyLevelNextLevelsWithConditionLevelArgs{
    								EntityType: pulumi.String("namespace"),
    							},
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using SumoLogic = Pulumi.SumoLogic;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleHierarchy = new SumoLogic.Hierarchy("exampleHierarchy", new()
        {
            Filter = new SumoLogic.Inputs.HierarchyFilterArgs
            {
                Key = "_origin",
                Value = "kubernetes",
            },
            Levels = new[]
            {
                new SumoLogic.Inputs.HierarchyLevelArgs
                {
                    EntityType = "cluster",
                    NextLevel = new SumoLogic.Inputs.HierarchyLevelNextLevelArgs
                    {
                        EntityType = "node",
                    },
                    NextLevelsWithConditions = new[]
                    {
                        new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionArgs
                        {
                            Condition = "testCondition",
                            Level = new SumoLogic.Inputs.HierarchyLevelNextLevelsWithConditionLevelArgs
                            {
                                EntityType = "namespace",
                            },
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sumologic.Hierarchy;
    import com.pulumi.sumologic.HierarchyArgs;
    import com.pulumi.sumologic.inputs.HierarchyFilterArgs;
    import com.pulumi.sumologic.inputs.HierarchyLevelArgs;
    import com.pulumi.sumologic.inputs.HierarchyLevelNextLevelArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var exampleHierarchy = new Hierarchy("exampleHierarchy", HierarchyArgs.builder()        
                .filter(HierarchyFilterArgs.builder()
                    .key("_origin")
                    .value("kubernetes")
                    .build())
                .levels(HierarchyLevelArgs.builder()
                    .entityType("cluster")
                    .nextLevel(HierarchyLevelNextLevelArgs.builder()
                        .entityType("node")
                        .build())
                    .nextLevelsWithConditions(HierarchyLevelNextLevelsWithConditionArgs.builder()
                        .condition("testCondition")
                        .level(HierarchyLevelNextLevelsWithConditionLevelArgs.builder()
                            .entityType("namespace")
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      exampleHierarchy:
        type: sumologic:Hierarchy
        properties:
          filter:
            key: _origin
            value: kubernetes
          levels:
            - entityType: cluster
              nextLevel:
                entityType: node
              nextLevelsWithConditions:
                - condition: testCondition
                  level:
                    entityType: namespace
    

    Create Hierarchy Resource

    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.

    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>
    Filter Pulumi.SumoLogic.Inputs.HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    Name string
    Name of the hierarchy.
    Levels []HierarchyLevelArgs
    Filter HierarchyFilterArgs
    An optional clause that a hierarchy requires to be matched.
    Name string
    Name of the hierarchy.
    levels List<HierarchyLevel>
    filter HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    name String
    Name of the hierarchy.
    levels HierarchyLevel[]
    filter HierarchyFilter
    An optional clause that a hierarchy requires to be matched.
    name string
    Name of the hierarchy.
    levels Sequence[HierarchyLevelArgs]
    filter HierarchyFilterArgs
    An optional clause that a hierarchy requires to be matched.
    name str
    Name of the hierarchy.
    levels List<Property Map>
    filter Property Map
    An optional clause that a hierarchy requires to be matched.
    name String
    Name of the hierarchy.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Hierarchy Resource

    Get an existing Hierarchy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

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

    Supporting Types

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

    HierarchyFilter, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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

    EntityType 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.HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

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

    HierarchyLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, 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

    EntityType 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.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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

    EntityType 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.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

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

    HierarchyLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevel, 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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithCondition, 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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel, 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

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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
    Condition to be checked against for level.entityType value, for now full string match.
    Level Pulumi.SumoLogic.Inputs.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    Condition string
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    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

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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
    Condition to be checked against for level.entityType value, for now full string match.
    Level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition string
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition str
    Condition to be checked against for level.entityType value, for now full string match.
    level HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevel
    condition String
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithConditionArgs

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

    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
    Condition to be checked against for level.entityType value, for now full string match.
    level Property Map

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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

    entityType 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.

    HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition, HierarchyLevelNextLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithConditionArgs

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

    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

    EntityType string
    Indicates the name and type for all entities 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.

    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

    EntityType 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.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    EntityType 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.HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

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

    Next level without a condition.

    The following attributes are exported:

    nextLevelsWithConditions HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition[]
    Zero or more next levels with conditions.
    entity_type 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 HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel

    Next level without a condition.

    The following attributes are exported:

    next_levels_with_conditions Sequence[HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelsWithCondition]
    Zero or more next levels with conditions.
    entityType 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.

    HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevel, HierarchyLevelNextLevelsWithConditionLevelNextLevelNextLevelNextLevelNextLevelNextLevelNextLevelArgs

    EntityType string
    Indicates the name and type for all entities 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.21.0 published on Thursday, Apr 11, 2024 by Pulumi