import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates and starts a Replay using the given ReplayConfig. * Auto-naming is currently not supported for this resource. * Note - this resource's API doesn't support deletion. When deleted, the resource will persist * on Google Cloud even though it will be deleted from Pulumi state. */ export declare class FolderReplay extends pulumi.CustomResource { /** * Get an existing FolderReplay 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, opts?: pulumi.CustomResourceOptions): FolderReplay; /** * Returns true if the given object is an instance of FolderReplay. 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 FolderReplay; /** * The configuration used for the `Replay`. */ readonly config: pulumi.Output; readonly folderId: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the `Replay`, which has the following format: `{projects|folders|organizations}/{resource-id}/locations/global/replays/{replay-id}`, where `{resource-id}` is the ID of the project, folder, or organization that owns the Replay. Example: `projects/my-example-project/locations/global/replays/506a5f7f-38ce-4d7d-8e03-479ce1833c36` */ readonly name: pulumi.Output; /** * Summary statistics about the replayed log entries. */ readonly resultsSummary: pulumi.Output; /** * The current state of the `Replay`. */ readonly state: pulumi.Output; /** * Create a FolderReplay 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: FolderReplayArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a FolderReplay resource. */ export interface FolderReplayArgs { /** * The configuration used for the `Replay`. */ config: pulumi.Input; folderId: pulumi.Input; location?: pulumi.Input; }