params.TextInput interface
Stay organized with collections
Save and categorize content based on your preferences.
Specifies that a parameter's value should be determined by prompting the user to type it in interactively at deploy time. Input that does not match the provided validationRegex, if present, will be retried.
Signature:
export interface TextInput<T = unknown>
Properties
Property |
Type |
Description |
text |
{ example?: string; validationRegex?: string | RegExp; validationErrorMessage?: string; } |
|
params.TextInput.text
Signature:
text: {
example?: string;
validationRegex?: string | RegExp;
validationErrorMessage?: string;
};
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-02-09 UTC.
[null,null,["Last updated 2024-02-09 UTC."],[],[],null,["Specifies that a parameter's value should be determined by prompting the user to type it in interactively at deploy time. Input that does not match the provided validationRegex, if present, will be retried.\n\n**Signature:** \n\n export interface TextInput\u003cT = unknown\u003e \n\nProperties\n\nparams.TextInput.text\n\n**Signature:** \n\n text: {\n example?: string;\n validationRegex?: string | RegExp;\n validationErrorMessage?: string;\n };"]]