onFieldChange={onFieldChange}
propKey="key"
value={formData.key}
+ maxLength={200}
/>
<AlmBindingDefinitionFormField
help={
autoFocus={true}
help={translate('settings.almintegration.form.name.bitbucketcloud.help')}
id="name.bitbucket"
- maxLength={100}
+ maxLength={200}
onFieldChange={props.onFieldChange}
propKey="key"
value={formData.key || ''}
/>
}
id="workspace.bitbucketcloud"
- maxLength={2000}
+ maxLength={80}
onFieldChange={props.onFieldChange}
propKey="workspace"
value={formData.workspace || ''}
onFieldChange={props.onFieldChange}
propKey="clientId"
value={formData.clientId || ''}
+ maxLength={80}
/>
<AlmBindingDefinitionFormField
id="client_secret.bitbucketcloud"
autoFocus={true}
help={translate('settings.almintegration.form.name.bitbucket.help')}
id="name.bitbucket"
- maxLength={100}
+ maxLength={200}
onFieldChange={props.onFieldChange}
propKey="key"
value={formData.key || ''}
onFieldChange={onFieldChange}
propKey="key"
value={formData.key}
+ maxLength={200}
/>
<AlmBindingDefinitionFormField
help={
onFieldChange={onFieldChange}
propKey="key"
value={formData.key}
+ maxLength={200}
/>
<AlmBindingDefinitionFormField
help={
autoFocus={true}
help="settings.almintegration.form.name.azure.help"
id="name.azure"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value=""
autoFocus={true}
help="settings.almintegration.form.name.azure.help"
id="name.azure"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value="key"
autoFocus={true}
help="settings.almintegration.form.name.bitbucketcloud.help"
id="name.bitbucket"
- maxLength={100}
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value="key"
/>
}
id="workspace.bitbucketcloud"
- maxLength={2000}
+ maxLength={80}
onFieldChange={[MockFunction]}
propKey="workspace"
value="workspace"
<AlmBindingDefinitionFormField
help="settings.almintegration.form.oauth_key.bitbucketcloud.help"
id="client_id.bitbucketcloud"
+ maxLength={80}
onFieldChange={[MockFunction]}
propKey="clientId"
value="client1"
autoFocus={true}
help="settings.almintegration.form.name.bitbucket.help"
id="name.bitbucket"
- maxLength={100}
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value="key"
autoFocus={true}
help="settings.almintegration.form.name.github.help"
id="name.github"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value=""
autoFocus={true}
help="settings.almintegration.form.name.github.help"
id="name.github"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value="key"
autoFocus={true}
help="settings.almintegration.form.name.gitlab.help"
id="name.gitlab"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value=""
autoFocus={true}
help="settings.almintegration.form.name.gitlab.help"
id="name.gitlab"
+ maxLength={200}
onFieldChange={[MockFunction]}
propKey="key"
value="foo"
.setDescription("GitHub App ID");
action.createParam(PARAM_PRIVATE_KEY)
.setRequired(true)
- .setMaximumLength(2000)
+ .setMaximumLength(2500)
.setDescription("GitHub App private key");
action.createParam(PARAM_CLIENT_ID)
.setRequired(true)
.setDescription("GitHub App Client ID");
action.createParam(PARAM_CLIENT_SECRET)
.setRequired(true)
- .setMaximumLength(80)
+ .setMaximumLength(160)
.setDescription("GitHub App Client Secret");
}
.setDescription("Optional new value for an unique key of the Bitbucket Cloud setting");
action.createParam(PARAM_WORKSPACE)
.setRequired(true)
+ .setMaximumLength(80)
.setDescription("Bitbucket Cloud workspace ID");
action.createParam(PARAM_CLIENT_ID)
.setRequired(true)
- .setMaximumLength(2000)
+ .setMaximumLength(80)
.setDescription("Bitbucket Cloud Client ID");
action.createParam(PARAM_CLIENT_SECRET)
.setRequired(false)
- .setMaximumLength(2000)
+ .setMaximumLength(160)
.setDescription("Optional new value for the Bitbucket Cloud client secret");
}