<!–
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-datasource-report” description: |- Get information of Avi Report.
# avi.Report This data source is used to to get avi.Report objects.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const fooReport = avi.getReport({
uuid: "report-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
name: "foo",
});
import pulumi
import pulumi_avi as avi
foo_report = avi.get_report(uuid="report-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
name="foo")
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.LookupReport(ctx, &avi.LookupReportArgs{
Uuid: pulumi.StringRef("report-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
Name: pulumi.StringRef("foo"),
}, nil)
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 fooReport = Avi.GetReport.Invoke(new()
{
Uuid = "report-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
Name = "foo",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.AviFunctions;
import com.pulumi.avi.inputs.GetReportArgs;
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) {
final var fooReport = AviFunctions.getReport(GetReportArgs.builder()
.uuid("report-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
.name("foo")
.build());
}
}
variables:
fooReport:
fn::invoke:
function: avi:getReport
arguments:
uuid: report-f9cf6b3e-a411-436f-95e2-2982ba2b217b
name: foo
Using getReport
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getReport(args: GetReportArgs, opts?: InvokeOptions): Promise<GetReportResult>
function getReportOutput(args: GetReportOutputArgs, opts?: InvokeOptions): Output<GetReportResult>def get_report(id: Optional[str] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetReportResult
def get_report_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
tenant_ref: Optional[pulumi.Input[str]] = None,
uuid: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetReportResult]func LookupReport(ctx *Context, args *LookupReportArgs, opts ...InvokeOption) (*LookupReportResult, error)
func LookupReportOutput(ctx *Context, args *LookupReportOutputArgs, opts ...InvokeOption) LookupReportResultOutput> Note: This function is named LookupReport in the Go SDK.
public static class GetReport
{
public static Task<GetReportResult> InvokeAsync(GetReportArgs args, InvokeOptions? opts = null)
public static Output<GetReportResult> Invoke(GetReportInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetReportResult> getReport(GetReportArgs args, InvokeOptions options)
public static Output<GetReportResult> getReport(GetReportArgs args, InvokeOptions options)
fn::invoke:
function: avi:index/getReport:getReport
arguments:
# arguments dictionaryThe following arguments are supported:
- id str
- name str
- Search Report by name.
- 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.
- uuid str
- Search Report by uuid.
getReport Result
The following output properties are available:
- 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.
- End
Time 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.
- Id string
- 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.
- Pre
Checks List<GetReport Pre Check> - 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.
- Requests
List<Get
Report Request> - Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Time 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<Get
Report State> - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
List<Get
Report Task> - 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 string - No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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.
- Total
Tasks 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.
- End
Time 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.
- Id string
- 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.
- Pre
Checks []GetReport Pre Check - 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.
- Requests
[]Get
Report Request - Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Start
Time 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
[]Get
Report State - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tasks
[]Get
Report Task - 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 string - No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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.
- Total
Tasks 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.
- end
Time 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.
- id String
- 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.
- pre
Checks List<GetReport Pre Check> - 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.
- requests
List<Get
Report Request> - Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Time 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<Get
Report State> - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
List<Get
Report Task> - 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 String - No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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.
- total
Tasks 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.
- end
Time 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.
- id string
- 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.
- pre
Checks GetReport Pre Check[] - 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.
- requests
Get
Report Request[] - Request for the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- start
Time 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
Get
Report State[] - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Get
Report Task[] - 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 string - No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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.
- total
Tasks 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.
- id str
- 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[GetReport Pre Check] - 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.
- requests
Sequence[Get
Report Request] - 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[Get
Report State] - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tasks
Sequence[Get
Report Task] - 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.
- end
Time 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.
- id String
- 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.
- pre
Checks 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.
- 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.
- start
Time 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.
- tasks
Completed String - No. Of tasks completed. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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.
- total
Tasks 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
GetReportPreCheck
- Checks
List<Get
Report Pre Check Check> - Checks
Completed 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.
- End
Time 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.
- Start
Time 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<Get
Report Pre Check State> - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Total
Checks string
- Checks
[]Get
Report Pre Check Check - Checks
Completed 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.
- End
Time 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.
- Start
Time 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
[]Get
Report Pre Check State - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Total
Checks string
- checks
List<Get
Report Pre Check Check> - checks
Completed 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.
- end
Time 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.
- start
Time 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<Get
Report Pre Check State> - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- total
Checks String
- checks
Get
Report Pre Check Check[] - checks
Completed 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.
- end
Time 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.
- start
Time 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
Get
Report Pre Check State[] - State of the report generation. Field introduced in 31.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- total
Checks string
- checks
Sequence[Get
Report Pre Check Check] - 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[Get
Report Pre Check State] - 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>
- checks
Completed 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.
- end
Time 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.
- start
Time 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.
- total
Checks String
GetReportPreCheckCheck
- Check
Code 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.
- End
Time string - 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 List<string> - Start
Time 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 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.
- End
Time string - 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 []string - Start
Time 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 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.
- end
Time String - 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 List<String> - start
Time 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 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.
- end
Time string - 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 string[] - start
Time 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.
- check
Code 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.
- end
Time String - 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 List<String> - start
Time 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.
GetReportPreCheckState
- Last
Changed List<GetTimes Report Pre Check State Last Changed Time> - 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 []GetTimes Report Pre Check State Last Changed Time - 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 List<GetTimes Report Pre Check State Last Changed Time> - 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 GetTimes Report Pre Check State Last Changed Time[] - 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_ Sequence[Gettimes Report Pre Check State Last Changed Time] - 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.
- last
Changed List<Property Map>Times - 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.
GetReportPreCheckStateLastChangedTime
GetReportRequest
- Durations
List<Get
Report Request Duration> - 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
- Search Report by name.
- Parameters
List<Get
Report Request Parameter> - Report string
- Sections
List<Get
Report Request Section>
- Durations
[]Get
Report Request Duration - 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
- Search Report by name.
- Parameters
[]Get
Report Request Parameter - Report string
- Sections
[]Get
Report Request Section
- durations
List<Get
Report Request Duration> - 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
- Search Report by name.
- parameters
List<Get
Report Request Parameter> - report String
- sections
List<Get
Report Request Section>
- durations
Get
Report Request Duration[] - 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
- Search Report by name.
- parameters
Get
Report Request Parameter[] - report string
- sections
Get
Report Request Section[]
- durations
Sequence[Get
Report Request Duration] - 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
- Search Report by name.
- parameters
Sequence[Get
Report Request Parameter] - report str
- sections
Sequence[Get
Report Request Section]
- 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
- Search Report by name.
- parameters List<Property Map>
- report String
- sections List<Property Map>
GetReportRequestDuration
- End
Times List<GetReport Request Duration End Time> - 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
- Start
Times List<GetReport Request Duration Start Time> - 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 []GetReport Request Duration End Time - 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
- Start
Times []GetReport Request Duration Start Time - 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 List<GetReport Request Duration End Time> - 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
- start
Times List<GetReport Request Duration Start Time> - 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 GetReport Request Duration End Time[] - 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
- start
Times GetReport Request Duration Start Time[] - 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[GetReport Request Duration End Time] - 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[GetReport Request Duration Start Time] - 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 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
- start
Times 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.
GetReportRequestDurationEndTime
GetReportRequestDurationStartTime
GetReportRequestParameter
GetReportRequestSection
- id String
- sub
Sections List<Property Map>
GetReportRequestSectionSubSection
- Id string
- Id string
- id String
- id string
- id str
- id String
GetReportState
- Last
Changed List<GetTimes Report State Last Changed Time> - 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 []GetTimes Report State Last Changed Time - 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 List<GetTimes Report State Last Changed Time> - 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 GetTimes Report State Last Changed Time[] - 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_ Sequence[Gettimes Report State Last Changed Time] - 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.
- last
Changed List<Property Map>Times - 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.
GetReportStateLastChangedTime
GetReportTask
GetReportTaskNodesEvent
- 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.
- End
Time 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<Get
Report Task Nodes Event Ip> - Message string
- Start
Time 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
- Sub
Tasks 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.
- End
Time 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
[]Get
Report Task Nodes Event Ip - Message string
- Start
Time 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
- Sub
Tasks []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.
- end
Time 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<Get
Report Task Nodes Event Ip> - message String
- start
Time 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
- sub
Tasks 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.
- end
Time 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
Get
Report Task Nodes Event Ip[] - message string
- start
Time 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
- sub
Tasks 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[Get
Report Task Nodes Event Ip] - 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.
- end
Time 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
- start
Time 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
- sub
Tasks List<String>
GetReportTaskNodesEventIp
GetReportTaskSubEvent
- 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.
- End
Time 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<Get
Report Task Sub Event Ip> - Message string
- Start
Time 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
- Sub
Tasks 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.
- End
Time 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
[]Get
Report Task Sub Event Ip - Message string
- Start
Time 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
- Sub
Tasks []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.
- end
Time 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<Get
Report Task Sub Event Ip> - message String
- start
Time 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
- sub
Tasks 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.
- end
Time 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
Get
Report Task Sub Event Ip[] - message string
- start
Time 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
- sub
Tasks 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[Get
Report Task Sub Event Ip] - 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.
- end
Time 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
- start
Time 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
- sub
Tasks List<String>
GetReportTaskSubEventIp
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
aviTerraform Provider.
