import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Uploads a ZIP-formatted shared flow configuration bundle to an organization. If the shared flow already exists, this creates a new revision of it. If the shared flow does not exist, this creates it. Once imported, the shared flow revision must be deployed before it can be accessed at runtime. The size limit of a shared flow bundle is 15 MB. */ export declare class Sharedflow extends pulumi.CustomResource { /** * Get an existing Sharedflow 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): Sharedflow; /** * Returns true if the given object is an instance of Sharedflow. 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 Sharedflow; /** * Required. Must be set to either `import` or `validate`. */ readonly action: pulumi.Output; /** * The id of the most recently created revision for this shared flow. */ readonly latestRevisionId: pulumi.Output; /** * Metadata describing the shared flow. */ readonly metaData: pulumi.Output; /** * Required. The name to give the shared flow */ readonly name: pulumi.Output; readonly organizationId: pulumi.Output; /** * A list of revisions of this shared flow. */ readonly revision: pulumi.Output; /** * Create a Sharedflow 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: SharedflowArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Sharedflow resource. */ export interface SharedflowArgs { /** * Required. Must be set to either `import` or `validate`. */ action: pulumi.Input; /** * The HTTP Content-Type header value specifying the content type of the body. */ contentType?: pulumi.Input; /** * The HTTP request/response body as raw binary. */ data?: pulumi.Input; /** * Application specific response metadata. Must be set in the first response for streaming APIs. */ extensions?: pulumi.Input; }>[]>; /** * Required. The name to give the shared flow */ name?: pulumi.Input; organizationId: pulumi.Input; }