Viewing docs for prismacloud 1.7.1
published on Tuesday, Mar 3, 2026 by paloaltonetworks
published on Tuesday, Mar 3, 2026 by paloaltonetworks
Viewing docs for prismacloud 1.7.1
published on Tuesday, Mar 3, 2026 by paloaltonetworks
published on Tuesday, Mar 3, 2026 by paloaltonetworks
Retrieve a list of alert reports and compliance reports.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as prismacloud from "@pulumi/prismacloud";
const example = prismacloud.getReports({});
import pulumi
import pulumi_prismacloud as prismacloud
example = prismacloud.get_reports()
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/prismacloud/prismacloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := prismacloud.GetReports(ctx, &prismacloud.GetReportsArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Prismacloud = Pulumi.Prismacloud;
return await Deployment.RunAsync(() =>
{
var example = Prismacloud.GetReports.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.prismacloud.PrismacloudFunctions;
import com.pulumi.prismacloud.inputs.GetReportsArgs;
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 example = PrismacloudFunctions.getReports(GetReportsArgs.builder()
.build());
}
}
variables:
example:
fn::invoke:
function: prismacloud:getReports
arguments: {}
Using getReports
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 getReports(args: GetReportsArgs, opts?: InvokeOptions): Promise<GetReportsResult>
function getReportsOutput(args: GetReportsOutputArgs, opts?: InvokeOptions): Output<GetReportsResult>def get_reports(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetReportsResult
def get_reports_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetReportsResult]func GetReports(ctx *Context, args *GetReportsArgs, opts ...InvokeOption) (*GetReportsResult, error)
func GetReportsOutput(ctx *Context, args *GetReportsOutputArgs, opts ...InvokeOption) GetReportsResultOutput> Note: This function is named GetReports in the Go SDK.
public static class GetReports
{
public static Task<GetReportsResult> InvokeAsync(GetReportsArgs args, InvokeOptions? opts = null)
public static Output<GetReportsResult> Invoke(GetReportsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
public static Output<GetReportsResult> getReports(GetReportsArgs args, InvokeOptions options)
fn::invoke:
function: prismacloud:index/getReports:getReports
arguments:
# arguments dictionaryThe following arguments are supported:
- Id string
- Id string
- id String
- id string
- id str
- id String
getReports Result
The following output properties are available:
- Id string
- Listings
List<Get
Reports Listing> - List of reports returned, as defined below.
- Total double
- (int) Total number of reports.
- Id string
- Listings
[]Get
Reports Listing - List of reports returned, as defined below.
- Total float64
- (int) Total number of reports.
- id String
- listings
List<Get
Reports Listing> - List of reports returned, as defined below.
- total Double
- (int) Total number of reports.
- id string
- listings
Get
Reports Listing[] - List of reports returned, as defined below.
- total number
- (int) Total number of reports.
- id str
- listings
Sequence[Get
Reports Listing] - List of reports returned, as defined below.
- total float
- (int) Total number of reports.
- id String
- listings List<Property Map>
- List of reports returned, as defined below.
- total Number
- (int) Total number of reports.
Supporting Types
GetReportsListing
- Cloud
Type string - Cloud type
- Name string
- Report name
- Report
Id string - Report ID
- Report
Type string - Report type
- Status string
- Report status
- Cloud
Type string - Cloud type
- Name string
- Report name
- Report
Id string - Report ID
- Report
Type string - Report type
- Status string
- Report status
- cloud
Type String - Cloud type
- name String
- Report name
- report
Id String - Report ID
- report
Type String - Report type
- status String
- Report status
- cloud
Type string - Cloud type
- name string
- Report name
- report
Id string - Report ID
- report
Type string - Report type
- status string
- Report status
- cloud_
type str - Cloud type
- name str
- Report name
- report_
id str - Report ID
- report_
type str - Report type
- status str
- Report status
- cloud
Type String - Cloud type
- name String
- Report name
- report
Id String - Report ID
- report
Type String - Report type
- status String
- Report status
Package Details
- Repository
- prismacloud paloaltonetworks/terraform-provider-prismacloud
- License
- Notes
- This Pulumi package is based on the
prismacloudTerraform Provider.
Viewing docs for prismacloud 1.7.1
published on Tuesday, Mar 3, 2026 by paloaltonetworks
published on Tuesday, Mar 3, 2026 by paloaltonetworks
