mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Added logic to make SQL MIAA script to notebook with user-inputted values, and minor text changes. (#17452)
* Changed the placement of the getValue comment in IValueProvider interface. * Simplified some params values to feed into deployment notebook better. Added logic to add flags to the sql miaa create calls in notebook. Removed variablename from estimated cost. * Changed High Availability to Replicas Co-authored-by: Candice Ye <canye@microsoft.com>
This commit is contained in:
@@ -26,12 +26,12 @@ declare module 'resource-deployment' {
|
||||
|
||||
export type InputValueType = string | number | boolean | undefined;
|
||||
|
||||
/**
|
||||
* Gets a calculated value based on the given input values.
|
||||
* @param triggerValues A map of the trigger field names and their current values specified in the valueProvider field info
|
||||
*/
|
||||
export interface IValueProvider {
|
||||
readonly id: string,
|
||||
/**
|
||||
* Gets a calculated value based on the given input values.
|
||||
* @param triggerValues A map of the trigger field names and their current values specified in the valueProvider field info
|
||||
*/
|
||||
getValue(triggerValues: string | {[key: string]: InputValueType}): Promise<InputValueType>;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user