mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-04-03 16:39:09 +01:00
165 lines
4.7 KiB
HTML
165 lines
4.7 KiB
HTML
<div>
|
|
<div>
|
|
<p class="pkPadding">
|
|
<!-- ko if: showAsMandatory -->
|
|
<span class="mandatoryStar">*</span>
|
|
<!-- /ko -->
|
|
|
|
<span data-bind="text: label"></span>
|
|
|
|
<!-- ko if: infoBubbleText -->
|
|
<span class="infoTooltip" role="tooltip" tabindex="0">
|
|
<img class="infoImg" src="../../../../images/info-bubble.svg" alt="More information" />
|
|
<span data-bind="text: infoBubbleText" class="tooltiptext throughputRuInfo"></span>
|
|
</span>
|
|
<!-- /ko -->
|
|
</p>
|
|
</div>
|
|
|
|
<!-- ko if: !isFixed -->
|
|
<div data-bind="visible: showAutoPilot" class="throughputModeContainer">
|
|
<input
|
|
class="throughputModeRadio"
|
|
aria-label="Autopilot mode"
|
|
type="radio"
|
|
role="radio"
|
|
tabindex="0"
|
|
data-bind="
|
|
checked: isAutoPilotSelected,
|
|
checkedValue: true,
|
|
attr: {
|
|
id: throughputAutoPilotRadioId,
|
|
name: throughputModeRadioName,
|
|
'aria-checked': isAutoPilotSelected() ? 'true' : 'false'
|
|
}"
|
|
/>
|
|
<span
|
|
class="throughputModeSpace"
|
|
data-bind="
|
|
attr: {
|
|
for: throughputAutoPilotRadioId
|
|
}"
|
|
>Autoscale
|
|
</span>
|
|
|
|
<input
|
|
class="throughputModeRadio nonFirstRadio"
|
|
aria-label="Provisioned Throughput mode"
|
|
type="radio"
|
|
role="radio"
|
|
tabindex="0"
|
|
data-bind="
|
|
checked: isAutoPilotSelected,
|
|
checkedValue: false,
|
|
attr: {
|
|
id: throughputProvisionedRadioId,
|
|
name: throughputModeRadioName,
|
|
'aria-checked': !isAutoPilotSelected() ? 'true' : 'false'
|
|
}"
|
|
/>
|
|
<span
|
|
class="throughputModeSpace"
|
|
data-bind="attr: {
|
|
for: throughputProvisionedRadioId
|
|
}"
|
|
>Manual
|
|
</span>
|
|
</div>
|
|
<!-- /ko -->
|
|
|
|
<div data-bind="visible: isAutoPilotSelected">
|
|
<p>
|
|
<span
|
|
>Provision maximum RU/s required by this resource. Estimate your required RU/s with
|
|
<a target="_blank" href="https://cosmos.azure.com/capacitycalculator/">capacity calculator</a>.</span
|
|
>
|
|
</p>
|
|
<p>
|
|
<span>Max RU/s</span>
|
|
</p>
|
|
<input
|
|
type="number"
|
|
data-bind="textInput: overrideWithProvisionedThroughputSettings() ? '' : maxAutoPilotThroughputSet, attr:{disabled: overrideWithProvisionedThroughputSettings(), step: step, 'class':'migration collid select-font-size', min: minAutoPilotThroughput, css: {
|
|
dirty: maxAutoPilotThroughputSet.editableIsDirty
|
|
}}"
|
|
/>
|
|
<p data-bind="visible: overrideWithProvisionedThroughputSettings && !overrideWithProvisionedThroughputSettings()">
|
|
<span
|
|
data-bind="
|
|
html: autoPilotUsageCost"
|
|
></span>
|
|
</p>
|
|
<p
|
|
data-bind="visible: costsVisible && overrideWithProvisionedThroughputSettings && !overrideWithProvisionedThroughputSettings()"
|
|
>
|
|
<span data-bind="html: requestUnitsUsageCost"></span>
|
|
</p>
|
|
|
|
<!-- ko if: spendAckVisible -->
|
|
<p class="pkPadding">
|
|
<input
|
|
type="checkbox"
|
|
aria-label="acknowledge spend throughput"
|
|
data-bind="
|
|
attr: {
|
|
title: spendAckText,
|
|
id: spendAckId
|
|
},
|
|
checked: spendAckChecked"
|
|
/>
|
|
<span data-bind="text: spendAckText, attr: { for: spendAckId }"></span>
|
|
</p>
|
|
<!-- /ko -->
|
|
</div>
|
|
|
|
<div data-bind="visible: !isAutoPilotSelected()">
|
|
<div data-bind="setTemplateReady: true">
|
|
<p class="addContainerThroughputInput">
|
|
<input
|
|
type="number"
|
|
required
|
|
data-bind="
|
|
textInput: overrideWithAutoPilotSettings() ? maxAutoPilotThroughputSet : value,
|
|
css: {
|
|
dirty: value.editableIsDirty
|
|
},
|
|
enable: isEnabled,
|
|
attr:{
|
|
'data-test': testId,
|
|
'class': cssClass,
|
|
step: step,
|
|
min: minimum,
|
|
max: canExceedMaximumValue() ? null : maximum,
|
|
'aria-label': ariaLabel,
|
|
disabled: overrideWithAutoPilotSettings()
|
|
}"
|
|
/>
|
|
</p>
|
|
</div>
|
|
|
|
<p data-bind="visible: costsVisible">
|
|
<span data-bind="html: requestUnitsUsageCost"></span>
|
|
</p>
|
|
|
|
<!-- ko if: spendAckVisible -->
|
|
<p class="pkPadding">
|
|
<input
|
|
type="checkbox"
|
|
aria-label="acknowledge spend throughput"
|
|
data-bind="
|
|
attr: {
|
|
title: spendAckText,
|
|
id: spendAckId
|
|
},
|
|
checked: spendAckChecked"
|
|
/>
|
|
<span data-bind="text: spendAckText, attr: { for: spendAckId }"></span>
|
|
</p>
|
|
<!-- /ko -->
|
|
|
|
<!-- ko if: isFixed -->
|
|
<p>Choose unlimited storage capacity for more than 10,000 RU/s.</p>
|
|
<!-- /ko -->
|
|
</div>
|
|
</div>
|