UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

138 lines (137 loc) 5.59 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * A class represent an AppComplianceAutomation report resource. * * Uses Azure REST API version 2024-06-27. In version 2.x of the Azure Native provider, it used API version 2022-11-16-preview. * * Other available API versions: 2022-11-16-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native appcomplianceautomation [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class Report extends pulumi.CustomResource { /** * Get an existing Report resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Report; /** * Returns true if the given object is an instance of Report. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Report; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * List of synchronized certification records. */ readonly certRecords: pulumi.Output<outputs.appcomplianceautomation.CertSyncRecordResponse[]>; /** * Report compliance status. */ readonly complianceStatus: pulumi.Output<outputs.appcomplianceautomation.ReportComplianceStatusResponse>; /** * List of report error codes. */ readonly errors: pulumi.Output<string[]>; /** * Report last collection trigger time. */ readonly lastTriggerTime: pulumi.Output<string>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * Report next collection trigger time. */ readonly nextTriggerTime: pulumi.Output<string>; /** * A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003". */ readonly offerGuid: pulumi.Output<string | undefined>; /** * Azure lifecycle management */ readonly provisioningState: pulumi.Output<string>; /** * List of resource data. */ readonly resources: pulumi.Output<outputs.appcomplianceautomation.ResourceMetadataResponse[]>; /** * Report status. */ readonly status: pulumi.Output<string>; /** * The information of 'bring your own storage' binding to the report */ readonly storageInfo: pulumi.Output<outputs.appcomplianceautomation.StorageInfoResponse | undefined>; /** * List of subscription Ids. */ readonly subscriptions: pulumi.Output<string[]>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.appcomplianceautomation.SystemDataResponse>; /** * Report's tenant id. */ readonly tenantId: pulumi.Output<string>; /** * Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. * An example of valid timezone id is "Pacific Standard Time". */ readonly timeZone: pulumi.Output<string>; /** * Report collection trigger time. */ readonly triggerTime: pulumi.Output<string>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Create a Report resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ReportArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Report resource. */ export interface ReportArgs { /** * A list of comma-separated offerGuids indicates a series of offerGuids that map to the report. For example, "00000000-0000-0000-0000-000000000001,00000000-0000-0000-0000-000000000002" and "00000000-0000-0000-0000-000000000003". */ offerGuid?: pulumi.Input<string>; /** * Report Name. */ reportName?: pulumi.Input<string>; /** * List of resource data. */ resources: pulumi.Input<pulumi.Input<inputs.appcomplianceautomation.ResourceMetadataArgs>[]>; /** * The information of 'bring your own storage' binding to the report */ storageInfo?: pulumi.Input<inputs.appcomplianceautomation.StorageInfoArgs>; /** * Report collection trigger time's time zone, the available list can be obtained by executing "Get-TimeZone -ListAvailable" in PowerShell. * An example of valid timezone id is "Pacific Standard Time". */ timeZone: pulumi.Input<string>; /** * Report collection trigger time. */ triggerTime: pulumi.Input<string>; }