import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class SecretRotationAzureClientSecret extends pulumi.CustomResource { /** * Get an existing SecretRotationAzureClientSecret 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?: SecretRotationAzureClientSecretState, opts?: pulumi.CustomResourceOptions): SecretRotationAzureClientSecret; /** * Returns true if the given object is an instance of SecretRotationAzureClientSecret. 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 SecretRotationAzureClientSecret; /** * Whether secrets should be automatically rotated. */ readonly autoRotationEnabled: pulumi.Output; /** * The ID of the connection to use for the secret rotation. */ readonly connectionId: pulumi.Output; /** * The description of the secret rotation. */ readonly description: pulumi.Output; /** * The slug of the project environment to rotate secrets from. */ readonly environment: pulumi.Output; /** * The name of the secret rotation. */ readonly name: pulumi.Output; /** * Parameters to modify how secrets are rotated. */ readonly parameters: pulumi.Output; /** * The ID of the Infisical project to create the secret rotation in. */ readonly projectId: pulumi.Output; /** * At which UTC time the rotation should occur. */ readonly rotateAtUtc: pulumi.Output; /** * How many days to wait between each rotation. */ readonly rotationInterval: pulumi.Output; /** * The folder path to rotate secrets from. */ readonly secretPath: pulumi.Output; /** * Secret mappings to modify how secrets are rotated. */ readonly secretsMapping: pulumi.Output; /** * Temporary parameters to modify how secrets are rotated. */ readonly temporaryParameters: pulumi.Output; /** * Create a SecretRotationAzureClientSecret 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: SecretRotationAzureClientSecretArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SecretRotationAzureClientSecret resources. */ export interface SecretRotationAzureClientSecretState { /** * Whether secrets should be automatically rotated. */ autoRotationEnabled?: pulumi.Input; /** * The ID of the connection to use for the secret rotation. */ connectionId?: pulumi.Input; /** * The description of the secret rotation. */ description?: pulumi.Input; /** * The slug of the project environment to rotate secrets from. */ environment?: pulumi.Input; /** * The name of the secret rotation. */ name?: pulumi.Input; /** * Parameters to modify how secrets are rotated. */ parameters?: pulumi.Input; /** * The ID of the Infisical project to create the secret rotation in. */ projectId?: pulumi.Input; /** * At which UTC time the rotation should occur. */ rotateAtUtc?: pulumi.Input; /** * How many days to wait between each rotation. */ rotationInterval?: pulumi.Input; /** * The folder path to rotate secrets from. */ secretPath?: pulumi.Input; /** * Secret mappings to modify how secrets are rotated. */ secretsMapping?: pulumi.Input; /** * Temporary parameters to modify how secrets are rotated. */ temporaryParameters?: pulumi.Input; } /** * The set of arguments for constructing a SecretRotationAzureClientSecret resource. */ export interface SecretRotationAzureClientSecretArgs { /** * Whether secrets should be automatically rotated. */ autoRotationEnabled?: pulumi.Input; /** * The ID of the connection to use for the secret rotation. */ connectionId: pulumi.Input; /** * The description of the secret rotation. */ description?: pulumi.Input; /** * The slug of the project environment to rotate secrets from. */ environment: pulumi.Input; /** * The name of the secret rotation. */ name?: pulumi.Input; /** * Parameters to modify how secrets are rotated. */ parameters: pulumi.Input; /** * The ID of the Infisical project to create the secret rotation in. */ projectId: pulumi.Input; /** * At which UTC time the rotation should occur. */ rotateAtUtc?: pulumi.Input; /** * How many days to wait between each rotation. */ rotationInterval?: pulumi.Input; /** * The folder path to rotate secrets from. */ secretPath: pulumi.Input; /** * Secret mappings to modify how secrets are rotated. */ secretsMapping: pulumi.Input; /** * Temporary parameters to modify how secrets are rotated. */ temporaryParameters?: pulumi.Input; } //# sourceMappingURL=secretRotationAzureClientSecret.d.ts.map