1. Packages
  2. Avi Provider
  3. API Docs
  4. Report
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.Report"" pulumi-lang-dotnet=" avi.Report"" pulumi-lang-go=" Report"" pulumi-lang-python=" Report"" pulumi-lang-yaml=" avi.Report"" pulumi-lang-java=" avi.Report""> avi.Report" sidebar_current: “docs-avi-resource-report” description: |- Creates and manages Avi Report.

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Report("foo", {
        name: "terraform-example-foo",
        tenantRef: "/api/tenant/?name=admin",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Report("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.NewReport(ctx, "foo", &avi.ReportArgs{
    			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.Report("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.Report;
    import com.pulumi.avi.ReportArgs;
    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 Report("foo", ReportArgs.builder()
                .name("terraform-example-foo")
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Report
        properties:
          name: terraform-example-foo
          tenantRef: /api/tenant/?name=admin
    

    Create Report Resource

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

    Constructor syntax

    new Report(name: string, args?: ReportArgs, opts?: CustomResourceOptions);
    @overload
    def Report(resource_name: str,
               args: Optional[ReportArgs] = None,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Report(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               duration: Optional[str] = None,
               end_time: Optional[str] = None,
               filename: Optional[str] = None,
               name: Optional[str] = None,
               node: Optional[str] = None,
               pre_checks: Optional[Sequence[ReportPreCheckArgs]] = None,
               progress: Optional[str] = None,
               report_id: Optional[str] = None,
               requests: Optional[Sequence[ReportRequestArgs]] = None,
               start_time: Optional[str] = None,
               states: Optional[Sequence[ReportStateArgs]] = None,
               tasks: Optional[Sequence[ReportTaskArgs]] = None,
               tasks_completed: Optional[str] = None,
               tenant_ref: Optional[str] = None,
               total_tasks: Optional[str] = None,
               uuid: Optional[str] = None)
    func NewReport(ctx *Context, name string, args *ReportArgs, opts ...ResourceOption) (*Report, error)
    public Report(string name, ReportArgs? args = null, CustomResourceOptions? opts = null)
    public Report(String name, ReportArgs args)
    public Report(String name, ReportArgs args, CustomResourceOptions options)
    
    type: avi:Report
    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 ReportArgs
    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 ReportArgs
    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 ReportArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReportArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReportArgs
    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 reportResource = new Avi.Report("reportResource", new()
    {
        Duration = "string",
        EndTime = "string",
        Filename = "string",
        Name = "string",
        Node = "string",
        PreChecks = new[]
        {
            new Avi.Inputs.ReportPreCheckArgs
            {
                Checks = new[]
                {
                    new Avi.Inputs.ReportPreCheckCheckArgs
                    {
                        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.ReportPreCheckStateArgs
                    {
                        LastChangedTimes = new[]
                        {
                            new Avi.Inputs.ReportPreCheckStateLastChangedTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                        Reason = "string",
                        State = "string",
                    },
                },
                TotalChecks = "string",
            },
        },
        Progress = "string",
        ReportId = "string",
        Requests = new[]
        {
            new Avi.Inputs.ReportRequestArgs
            {
                Report = "string",
                Durations = new[]
                {
                    new Avi.Inputs.ReportRequestDurationArgs
                    {
                        EndTimes = new[]
                        {
                            new Avi.Inputs.ReportRequestDurationEndTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                        Period = "string",
                        StartTimes = new[]
                        {
                            new Avi.Inputs.ReportRequestDurationStartTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                    },
                },
                Name = "string",
                Parameters = new[]
                {
                    new Avi.Inputs.ReportRequestParameterArgs
                    {
                        Name = "string",
                        Value = "string",
                    },
                },
                Sections = new[]
                {
                    new Avi.Inputs.ReportRequestSectionArgs
                    {
                        Id = "string",
                        SubSections = new[]
                        {
                            new Avi.Inputs.ReportRequestSectionSubSectionArgs
                            {
                                Id = "string",
                            },
                        },
                    },
                },
            },
        },
        StartTime = "string",
        States = new[]
        {
            new Avi.Inputs.ReportStateArgs
            {
                LastChangedTimes = new[]
                {
                    new Avi.Inputs.ReportStateLastChangedTimeArgs
                    {
                        Secs = "string",
                        Usecs = "string",
                    },
                },
                Reason = "string",
                State = "string",
            },
        },
        Tasks = new[]
        {
            new Avi.Inputs.ReportTaskArgs
            {
                NodesEvents = new[]
                {
                    new Avi.Inputs.ReportTaskNodesEventArgs
                    {
                        Duration = "string",
                        EndTime = "string",
                        Ips = new[]
                        {
                            new Avi.Inputs.ReportTaskNodesEventIpArgs
                            {
                                Addr = "string",
                                Type = "string",
                            },
                        },
                        Message = "string",
                        StartTime = "string",
                        Status = "string",
                        SubTasks = new[]
                        {
                            "string",
                        },
                    },
                },
                SubEvents = new[]
                {
                    new Avi.Inputs.ReportTaskSubEventArgs
                    {
                        Duration = "string",
                        EndTime = "string",
                        Ips = new[]
                        {
                            new Avi.Inputs.ReportTaskSubEventIpArgs
                            {
                                Addr = "string",
                                Type = "string",
                            },
                        },
                        Message = "string",
                        StartTime = "string",
                        Status = "string",
                        SubTasks = new[]
                        {
                            "string",
                        },
                    },
                },
                TaskName = "string",
            },
        },
        TasksCompleted = "string",
        TenantRef = "string",
        TotalTasks = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewReport(ctx, "reportResource", &avi.ReportArgs{
    	Duration: pulumi.String("string"),
    	EndTime:  pulumi.String("string"),
    	Filename: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Node:     pulumi.String("string"),
    	PreChecks: avi.ReportPreCheckArray{
    		&avi.ReportPreCheckArgs{
    			Checks: avi.ReportPreCheckCheckArray{
    				&avi.ReportPreCheckCheckArgs{
    					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.ReportPreCheckStateArray{
    				&avi.ReportPreCheckStateArgs{
    					LastChangedTimes: avi.ReportPreCheckStateLastChangedTimeArray{
    						&avi.ReportPreCheckStateLastChangedTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    					Reason: pulumi.String("string"),
    					State:  pulumi.String("string"),
    				},
    			},
    			TotalChecks: pulumi.String("string"),
    		},
    	},
    	Progress: pulumi.String("string"),
    	ReportId: pulumi.String("string"),
    	Requests: avi.ReportRequestArray{
    		&avi.ReportRequestArgs{
    			Report: pulumi.String("string"),
    			Durations: avi.ReportRequestDurationArray{
    				&avi.ReportRequestDurationArgs{
    					EndTimes: avi.ReportRequestDurationEndTimeArray{
    						&avi.ReportRequestDurationEndTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    					Period: pulumi.String("string"),
    					StartTimes: avi.ReportRequestDurationStartTimeArray{
    						&avi.ReportRequestDurationStartTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    				},
    			},
    			Name: pulumi.String("string"),
    			Parameters: avi.ReportRequestParameterArray{
    				&avi.ReportRequestParameterArgs{
    					Name:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    			Sections: avi.ReportRequestSectionArray{
    				&avi.ReportRequestSectionArgs{
    					Id: pulumi.String("string"),
    					SubSections: avi.ReportRequestSectionSubSectionArray{
    						&avi.ReportRequestSectionSubSectionArgs{
    							Id: pulumi.String("string"),
    						},
    					},
    				},
    			},
    		},
    	},
    	StartTime: pulumi.String("string"),
    	States: avi.ReportStateTypeArray{
    		&avi.ReportStateTypeArgs{
    			LastChangedTimes: avi.ReportStateLastChangedTimeArray{
    				&avi.ReportStateLastChangedTimeArgs{
    					Secs:  pulumi.String("string"),
    					Usecs: pulumi.String("string"),
    				},
    			},
    			Reason: pulumi.String("string"),
    			State:  pulumi.String("string"),
    		},
    	},
    	Tasks: avi.ReportTaskArray{
    		&avi.ReportTaskArgs{
    			NodesEvents: avi.ReportTaskNodesEventArray{
    				&avi.ReportTaskNodesEventArgs{
    					Duration: pulumi.String("string"),
    					EndTime:  pulumi.String("string"),
    					Ips: avi.ReportTaskNodesEventIpArray{
    						&avi.ReportTaskNodesEventIpArgs{
    							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"),
    					},
    				},
    			},
    			SubEvents: avi.ReportTaskSubEventArray{
    				&avi.ReportTaskSubEventArgs{
    					Duration: pulumi.String("string"),
    					EndTime:  pulumi.String("string"),
    					Ips: avi.ReportTaskSubEventIpArray{
    						&avi.ReportTaskSubEventIpArgs{
    							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"),
    	TenantRef:      pulumi.String("string"),
    	TotalTasks:     pulumi.String("string"),
    	Uuid:           pulumi.String("string"),
    })
    
    var reportResource = new Report("reportResource", ReportArgs.builder()
        .duration("string")
        .endTime("string")
        .filename("string")
        .name("string")
        .node("string")
        .preChecks(ReportPreCheckArgs.builder()
            .checks(ReportPreCheckCheckArgs.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(ReportPreCheckStateArgs.builder()
                .lastChangedTimes(ReportPreCheckStateLastChangedTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .reason("string")
                .state("string")
                .build())
            .totalChecks("string")
            .build())
        .progress("string")
        .reportId("string")
        .requests(ReportRequestArgs.builder()
            .report("string")
            .durations(ReportRequestDurationArgs.builder()
                .endTimes(ReportRequestDurationEndTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .period("string")
                .startTimes(ReportRequestDurationStartTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .build())
            .name("string")
            .parameters(ReportRequestParameterArgs.builder()
                .name("string")
                .value("string")
                .build())
            .sections(ReportRequestSectionArgs.builder()
                .id("string")
                .subSections(ReportRequestSectionSubSectionArgs.builder()
                    .id("string")
                    .build())
                .build())
            .build())
        .startTime("string")
        .states(ReportStateArgs.builder()
            .lastChangedTimes(ReportStateLastChangedTimeArgs.builder()
                .secs("string")
                .usecs("string")
                .build())
            .reason("string")
            .state("string")
            .build())
        .tasks(ReportTaskArgs.builder()
            .nodesEvents(ReportTaskNodesEventArgs.builder()
                .duration("string")
                .endTime("string")
                .ips(ReportTaskNodesEventIpArgs.builder()
                    .addr("string")
                    .type("string")
                    .build())
                .message("string")
                .startTime("string")
                .status("string")
                .subTasks("string")
                .build())
            .subEvents(ReportTaskSubEventArgs.builder()
                .duration("string")
                .endTime("string")
                .ips(ReportTaskSubEventIpArgs.builder()
                    .addr("string")
                    .type("string")
                    .build())
                .message("string")
                .startTime("string")
                .status("string")
                .subTasks("string")
                .build())
            .taskName("string")
            .build())
        .tasksCompleted("string")
        .tenantRef("string")
        .totalTasks("string")
        .uuid("string")
        .build());
    
    report_resource = avi.Report("reportResource",
        duration="string",
        end_time="string",
        filename="string",
        name="string",
        node="string",
        pre_checks=[{
            "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",
        }],
        progress="string",
        report_id="string",
        requests=[{
            "report": "string",
            "durations": [{
                "end_times": [{
                    "secs": "string",
                    "usecs": "string",
                }],
                "period": "string",
                "start_times": [{
                    "secs": "string",
                    "usecs": "string",
                }],
            }],
            "name": "string",
            "parameters": [{
                "name": "string",
                "value": "string",
            }],
            "sections": [{
                "id": "string",
                "sub_sections": [{
                    "id": "string",
                }],
            }],
        }],
        start_time="string",
        states=[{
            "last_changed_times": [{
                "secs": "string",
                "usecs": "string",
            }],
            "reason": "string",
            "state": "string",
        }],
        tasks=[{
            "nodes_events": [{
                "duration": "string",
                "end_time": "string",
                "ips": [{
                    "addr": "string",
                    "type": "string",
                }],
                "message": "string",
                "start_time": "string",
                "status": "string",
                "sub_tasks": ["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",
        tenant_ref="string",
        total_tasks="string",
        uuid="string")
    
    const reportResource = new avi.Report("reportResource", {
        duration: "string",
        endTime: "string",
        filename: "string",
        name: "string",
        node: "string",
        preChecks: [{
            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",
        }],
        progress: "string",
        reportId: "string",
        requests: [{
            report: "string",
            durations: [{
                endTimes: [{
                    secs: "string",
                    usecs: "string",
                }],
                period: "string",
                startTimes: [{
                    secs: "string",
                    usecs: "string",
                }],
            }],
            name: "string",
            parameters: [{
                name: "string",
                value: "string",
            }],
            sections: [{
                id: "string",
                subSections: [{
                    id: "string",
                }],
            }],
        }],
        startTime: "string",
        states: [{
            lastChangedTimes: [{
                secs: "string",
                usecs: "string",
            }],
            reason: "string",
            state: "string",
        }],
        tasks: [{
            nodesEvents: [{
                duration: "string",
                endTime: "string",
                ips: [{
                    addr: "string",
                    type: "string",
                }],
                message: "string",
                startTime: "string",
                status: "string",
                subTasks: ["string"],
            }],
            subEvents: [{
                duration: "string",
                endTime: "string",
                ips: [{
                    addr: "string",
                    type: "string",
                }],
                message: "string",
                startTime: "string",
                status: "string",
                subTasks: ["string"],
            }],
            taskName: "string",
        }],
        tasksCompleted: "string",
        tenantRef: "string",
        totalTasks: "string",
        uuid: "string",
    });
    
    type: avi:Report
    properties:
        duration: string
        endTime: string
        filename: string
        name: string
        node: string
        preChecks:
            - 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
        progress: string
        reportId: string
        requests:
            - durations:
                - endTimes:
                    - secs: string
                      usecs: string
                  period: string
                  startTimes:
                    - secs: string
                      usecs: string
              name: string
              parameters:
                - name: string
                  value: string
              report: string
              sections:
                - id: string
                  subSections:
                    - id: string
        startTime: string
        states:
            - lastChangedTimes:
                - secs: string
                  usecs: string
              reason: string
              state: string
        tasks:
            - nodesEvents:
                - duration: string
                  endTime: string
                  ips:
                    - addr: string
                      type: string
                  message: string
                  startTime: string
                  status: string
                  subTasks:
                    - string
              subEvents:
                - duration: string
                  endTime: string
                  ips:
                    - addr: string
                      type: string
                  message: string
                  startTime: string
                  status: string
                  subTasks:
                    - string
              taskName: string
        tasksCompleted: string
        tenantRef: string
        totalTasks: string
        uuid: string
    

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

    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreChecks List<ReportPreCheck>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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.
    ReportId string
    Requests List<ReportRequest>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<ReportState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks List<ReportTask>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreChecks []ReportPreCheckArgs
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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.
    ReportId string
    Requests []ReportRequestArgs
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []ReportStateTypeArgs
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks []ReportTaskArgs
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename String
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks List<ReportPreCheck>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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.
    reportId String
    requests List<ReportRequest>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<ReportState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<ReportTask>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks ReportPreCheck[]
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Percentage of tasks completed. 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.
    reportId string
    requests ReportRequest[]
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states ReportState[]
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks ReportTask[]
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename str
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pre_checks Sequence[ReportPreCheckArgs]
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Percentage of tasks completed. 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.
    report_id str
    requests Sequence[ReportRequestArgs]
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[ReportStateArgs]
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks Sequence[ReportTaskArgs]
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks_completed str
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename String
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks List<Property Map>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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.
    reportId String
    requests List<Property Map>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<Property Map>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the report generation. 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 Report 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 Report Resource

    Get an existing Report 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?: ReportState, opts?: CustomResourceOptions): Report
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            duration: Optional[str] = None,
            end_time: Optional[str] = None,
            filename: Optional[str] = None,
            name: Optional[str] = None,
            node: Optional[str] = None,
            pre_checks: Optional[Sequence[ReportPreCheckArgs]] = None,
            progress: Optional[str] = None,
            report_id: Optional[str] = None,
            requests: Optional[Sequence[ReportRequestArgs]] = None,
            start_time: Optional[str] = None,
            states: Optional[Sequence[ReportStateArgs]] = None,
            tasks: Optional[Sequence[ReportTaskArgs]] = None,
            tasks_completed: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            total_tasks: Optional[str] = None,
            uuid: Optional[str] = None) -> Report
    func GetReport(ctx *Context, name string, id IDInput, state *ReportState, opts ...ResourceOption) (*Report, error)
    public static Report Get(string name, Input<string> id, ReportState? state, CustomResourceOptions? opts = null)
    public static Report get(String name, Output<String> id, ReportState state, CustomResourceOptions options)
    resources:  _:    type: avi:Report    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:
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreChecks List<ReportPreCheck>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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.
    ReportId string
    Requests List<ReportRequest>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<ReportState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks List<ReportTask>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreChecks []ReportPreCheckArgs
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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.
    ReportId string
    Requests []ReportRequestArgs
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []ReportStateTypeArgs
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Tasks []ReportTaskArgs
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename String
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks List<ReportPreCheck>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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.
    reportId String
    requests List<ReportRequest>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<ReportState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<ReportTask>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename string
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks ReportPreCheck[]
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Percentage of tasks completed. 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.
    reportId string
    requests ReportRequest[]
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states ReportState[]
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks ReportTask[]
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted string
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename str
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    pre_checks Sequence[ReportPreCheckArgs]
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Percentage of tasks completed. 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.
    report_id str
    requests Sequence[ReportRequestArgs]
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    start_time str
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[ReportStateArgs]
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks Sequence[ReportTaskArgs]
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks_completed str
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    filename String
    Name of the report artifact on reports repository. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. 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 report is processed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    preChecks List<Property Map>
    Pre-check details for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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.
    reportId String
    requests List<Property Map>
    Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasks List<Property Map>
    List of tasks associated with the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tasksCompleted String
    No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant uuid of the report generation. 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 no. Of tasks. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Uuid identifier for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    ReportPreCheck, ReportPreCheckArgs

    Checks List<ReportPreCheckCheck>
    ChecksCompleted string
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States List<ReportPreCheckState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalChecks string
    Checks []ReportPreCheckCheck
    ChecksCompleted string
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Progress string
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    States []ReportPreCheckState
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TotalChecks string
    checks List<ReportPreCheckCheck>
    checksCompleted String
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<ReportPreCheckState>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks String
    checks ReportPreCheckCheck[]
    checksCompleted string
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress string
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states ReportPreCheckState[]
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks string
    checks Sequence[ReportPreCheckCheck]
    checks_completed str
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress str
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states Sequence[ReportPreCheckState]
    State of the report generation. 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
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    progress String
    Percentage of tasks completed. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    states List<Property Map>
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    totalChecks String

    ReportPreCheckCheck, ReportPreCheckCheckArgs

    CheckCode string
    Description string
    Details List<string>
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ErrorDetails List<string>
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CheckCode string
    Description string
    Details []string
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ErrorDetails []string
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode String
    description String
    details List<String>
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails List<String>
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state String
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode string
    description string
    details string[]
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails string[]
    startTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    check_code str
    description str
    details Sequence[str]
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state str
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    checkCode String
    description String
    details List<String>
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    errorDetails List<String>
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    state String
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    ReportPreCheckState, ReportPreCheckStateArgs

    LastChangedTimes List<ReportPreCheckStateLastChangedTime>
    Reason string
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    LastChangedTimes []ReportPreCheckStateLastChangedTime
    Reason string
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<ReportPreCheckStateLastChangedTime>
    reason String
    state String
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes ReportPreCheckStateLastChangedTime[]
    reason string
    state string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    last_changed_times Sequence[ReportPreCheckStateLastChangedTime]
    reason str
    state str
    State of the report generation. 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 the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    ReportPreCheckStateLastChangedTime, ReportPreCheckStateLastChangedTimeArgs

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

    ReportRequest, ReportRequestArgs

    Report string
    Durations List<ReportRequestDuration>
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Parameters List<ReportRequestParameter>
    Sections List<ReportRequestSection>
    Report string
    Durations []ReportRequestDuration
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Parameters []ReportRequestParameter
    Sections []ReportRequestSection
    report String
    durations List<ReportRequestDuration>
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    parameters List<ReportRequestParameter>
    sections List<ReportRequestSection>
    report string
    durations ReportRequestDuration[]
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    parameters ReportRequestParameter[]
    sections ReportRequestSection[]
    report str
    durations Sequence[ReportRequestDuration]
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    parameters Sequence[ReportRequestParameter]
    sections Sequence[ReportRequestSection]
    report String
    durations List<Property Map>
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    parameters List<Property Map>
    sections List<Property Map>

    ReportRequestDuration, ReportRequestDurationArgs

    EndTimes List<ReportRequestDurationEndTime>
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Period string
    StartTimes List<ReportRequestDurationStartTime>
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTimes []ReportRequestDurationEndTime
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Period string
    StartTimes []ReportRequestDurationStartTime
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTimes List<ReportRequestDurationEndTime>
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    period String
    startTimes List<ReportRequestDurationStartTime>
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTimes ReportRequestDurationEndTime[]
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    period string
    startTimes ReportRequestDurationStartTime[]
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_times Sequence[ReportRequestDurationEndTime]
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    period str
    start_times Sequence[ReportRequestDurationStartTime]
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTimes List<Property Map>
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    period String
    startTimes List<Property Map>
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    ReportRequestDurationEndTime, ReportRequestDurationEndTimeArgs

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

    ReportRequestDurationStartTime, ReportRequestDurationStartTimeArgs

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

    ReportRequestParameter, ReportRequestParameterArgs

    Name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Value string
    Name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Value string
    name String
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    value String
    name string
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    value string
    name str
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    value str
    name String
    Name of the report. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    value String

    ReportRequestSection, ReportRequestSectionArgs

    ReportRequestSectionSubSection, ReportRequestSectionSubSectionArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    ReportState, ReportStateArgs

    LastChangedTimes List<ReportStateLastChangedTime>
    Reason string
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    LastChangedTimes []ReportStateLastChangedTime
    Reason string
    State string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes List<ReportStateLastChangedTime>
    reason String
    state String
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    lastChangedTimes ReportStateLastChangedTime[]
    reason string
    state string
    State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    last_changed_times Sequence[ReportStateLastChangedTime]
    reason str
    state str
    State of the report generation. 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 the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    ReportStateLastChangedTime, ReportStateLastChangedTimeArgs

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

    ReportTask, ReportTaskArgs

    ReportTaskNodesEvent, ReportTaskNodesEventArgs

    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips List<ReportTaskNodesEventIp>
    Message string
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks List<string>
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips []ReportTaskNodesEventIp
    Message string
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks []string
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips List<ReportTaskNodesEventIp>
    message String
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips ReportTaskNodesEventIp[]
    message string
    startTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status string
    subTasks string[]
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips Sequence[ReportTaskNodesEventIp]
    message str
    start_time str
    Start time of the report generation. 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
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>

    ReportTaskNodesEventIp, ReportTaskNodesEventIpArgs

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

    ReportTaskSubEvent, ReportTaskSubEventArgs

    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips List<ReportTaskSubEventIp>
    Message string
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks List<string>
    Duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    EndTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ips []ReportTaskSubEventIp
    Message string
    StartTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Status string
    SubTasks []string
    duration String
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips List<ReportTaskSubEventIp>
    message String
    startTime String
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>
    duration string
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime string
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips ReportTaskSubEventIp[]
    message string
    startTime string
    Start time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status string
    subTasks string[]
    duration str
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    end_time str
    End time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ips Sequence[ReportTaskSubEventIp]
    message str
    start_time str
    Start time of the report generation. 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
    Time taken to complete report generation in seconds. Field introduced in 31.2.1. Unit is sec. Allowed with any value in enterprise, enterprise with cloud services edition.
    endTime String
    End time of the report generation. 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 time of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    status String
    subTasks List<String>

    ReportTaskSubEventIp, ReportTaskSubEventIpArgs

    Addr string
    Type string
    Addr string
    Type string
    addr String
    type String
    addr string
    type string
    addr str
    type str
    addr String
    type 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