import * as pulumi from "@pulumi/pulumi"; export declare class EdgeConfigurations extends pulumi.CustomResource { /** * Get an existing EdgeConfigurations 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: EdgeConfigurationsState, opts?: pulumi.CustomResourceOptions): EdgeConfigurations; /** * Returns true if the given object is an instance of EdgeConfigurations. 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 EdgeConfigurations; /** * Base directory on edge agents where the configuration files are written. */ readonly baseDir: pulumi.Output; /** * Category of the edge configuration. One of `configuration`, `secret`, or empty string. */ readonly category: pulumi.Output; readonly edgeConfigurationsId: pulumi.Output; /** * List of edge group identifiers that should receive this configuration. */ readonly edgeGroupIds: pulumi.Output; /** * Path on the local filesystem to the file or archive uploaded as the edge configuration payload. */ readonly filePath: pulumi.Output; /** * SHA256 hash of the uploaded edge configuration file used to detect content changes. */ readonly fileSha256: pulumi.Output; /** * Name of the Portainer edge configuration. */ readonly name: pulumi.Output; /** * Edge configuration type. Accepts the textual form `general` or the numeric form `1`. */ readonly type: pulumi.Output; /** * Create a EdgeConfigurations 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: EdgeConfigurationsArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EdgeConfigurations resources. */ export interface EdgeConfigurationsState { /** * Base directory on edge agents where the configuration files are written. */ baseDir?: pulumi.Input; /** * Category of the edge configuration. One of `configuration`, `secret`, or empty string. */ category?: pulumi.Input; edgeConfigurationsId?: pulumi.Input; /** * List of edge group identifiers that should receive this configuration. */ edgeGroupIds?: pulumi.Input[] | undefined>; /** * Path on the local filesystem to the file or archive uploaded as the edge configuration payload. */ filePath?: pulumi.Input; /** * SHA256 hash of the uploaded edge configuration file used to detect content changes. */ fileSha256?: pulumi.Input; /** * Name of the Portainer edge configuration. */ name?: pulumi.Input; /** * Edge configuration type. Accepts the textual form `general` or the numeric form `1`. */ type?: pulumi.Input; } /** * The set of arguments for constructing a EdgeConfigurations resource. */ export interface EdgeConfigurationsArgs { /** * Base directory on edge agents where the configuration files are written. */ baseDir?: pulumi.Input; /** * Category of the edge configuration. One of `configuration`, `secret`, or empty string. */ category?: pulumi.Input; edgeConfigurationsId?: pulumi.Input; /** * List of edge group identifiers that should receive this configuration. */ edgeGroupIds: pulumi.Input[]>; /** * Path on the local filesystem to the file or archive uploaded as the edge configuration payload. */ filePath: pulumi.Input; /** * Name of the Portainer edge configuration. */ name?: pulumi.Input; /** * Edge configuration type. Accepts the textual form `general` or the numeric form `1`. */ type: pulumi.Input; } //# sourceMappingURL=edgeConfigurations.d.ts.map