cdktf-crd
Version:
49 lines (48 loc) • 1.98 kB
TypeScript
import { Construct } from "constructs";
import { Manifest, type ManifestConfig } from "@cdktn/provider-kubernetes/lib/manifest";
export declare class GeneratorsExternalSecretsIoPasswordV1alpha1 extends Manifest {
constructor(scope: Construct, id: string, config: GeneratorsExternalSecretsIoPasswordV1alpha1Config);
}
export interface GeneratorsExternalSecretsIoPasswordV1alpha1Config extends ManifestConfig {
manifest: {
apiVersion: "generators.external-secrets.io/v1alpha1";
kind: "Password";
metadata: {
annotations?: {
[key: string]: string;
};
labels?: {
[key: string]: string;
};
name: string;
namespace?: string;
};
/** @description PasswordSpec controls the behavior of the password generator. */
spec?: {
/** @description set AllowRepeat to true to allow repeating characters. */
allowRepeat: boolean;
/**
* @description Digits specifies the number of digits in the generated
* password. If omitted it defaults to 25% of the length of the password
*/
digits?: number;
/**
* @description Length of the password to be generated.
* Defaults to 24
*/
length: number;
/** @description Set NoUpper to disable uppercase characters */
noUpper: boolean;
/**
* @description SymbolCharacters specifies the special characters that should be used
* in the generated password.
*/
symbolCharacters?: string;
/**
* @description Symbols specifies the number of symbol characters in the generated
* password. If omitted it defaults to 25% of the length of the password
*/
symbols?: number;
};
};
}