1. Packages
  2. Avi Provider
  3. API Docs
  4. Techsupport
avi 31.2.1 published on Monday, Dec 22, 2025 by vmware
avi logo
avi 31.2.1 published on Monday, Dec 22, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “Avi:<span pulumi-lang-nodejs=” avi.Techsupport"" pulumi-lang-dotnet=" avi.Techsupport"" pulumi-lang-go=" Techsupport"" pulumi-lang-python=" Techsupport"" pulumi-lang-yaml=" avi.Techsupport"" pulumi-lang-java=" avi.Techsupport""> avi.Techsupport" sidebar_current: “docs-avi-resource-techsupport” description: |- Creates and manages Avi TechSupport.

    # avi.Techsupport The TechSupport resource allows the creation and management of Avi TechSupport

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Techsupport("foo", {
        name: "terraform-example-foo",
        tenantRef: "/api/tenant/?name=admin",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Techsupport("foo",
        name="terraform-example-foo",
        tenant_ref="/api/tenant/?name=admin")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.NewTechsupport(ctx, "foo", &avi.TechsupportArgs{
    			Name:      pulumi.String("terraform-example-foo"),
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = new Avi.Techsupport("foo", new()
        {
            Name = "terraform-example-foo",
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Techsupport;
    import com.pulumi.avi.TechsupportArgs;
    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 foo = new Techsupport("foo", TechsupportArgs.builder()
                .name("terraform-example-foo")
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Techsupport
        properties:
          name: terraform-example-foo
          tenantRef: /api/tenant/?name=admin
    

    Create Techsupport Resource

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

    Constructor syntax

    new Techsupport(name: string, args?: TechsupportArgs, opts?: CustomResourceOptions);
    @overload
    def Techsupport(resource_name: str,
                    args: Optional[TechsupportArgs] = None,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Techsupport(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    case_number: Optional[str] = None,
                    description: Optional[str] = None,
                    duration: Optional[str] = None,
                    end_time: Optional[str] = None,
                    errors: Optional[Sequence[str]] = None,
                    level: Optional[str] = None,
                    name: Optional[str] = None,
                    node: Optional[str] = None,
                    obj_name: Optional[str] = None,
                    obj_uuid: Optional[str] = None,
                    output: Optional[str] = None,
                    params: Optional[Sequence[TechsupportParamArgs]] = None,
                    progress: Optional[str] = None,
                    size: Optional[str] = None,
                    start_time: Optional[str] = None,
                    states: Optional[Sequence[TechsupportStateArgs]] = None,
                    tasks: Optional[Sequence[TechsupportTaskArgs]] = None,
                    tasks_completed: Optional[str] = None,
                    techsupport_id: Optional[str] = None,
                    techsupport_readinesses: Optional[Sequence[TechsupportTechsupportReadinessArgs]] = None,
                    tenant_ref: Optional[str] = None,
                    total_tasks: Optional[str] = None,
                    uuid: Optional[str] = None,
                    warnings: Optional[Sequence[str]] = None)
    func NewTechsupport(ctx *Context, name string, args *TechsupportArgs, opts ...ResourceOption) (*Techsupport, error)
    public Techsupport(string name, TechsupportArgs? args = null, CustomResourceOptions? opts = null)
    public Techsupport(String name, TechsupportArgs args)
    public Techsupport(String name, TechsupportArgs args, CustomResourceOptions options)
    
    type: avi:Techsupport
    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 TechsupportArgs
    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 TechsupportArgs
    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 TechsupportArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TechsupportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TechsupportArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var techsupportResource = new Avi.Techsupport("techsupportResource", new()
    {
        CaseNumber = "string",
        Description = "string",
        Duration = "string",
        EndTime = "string",
        Errors = new[]
        {
            "string",
        },
        Level = "string",
        Name = "string",
        Node = "string",
        ObjName = "string",
        ObjUuid = "string",
        Output = "string",
        Params = new[]
        {
            new Avi.Inputs.TechsupportParamArgs
            {
                CaseNumber = "string",
                Description = "string",
                Duration = "string",
                EventParams = new[]
                {
                    new Avi.Inputs.TechsupportParamEventParamArgs
                    {
                        CollectAllEvents = "string",
                        Days = "string",
                        Files = "string",
                    },
                },
                Level = "string",
                Name = "string",
                Pattern = "string",
                SkipWarnings = "string",
                Slug = "string",
                StartTimestamp = "string",
                Tenant = "string",
                Uuid = "string",
            },
        },
        Progress = "string",
        Size = "string",
        StartTime = "string",
        States = new[]
        {
            new Avi.Inputs.TechsupportStateArgs
            {
                LastChangedTimes = new[]
                {
                    new Avi.Inputs.TechsupportStateLastChangedTimeArgs
                    {
                        Secs = "string",
                        Usecs = "string",
                    },
                },
                Reason = "string",
                State = "string",
            },
        },
        Tasks = new[]
        {
            new Avi.Inputs.TechsupportTaskArgs
            {
                Description = "string",
                Details = new[]
                {
                    "string",
                },
                Duration = "string",
                EndTime = "string",
                StartTime = "string",
                Status = "string",
                SubEvents = new[]
                {
                    new Avi.Inputs.TechsupportTaskSubEventArgs
                    {
                        Duration = "string",
                        EndTime = "string",
                        Ips = new[]
                        {
                            new Avi.Inputs.TechsupportTaskSubEventIpArgs
                            {
                                Addr = "string",
                                Type = "string",
                            },
                        },
                        Message = "string",
                        StartTime = "string",
                        Status = "string",
                        SubTasks = new[]
                        {
                            "string",
                        },
                    },
                },
                TaskName = "string",
            },
        },
        TasksCompleted = "string",
        TechsupportId = "string",
        TechsupportReadinesses = new[]
        {
            new Avi.Inputs.TechsupportTechsupportReadinessArgs
            {
                Checks = new[]
                {
                    new Avi.Inputs.TechsupportTechsupportReadinessCheckArgs
                    {
                        CheckCode = "string",
                        Description = "string",
                        Details = new[]
                        {
                            "string",
                        },
                        Duration = "string",
                        EndTime = "string",
                        ErrorDetails = new[]
                        {
                            "string",
                        },
                        StartTime = "string",
                        State = "string",
                    },
                },
                ChecksCompleted = "string",
                Duration = "string",
                EndTime = "string",
                Progress = "string",
                StartTime = "string",
                States = new[]
                {
                    new Avi.Inputs.TechsupportTechsupportReadinessStateArgs
                    {
                        LastChangedTimes = new[]
                        {
                            new Avi.Inputs.TechsupportTechsupportReadinessStateLastChangedTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                        Reason = "string",
                        State = "string",
                    },
                },
                TotalChecks = "string",
            },
        },
        TenantRef = "string",
        TotalTasks = "string",
        Uuid = "string",
        Warnings = new[]
        {
            "string",
        },
    });
    
    example, err := avi.NewTechsupport(ctx, "techsupportResource", &avi.TechsupportArgs{
    	CaseNumber:  pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Duration:    pulumi.String("string"),
    	EndTime:     pulumi.String("string"),
    	Errors: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Level:   pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Node:    pulumi.String("string"),
    	ObjName: pulumi.String("string"),
    	ObjUuid: pulumi.String("string"),
    	Output:  pulumi.String("string"),
    	Params: avi.TechsupportParamArray{
    		&avi.TechsupportParamArgs{
    			CaseNumber:  pulumi.String("string"),
    			Description: pulumi.String("string"),
    			Duration:    pulumi.String("string"),
    			EventParams: avi.TechsupportParamEventParamArray{
    				&avi.TechsupportParamEventParamArgs{
    					CollectAllEvents: pulumi.String("string"),
    					Days:             pulumi.String("string"),
    					Files:            pulumi.String("string"),
    				},
    			},
    			Level:          pulumi.String("string"),
    			Name:           pulumi.String("string"),
    			Pattern:        pulumi.String("string"),
    			SkipWarnings:   pulumi.String("string"),
    			Slug:           pulumi.String("string"),
    			StartTimestamp: pulumi.String("string"),
    			Tenant:         pulumi.String("string"),
    			Uuid:           pulumi.String("string"),
    		},
    	},
    	Progress:  pulumi.String("string"),
    	Size:      pulumi.String("string"),
    	StartTime: pulumi.String("string"),
    	States: avi.TechsupportStateTypeArray{
    		&avi.TechsupportStateTypeArgs{
    			LastChangedTimes: avi.TechsupportStateLastChangedTimeArray{
    				&avi.TechsupportStateLastChangedTimeArgs{
    					Secs:  pulumi.String("string"),
    					Usecs: pulumi.String("string"),
    				},
    			},
    			Reason: pulumi.String("string"),
    			State:  pulumi.String("string"),
    		},
    	},
    	Tasks: avi.TechsupportTaskArray{
    		&avi.TechsupportTaskArgs{
    			Description: pulumi.String("string"),
    			Details: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Duration:  pulumi.String("string"),
    			EndTime:   pulumi.String("string"),
    			StartTime: pulumi.String("string"),
    			Status:    pulumi.String("string"),
    			SubEvents: avi.TechsupportTaskSubEventArray{
    				&avi.TechsupportTaskSubEventArgs{
    					Duration: pulumi.String("string"),
    					EndTime:  pulumi.String("string"),
    					Ips: avi.TechsupportTaskSubEventIpArray{
    						&avi.TechsupportTaskSubEventIpArgs{
    							Addr: pulumi.String("string"),
    							Type: pulumi.String("string"),
    						},
    					},
    					Message:   pulumi.String("string"),
    					StartTime: pulumi.String("string"),
    					Status:    pulumi.String("string"),
    					SubTasks: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			TaskName: pulumi.String("string"),
    		},
    	},
    	TasksCompleted: pulumi.String("string"),
    	TechsupportId:  pulumi.String("string"),
    	TechsupportReadinesses: avi.TechsupportTechsupportReadinessArray{
    		&avi.TechsupportTechsupportReadinessArgs{
    			Checks: avi.TechsupportTechsupportReadinessCheckArray{
    				&avi.TechsupportTechsupportReadinessCheckArgs{
    					CheckCode:   pulumi.String("string"),
    					Description: pulumi.String("string"),
    					Details: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Duration: pulumi.String("string"),
    					EndTime:  pulumi.String("string"),
    					ErrorDetails: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					StartTime: pulumi.String("string"),
    					State:     pulumi.String("string"),
    				},
    			},
    			ChecksCompleted: pulumi.String("string"),
    			Duration:        pulumi.String("string"),
    			EndTime:         pulumi.String("string"),
    			Progress:        pulumi.String("string"),
    			StartTime:       pulumi.String("string"),
    			States: avi.TechsupportTechsupportReadinessStateArray{
    				&avi.TechsupportTechsupportReadinessStateArgs{
    					LastChangedTimes: avi.TechsupportTechsupportReadinessStateLastChangedTimeArray{
    						&avi.TechsupportTechsupportReadinessStateLastChangedTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    					Reason: pulumi.String("string"),
    					State:  pulumi.String("string"),
    				},
    			},
    			TotalChecks: pulumi.String("string"),
    		},
    	},
    	TenantRef:  pulumi.String("string"),
    	TotalTasks: pulumi.String("string"),
    	Uuid:       pulumi.String("string"),
    	Warnings: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var techsupportResource = new Techsupport("techsupportResource", TechsupportArgs.builder()
        .caseNumber("string")
        .description("string")
        .duration("string")
        .endTime("string")
        .errors("string")
        .level("string")
        .name("string")
        .node("string")
        .objName("string")
        .objUuid("string")
        .output("string")
        .params(TechsupportParamArgs.builder()
            .caseNumber("string")
            .description("string")
            .duration("string")
            .eventParams(TechsupportParamEventParamArgs.builder()
                .collectAllEvents("string")
                .days("string")
                .files("string")
                .build())
            .level("string")
            .name("string")
            .pattern("string")
            .skipWarnings("string")
            .slug("string")
            .startTimestamp("string")
            .tenant("string")
            .uuid("string")
            .build())
        .progress("string")
        .size("string")
        .startTime("string")
        .states(TechsupportStateArgs.builder()
            .lastChangedTimes(TechsupportStateLastChangedTimeArgs.builder()
                .secs("string")
                .usecs("string")
                .build())
            .reason("string")
            .state("string")
            .build())
        .tasks(TechsupportTaskArgs.builder()
            .description("string")
            .details("string")
            .duration("string")
            .endTime("string")
            .startTime("string")
            .status("string")
            .subEvents(TechsupportTaskSubEventArgs.builder()
                .duration("string")
                .endTime("string")
                .ips(TechsupportTaskSubEventIpArgs.builder()
                    .addr("string")
                    .type("string")
                    .build())
                .message("string")
                .startTime("string")
                .status("string")
                .subTasks("string")
                .build())
            .taskName("string")
            .build())
        .tasksCompleted("string")
        .techsupportId("string")
        .techsupportReadinesses(TechsupportTechsupportReadinessArgs.builder()
            .checks(TechsupportTechsupportReadinessCheckArgs.builder()
                .checkCode("string")
                .description("string")
                .details("string")
                .duration("string")
                .endTime("string")
                .errorDetails("string")
                .startTime("string")
                .state("string")
                .build())
            .checksCompleted("string")
            .duration("string")
            .endTime("string")
            .progress("string")
            .startTime("string")
            .states(TechsupportTechsupportReadinessStateArgs.builder()
                .lastChangedTimes(TechsupportTechsupportReadinessStateLastChangedTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .reason("string")
                .state("string")
                .build())
            .totalChecks("string")
            .build())
        .tenantRef("string")
        .totalTasks("string")
        .uuid("string")
        .warnings("string")
        .build());
    
    techsupport_resource = avi.Techsupport("techsupportResource",
        case_number="string",
        description="string",
        duration="string",
        end_time="string",
        errors=["string"],
        level="string",
        name="string",
        node="string",
        obj_name="string",
        obj_uuid="string",
        output="string",
        params=[{
            "case_number": "string",
            "description": "string",
            "duration": "string",
            "event_params": [{
                "collect_all_events": "string",
                "days": "string",
                "files": "string",
            }],
            "level": "string",
            "name": "string",
            "pattern": "string",
            "skip_warnings": "string",
            "slug": "string",
            "start_timestamp": "string",
            "tenant": "string",
            "uuid": "string",
        }],
        progress="string",
        size="string",
        start_time="string",
        states=[{
            "last_changed_times": [{
                "secs": "string",
                "usecs": "string",
            }],
            "reason": "string",
            "state": "string",
        }],
        tasks=[{
            "description": "string",
            "details": ["string"],
            "duration": "string",
            "end_time": "string",
            "start_time": "string",
            "status": "string",
            "sub_events": [{
                "duration": "string",
                "end_time": "string",
                "ips": [{
                    "addr": "string",
                    "type": "string",
                }],
                "message": "string",
                "start_time": "string",
                "status": "string",
                "sub_tasks": ["string"],
            }],
            "task_name": "string",
        }],
        tasks_completed="string",
        techsupport_id="string",
        techsupport_readinesses=[{
            "checks": [{
                "check_code": "string",
                "description": "string",
                "details": ["string"],
                "duration": "string",
                "end_time": "string",
                "error_details": ["string"],
                "start_time": "string",
                "state": "string",
            }],
            "checks_completed": "string",
            "duration": "string",
            "end_time": "string",
            "progress": "string",
            "start_time": "string",
            "states": [{
                "last_changed_times": [{
                    "secs": "string",
                    "usecs": "string",
                }],
                "reason": "string",
                "state": "string",
            }],
            "total_checks": "string",
        }],
        tenant_ref="string",
        total_tasks="string",
        uuid="string",
        warnings=["string"])
    
    const techsupportResource = new avi.Techsupport("techsupportResource", {
        caseNumber: "string",
        description: "string",
        duration: "string",
        endTime: "string",
        errors: ["string"],
        level: "string",
        name: "string",
        node: "string",
        objName: "string",
        objUuid: "string",
        output: "string",
        params: [{
            caseNumber: "string",
            description: "string",
            duration: "string",
            eventParams: [{
                collectAllEvents: "string",
                days: "string",
                files: "string",
            }],
            level: "string",
            name: "string",
            pattern: "string",
            skipWarnings: "string",
            slug: "string",
            startTimestamp: "string",
            tenant: "string",
            uuid: "string",
        }],
        progress: "string",
        size: "string",
        startTime: "string",
        states: [{
            lastChangedTimes: [{
                secs: "string",
                usecs: "string",
            }],
            reason: "string",
            state: "string",
        }],
        tasks: [{
            description: "string",
            details: ["string"],
            duration: "string",
            endTime: "string",
            startTime: "string",
            status: "string",
            subEvents: [{
                duration: "string",
                endTime: "string",
                ips: [{
                    addr: "string",
                    type: "string",
                }],
                message: "string",
                startTime: "string",
                status: "string",
                subTasks: ["string"],
            }],
            taskName: "string",
        }],
        tasksCompleted: "string",
        techsupportId: "string",
        techsupportReadinesses: [{
            checks: [{
                checkCode: "string",
                description: "string",
                details: ["string"],
                duration: "string",
                endTime: "string",
                errorDetails: ["string"],
                startTime: "string",
                state: "string",
            }],
            checksCompleted: "string",
            duration: "string",
            endTime: "string",
            progress: "string",
            startTime: "string",
            states: [{
                lastChangedTimes: [{
                    secs: "string",
                    usecs: "string",
                }],
                reason: "string",
                state: "string",
            }],
            totalChecks: "string",
        }],
        tenantRef: "string",
        totalTasks: "string",
        uuid: "string",
        warnings: ["string"],
    });
    
    type: avi:Techsupport
    properties:
        caseNumber: string
        description: string
        duration: string
        endTime: string
        errors:
            - string
        level: string
        name: string
        node: string
        objName: string
        objUuid: string
        output: string
        params:
            - caseNumber: string
              description: string
              duration: string
              eventParams:
                - collectAllEvents: string
                  days: string
                  files: string
              level: string
              name: string
              pattern: string
              skipWarnings: string
              slug: string
              startTimestamp: string
              tenant: string
              uuid: string
        progress: string
        size: string
        startTime: string
        states:
            - lastChangedTimes:
                - secs: string
                  usecs: string
              reason: string
              state: string
        tasks:
            - description: string
              details:
                - string
              duration: string
              endTime: string
              startTime: string
              status: string
              subEvents:
                - duration: string
                  endTime: string
                  ips:
                    - addr: string
                      type: string
                  message: string
                  startTime: string
                  status: string
                  subTasks:
                    - string
              taskName: string
        tasksCompleted: string
        techsupportId: string
        techsupportReadinesses:
            - checks:
                - checkCode: string
                  description: string
                  details:
                    - string
                  duration: string
                  endTime: string
                  errorDetails:
                    - string
                  startTime: string
                  state: string
              checksCompleted: string
              duration: string
              endTime: string
              progress: string
              startTime: string
              states:
                - lastChangedTimes:
                    - secs: string
                      usecs: string
                  reason: string
                  state: string
              totalChecks: string
        tenantRef: string
        totalTasks: string
        uuid: string
        warnings:
            - string
    

    Techsupport Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Techsupport resource accepts the following input properties:

    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Errors List<string>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Params List<TechsupportParam>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    Size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<TechsupportState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks List<TechsupportTask>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TechsupportId string
    TechsupportReadinesses List<TechsupportTechsupportReadiness>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Warnings List<string>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Errors []string
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Params []TechsupportParamArgs
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    Size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []TechsupportStateTypeArgs
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks []TechsupportTaskArgs
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TechsupportId string
    TechsupportReadinesses []TechsupportTechsupportReadinessArgs
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Warnings []string
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors List<String>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node String
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName String
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output String
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params List<TechsupportParam>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size String
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<TechsupportState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<TechsupportTask>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId String
    techsupportReadinesses List<TechsupportTechsupportReadiness>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks String
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings List<String>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors string[]
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params TechsupportParam[]
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states TechsupportState[]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks TechsupportTask[]
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId string
    techsupportReadinesses TechsupportTechsupportReadiness[]
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings string[]
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    case_number str
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description str
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors Sequence[str]
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level str
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node str
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_name str
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_uuid str
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output str
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params Sequence[TechsupportParamArgs]
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size str
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[TechsupportStateArgs]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks Sequence[TechsupportTaskArgs]
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks_completed str
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupport_id str
    techsupport_readinesses Sequence[TechsupportTechsupportReadinessArgs]
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    total_tasks str
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings Sequence[str]
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors List<String>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node String
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName String
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output String
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params List<Property Map>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size String
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<Property Map>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId String
    techsupportReadinesses List<Property Map>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks String
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings List<String>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Techsupport 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 Techsupport Resource

    Get an existing Techsupport 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?: TechsupportState, opts?: CustomResourceOptions): Techsupport
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            case_number: Optional[str] = None,
            description: Optional[str] = None,
            duration: Optional[str] = None,
            end_time: Optional[str] = None,
            errors: Optional[Sequence[str]] = None,
            level: Optional[str] = None,
            name: Optional[str] = None,
            node: Optional[str] = None,
            obj_name: Optional[str] = None,
            obj_uuid: Optional[str] = None,
            output: Optional[str] = None,
            params: Optional[Sequence[TechsupportParamArgs]] = None,
            progress: Optional[str] = None,
            size: Optional[str] = None,
            start_time: Optional[str] = None,
            states: Optional[Sequence[TechsupportStateArgs]] = None,
            tasks: Optional[Sequence[TechsupportTaskArgs]] = None,
            tasks_completed: Optional[str] = None,
            techsupport_id: Optional[str] = None,
            techsupport_readinesses: Optional[Sequence[TechsupportTechsupportReadinessArgs]] = None,
            tenant_ref: Optional[str] = None,
            total_tasks: Optional[str] = None,
            uuid: Optional[str] = None,
            warnings: Optional[Sequence[str]] = None) -> Techsupport
    func GetTechsupport(ctx *Context, name string, id IDInput, state *TechsupportState, opts ...ResourceOption) (*Techsupport, error)
    public static Techsupport Get(string name, Input<string> id, TechsupportState? state, CustomResourceOptions? opts = null)
    public static Techsupport get(String name, Output<String> id, TechsupportState state, CustomResourceOptions options)
    resources:  _:    type: avi:Techsupport    get:      id: ${id}
    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:
    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Errors List<string>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Params List<TechsupportParam>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    Size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<TechsupportState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks List<TechsupportTask>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TechsupportId string
    TechsupportReadinesses List<TechsupportTechsupportReadiness>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Warnings List<string>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Errors []string
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Params []TechsupportParamArgs
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    Size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []TechsupportStateTypeArgs
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks []TechsupportTaskArgs
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TechsupportId string
    TechsupportReadinesses []TechsupportTechsupportReadinessArgs
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Warnings []string
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors List<String>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node String
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName String
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output String
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params List<TechsupportParam>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size String
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<TechsupportState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<TechsupportTask>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId String
    techsupportReadinesses List<TechsupportTechsupportReadiness>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks String
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings List<String>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors string[]
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node string
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName string
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid string
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output string
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params TechsupportParam[]
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size string
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states TechsupportState[]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks TechsupportTask[]
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted string
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId string
    techsupportReadinesses TechsupportTechsupportReadiness[]
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks string
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings string[]
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    case_number str
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description str
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors Sequence[str]
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level str
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node str
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_name str
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_uuid str
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output str
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params Sequence[TechsupportParamArgs]
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size str
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[TechsupportStateArgs]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks Sequence[TechsupportTaskArgs]
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks_completed str
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupport_id str
    techsupport_readinesses Sequence[TechsupportTechsupportReadinessArgs]
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    total_tasks str
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings Sequence[str]
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errors List<String>
    Error logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    node String
    Cluster member node on which the techsupport tarball bundle is saved. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objName String
    Object name if one exists. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Techsupport collection object uuid specified for different objects such as se/vs/pool etc. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    output String
    Techsupport collection output file path. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    params List<Property Map>
    Techsupport params associated with latest techsupport collection. User passed params will have more preference. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    size String
    Size of collected techsupport tarball. Field introduced in 31.2.1. Unit is mb. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<Property Map>
    Events performed for techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    Completed set of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    techsupportId String
    techsupportReadinesses List<Property Map>
    Techsupport readiness checks execution details. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid associated with the techsupport. It is a reference to an object of type tenant. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalTasks String
    Total number of tasks in the techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    warnings List<String>
    Warning logged during techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    TechsupportParam, TechsupportParamArgs

    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EventParams List<TechsupportParamEventParam>
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Pattern string
    SkipWarnings string
    Slug string
    StartTimestamp string
    Tenant string
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CaseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EventParams []TechsupportParamEventParam
    Level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Pattern string
    SkipWarnings string
    Slug string
    StartTimestamp string
    Tenant string
    Uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventParams List<TechsupportParamEventParam>
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pattern String
    skipWarnings String
    slug String
    startTimestamp String
    tenant String
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber string
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventParams TechsupportParamEventParam[]
    level string
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pattern string
    skipWarnings string
    slug string
    startTimestamp string
    tenant string
    uuid string
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    case_number str
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description str
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    event_params Sequence[TechsupportParamEventParam]
    level str
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pattern str
    skip_warnings str
    slug str
    start_timestamp str
    tenant str
    uuid str
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    caseNumber String
    'customer case number for which this techsupport is generated. ''useful for connected portal and other use-cases.'. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventParams List<Property Map>
    level String
    Name of the techsupport level. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pattern String
    skipWarnings String
    slug String
    startTimestamp String
    tenant String
    uuid String
    Uuid identifier for the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    TechsupportParamEventParam, TechsupportParamEventParamArgs

    CollectAllEvents string
    Days string
    Files string
    CollectAllEvents string
    Days string
    Files string
    collectAllEvents String
    days String
    files String
    collectAllEvents string
    days string
    files string
    collectAllEvents String
    days String
    files String

    TechsupportState, TechsupportStateArgs

    LastChangedTimes List<TechsupportStateLastChangedTime>
    Reason string
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    LastChangedTimes []TechsupportStateLastChangedTime
    Reason string
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<TechsupportStateLastChangedTime>
    reason String
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes TechsupportStateLastChangedTime[]
    reason string
    state string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    last_changed_times Sequence[TechsupportStateLastChangedTime]
    reason str
    state str
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<Property Map>
    reason String
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    TechsupportStateLastChangedTime, TechsupportStateLastChangedTimeArgs

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    TechsupportTask, TechsupportTaskArgs

    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Details List<string>
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubEvents List<TechsupportTaskSubEvent>
    TaskName string
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Details []string
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubEvents []TechsupportTaskSubEvent
    TaskName string
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details List<String>
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subEvents List<TechsupportTaskSubEvent>
    taskName String
    description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details string[]
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status string
    subEvents TechsupportTaskSubEvent[]
    taskName string
    description str
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details Sequence[str]
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status str
    sub_events Sequence[TechsupportTaskSubEvent]
    task_name str
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details List<String>
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subEvents List<Property Map>
    taskName String

    TechsupportTaskSubEvent, TechsupportTaskSubEventArgs

    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips List<TechsupportTaskSubEventIp>
    Message string
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks List<string>
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips []TechsupportTaskSubEventIp
    Message string
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks []string
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips List<TechsupportTaskSubEventIp>
    message String
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips TechsupportTaskSubEventIp[]
    message string
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status string
    subTasks string[]
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips Sequence[TechsupportTaskSubEventIp]
    message str
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status str
    sub_tasks Sequence[str]
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips List<Property Map>
    message String
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>

    TechsupportTaskSubEventIp, TechsupportTaskSubEventIpArgs

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type String

    TechsupportTechsupportReadiness, TechsupportTechsupportReadinessArgs

    Checks List<TechsupportTechsupportReadinessCheck>
    ChecksCompleted string
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<TechsupportTechsupportReadinessState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalChecks string
    Checks []TechsupportTechsupportReadinessCheck
    ChecksCompleted string
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []TechsupportTechsupportReadinessState
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalChecks string
    checks List<TechsupportTechsupportReadinessCheck>
    checksCompleted String
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<TechsupportTechsupportReadinessState>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks String
    checks TechsupportTechsupportReadinessCheck[]
    checksCompleted string
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states TechsupportTechsupportReadinessState[]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks string
    checks Sequence[TechsupportTechsupportReadinessCheck]
    checks_completed str
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[TechsupportTechsupportReadinessState]
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    total_checks str
    checks List<Property Map>
    checksCompleted String
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Techsupport collection progress which holds value between 0-100. Allowed values are 0-100. Field introduced in 31.2.1. Unit is percent. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks String

    TechsupportTechsupportReadinessCheck, TechsupportTechsupportReadinessCheckArgs

    CheckCode string
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Details List<string>
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ErrorDetails List<string>
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CheckCode string
    Description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Details []string
    Duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ErrorDetails []string
    StartTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode String
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details List<String>
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails List<String>
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode string
    description string
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details string[]
    duration string
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails string[]
    startTime string
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    check_code str
    description str
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details Sequence[str]
    duration str
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    error_details Sequence[str]
    start_time str
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state str
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode String
    description String
    User provided description to capture additional details and context regarding the techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    details List<String>
    duration String
    Total time taken for techsupport collection. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails List<String>
    startTime String
    Start timestamp of techsupport collection. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    TechsupportTechsupportReadinessState, TechsupportTechsupportReadinessStateArgs

    LastChangedTimes List<TechsupportTechsupportReadinessStateLastChangedTime>
    Reason string
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    LastChangedTimes []TechsupportTechsupportReadinessStateLastChangedTime
    Reason string
    State string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<TechsupportTechsupportReadinessStateLastChangedTime>
    reason String
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes TechsupportTechsupportReadinessStateLastChangedTime[]
    reason string
    state string
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    last_changed_times Sequence[TechsupportTechsupportReadinessStateLastChangedTime]
    reason str
    state str
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<Property Map>
    reason String
    state String
    State of current/last techsupport invocation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    TechsupportTechsupportReadinessStateLastChangedTime, TechsupportTechsupportReadinessStateLastChangedTimeArgs

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.2.1 published on Monday, Dec 22, 2025 by vmware
      Meet Neo: Your AI Platform Teammate