import * as pulumi from "@pulumi/pulumi"; export declare class BackupS3 extends pulumi.CustomResource { /** * Get an existing BackupS3 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?: BackupS3State, opts?: pulumi.CustomResourceOptions): BackupS3; /** * Returns true if the given object is an instance of BackupS3. 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 BackupS3; /** * Sensitive S3 access key identifier used to upload the Portainer backup archive. */ readonly accessKeyId: pulumi.Output; readonly backupS3Id: pulumi.Output; /** * Name of the S3 bucket where the Portainer backup archive will be stored. */ readonly bucketName: pulumi.Output; /** * Optional cron expression that schedules recurring S3 backups in Portainer. */ readonly cronRule: pulumi.Output; /** * Sensitive password used to encrypt the Portainer backup archive before upload. */ readonly password: pulumi.Output; /** * AWS or S3-compatible region of the destination bucket. */ readonly region: pulumi.Output; /** * Endpoint URL of the S3 or S3-compatible service used for the backup upload. */ readonly s3CompatibleHost: pulumi.Output; /** * Sensitive S3 secret access key paired with `accessKeyId`. */ readonly secretAccessKey: pulumi.Output; /** * Create a BackupS3 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: BackupS3Args, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering BackupS3 resources. */ export interface BackupS3State { /** * Sensitive S3 access key identifier used to upload the Portainer backup archive. */ accessKeyId?: pulumi.Input; backupS3Id?: pulumi.Input; /** * Name of the S3 bucket where the Portainer backup archive will be stored. */ bucketName?: pulumi.Input; /** * Optional cron expression that schedules recurring S3 backups in Portainer. */ cronRule?: pulumi.Input; /** * Sensitive password used to encrypt the Portainer backup archive before upload. */ password?: pulumi.Input; /** * AWS or S3-compatible region of the destination bucket. */ region?: pulumi.Input; /** * Endpoint URL of the S3 or S3-compatible service used for the backup upload. */ s3CompatibleHost?: pulumi.Input; /** * Sensitive S3 secret access key paired with `accessKeyId`. */ secretAccessKey?: pulumi.Input; } /** * The set of arguments for constructing a BackupS3 resource. */ export interface BackupS3Args { /** * Sensitive S3 access key identifier used to upload the Portainer backup archive. */ accessKeyId: pulumi.Input; backupS3Id?: pulumi.Input; /** * Name of the S3 bucket where the Portainer backup archive will be stored. */ bucketName: pulumi.Input; /** * Optional cron expression that schedules recurring S3 backups in Portainer. */ cronRule?: pulumi.Input; /** * Sensitive password used to encrypt the Portainer backup archive before upload. */ password: pulumi.Input; /** * AWS or S3-compatible region of the destination bucket. */ region: pulumi.Input; /** * Endpoint URL of the S3 or S3-compatible service used for the backup upload. */ s3CompatibleHost: pulumi.Input; /** * Sensitive S3 secret access key paired with `accessKeyId`. */ secretAccessKey: pulumi.Input; } //# sourceMappingURL=backupS3.d.ts.map