зеркало из https://github.com/Azure/autorest.az.git
* for #814 * clean * for #820 * clean * for #802 * gen output after merge Co-authored-by: Qiaoqiao Zhang <55688292+qiaozha@users.noreply.github.com>
This commit is contained in:
Родитель
0d9d62903d
Коммит
1b68eeb0db
|
@ -67,6 +67,7 @@ export class ExampleParam {
|
||||||
export class CommandExample {
|
export class CommandExample {
|
||||||
// this should be "create", "update", "list", "show", or custom name
|
// this should be "create", "update", "list", "show", or custom name
|
||||||
public Method: string;
|
public Method: string;
|
||||||
|
public Command: string;
|
||||||
public Id: string;
|
public Id: string;
|
||||||
public Title: string;
|
public Title: string;
|
||||||
public Parameters: ExampleParam[];
|
public Parameters: ExampleParam[];
|
||||||
|
@ -80,7 +81,6 @@ export class CommandExample {
|
||||||
public ExampleObj: any;
|
public ExampleObj: any;
|
||||||
public commandStringItems: string[];
|
public commandStringItems: string[];
|
||||||
public CommandString: string;
|
public CommandString: string;
|
||||||
public WaitCommandString: string;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CodeModelAz {
|
export interface CodeModelAz {
|
||||||
|
@ -267,6 +267,7 @@ export interface CodeModelAz {
|
||||||
minimum: boolean,
|
minimum: boolean,
|
||||||
step?: TestStepExampleFileRestCall,
|
step?: TestStepExampleFileRestCall,
|
||||||
): string[][];
|
): string[][];
|
||||||
|
GetExampleWait(example: CommandExample): string[];
|
||||||
SelectFirstAzExample(): boolean;
|
SelectFirstAzExample(): boolean;
|
||||||
SelectNextAzExample(): boolean;
|
SelectNextAzExample(): boolean;
|
||||||
AzExample: CommandExample;
|
AzExample: CommandExample;
|
||||||
|
|
|
@ -1148,6 +1148,14 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
return customName;
|
return customName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public get CommandGroup_ShowExample(): CommandExample {
|
||||||
|
return this.CommandGroup?.['az-show-example'];
|
||||||
|
}
|
||||||
|
|
||||||
|
public set CommandGroup_ShowExample(example: CommandExample) {
|
||||||
|
if (this.CommandGroup) this.CommandGroup['az-show-example'] = example;
|
||||||
|
}
|
||||||
|
|
||||||
// -----------------------------------------------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------------------------------------------
|
||||||
// Commands
|
// Commands
|
||||||
//
|
//
|
||||||
|
@ -3048,7 +3056,7 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
let rawValue = deepCopy(netValue);
|
let rawValue = deepCopy(netValue);
|
||||||
if (methodParam.value['isPolyOfSimple']) {
|
if (methodParam.value['isPolyOfSimple']) {
|
||||||
const keyToMatch =
|
const keyToMatch =
|
||||||
methodParam.value.schema.discriminator?.property?.language?.default?.name;
|
methodParam.value.schema.discriminator?.property?.language?.cli?.cliKey;
|
||||||
if (keyToMatch) {
|
if (keyToMatch) {
|
||||||
for (const methodParam of methodParamList) {
|
for (const methodParam of methodParamList) {
|
||||||
const polySubParamObj = methodParam.value;
|
const polySubParamObj = methodParam.value;
|
||||||
|
@ -3232,7 +3240,12 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
Object.entries(this.Examples).forEach(([id, exampleObj]) => {
|
Object.entries(this.Examples).forEach(([id, exampleObj]) => {
|
||||||
if (includeGenerated || !isGeneratedExampleId(id)) {
|
if (includeGenerated || !isGeneratedExampleId(id)) {
|
||||||
const example = this.CreateCommandExample(id, exampleObj);
|
const example = this.CreateCommandExample(id, exampleObj);
|
||||||
if (!isNullOrUndefined(example)) examples.push(example);
|
if (!isNullOrUndefined(example)) {
|
||||||
|
examples.push(example);
|
||||||
|
if (this.Command_MethodName === 'show') {
|
||||||
|
this.CommandGroup_ShowExample = example;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -3267,6 +3280,7 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
|
|
||||||
const example = new CommandExample();
|
const example = new CommandExample();
|
||||||
example.Method = this.Command_MethodName;
|
example.Method = this.Command_MethodName;
|
||||||
|
example.Command = this.Command_Name;
|
||||||
example.Id = `/${this.CommandGroup_Key}/${this.Method_HttpMethod}/${id}`;
|
example.Id = `/${this.CommandGroup_Key}/${this.Method_HttpMethod}/${id}`;
|
||||||
example.Title = exampleObj.title || id;
|
example.Title = exampleObj.title || id;
|
||||||
example.Path = this.Method_Path;
|
example.Path = this.Method_Path;
|
||||||
|
@ -3295,7 +3309,6 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
}
|
}
|
||||||
example.commandStringItems = this.GetExampleItems(example, false, undefined);
|
example.commandStringItems = this.GetExampleItems(example, false, undefined);
|
||||||
example.CommandString = example.commandStringItems.join(' ');
|
example.CommandString = example.commandStringItems.join(' ');
|
||||||
example.WaitCommandString = this.GetExampleWait(example).join(' ');
|
|
||||||
return example;
|
return example;
|
||||||
}
|
}
|
||||||
return undefined;
|
return undefined;
|
||||||
|
@ -3435,16 +3448,23 @@ export class CodeModelCliImpl implements CodeModelAz {
|
||||||
return property?.language?.['cli']?.cliKey === 'provisioningState';
|
return property?.language?.['cli']?.cliKey === 'provisioningState';
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
let words = this.Command_Name.split(' ');
|
const showExample = this.CommandGroup_ShowExample;
|
||||||
|
if (isNullOrUndefined(showExample)) return [];
|
||||||
|
let words = showExample.Command.split(' ');
|
||||||
words = words.slice(0, words.length - 1);
|
words = words.slice(0, words.length - 1);
|
||||||
words.push('wait');
|
words.push('wait');
|
||||||
parameters.push(`az ${words.join(' ')} --created`);
|
parameters.push(`az ${words.join(' ')} --created`);
|
||||||
for (const param of example.Parameters) {
|
for (const param of example.Parameters) {
|
||||||
const paramKey = param.methodParam.value.language?.['cli']?.cliKey;
|
const paramKey = param.methodParam.value.language?.['cli']?.cliKey;
|
||||||
if (
|
if (
|
||||||
paramKey === 'resourceGroupName' ||
|
showExample.Parameters.some((showParam) => {
|
||||||
this.resourcePool.isResource(paramKey, param.rawValue) ===
|
return (
|
||||||
example.ResourceClassName
|
showParam.methodParam.value.language?.['cli']?.cliKey ==
|
||||||
|
param.methodParam.value.language?.['cli']?.cliKey &&
|
||||||
|
showParam.methodParam.value.language?.['default']?.cliKey ==
|
||||||
|
param.methodParam.value.language?.['default']?.cliKey
|
||||||
|
);
|
||||||
|
})
|
||||||
) {
|
) {
|
||||||
let paramValue = param.value;
|
let paramValue = param.value;
|
||||||
let replacedValue = this.resourcePool.addParamResource(
|
let replacedValue = this.resourcePool.addParamResource(
|
||||||
|
|
|
@ -65,7 +65,7 @@ export class CliTopAction extends TemplateBase {
|
||||||
const keepLineIdx = keepHeaderLines(baseSplit);
|
const keepLineIdx = keepHeaderLines(baseSplit);
|
||||||
let hasLoadLogic = false;
|
let hasLoadLogic = false;
|
||||||
if (skipLineIdx !== -1) {
|
if (skipLineIdx !== -1) {
|
||||||
for (let i: number = skipLineIdx + 1; i < baseSplit.length; ++i) {
|
for (let i: number = skipLineIdx; i < baseSplit.length; ++i) {
|
||||||
if (baseSplit[i].indexOf('from .generated.action import *') > -1) {
|
if (baseSplit[i].indexOf('from .generated.action import *') > -1) {
|
||||||
hasLoadLogic = true;
|
hasLoadLogic = true;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -58,7 +58,7 @@ export class CliTopCustom extends TemplateBase {
|
||||||
const keepLineIdx = keepHeaderLines(baseSplit);
|
const keepLineIdx = keepHeaderLines(baseSplit);
|
||||||
let hasLoadLogic = false;
|
let hasLoadLogic = false;
|
||||||
if (skipLineIdx !== -1) {
|
if (skipLineIdx !== -1) {
|
||||||
for (let i: number = skipLineIdx + 1; i < baseSplit.length; ++i) {
|
for (let i: number = skipLineIdx; i < baseSplit.length; ++i) {
|
||||||
if (baseSplit[i].indexOf('from .generated.custom import *') > -1) {
|
if (baseSplit[i].indexOf('from .generated.custom import *') > -1) {
|
||||||
hasLoadLogic = true;
|
hasLoadLogic = true;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -53,7 +53,7 @@ export class CliTopHelp extends TemplateBase {
|
||||||
|
|
||||||
let hasLoadLogic = false;
|
let hasLoadLogic = false;
|
||||||
if (skipLineIdx !== -1) {
|
if (skipLineIdx !== -1) {
|
||||||
for (let i: number = skipLineIdx + 1; i < baseSplit.length; ++i) {
|
for (let i: number = skipLineIdx; i < baseSplit.length; ++i) {
|
||||||
if (baseSplit[i].indexOf('from .generated._help import helps') > -1) {
|
if (baseSplit[i].indexOf('from .generated._help import helps') > -1) {
|
||||||
hasLoadLogic = true;
|
hasLoadLogic = true;
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -62,12 +62,10 @@ export class CliExtReadme extends TemplateBase {
|
||||||
const temp = CmdToMultiLines(example.CommandString);
|
const temp = CmdToMultiLines(example.CommandString);
|
||||||
exampleCommandList.push(...temp);
|
exampleCommandList.push(...temp);
|
||||||
}
|
}
|
||||||
if (
|
const waitCommandString = this.model.GetExampleWait(example).join(' ');
|
||||||
!isNullOrUndefined(example.WaitCommandString) &&
|
if (!isNullOrUndefined(waitCommandString) && waitCommandString !== '') {
|
||||||
example.WaitCommandString !== ''
|
|
||||||
) {
|
|
||||||
exampleCommandList.push('');
|
exampleCommandList.push('');
|
||||||
const temp = CmdToMultiLines(example.WaitCommandString);
|
const temp = CmdToMultiLines(waitCommandString);
|
||||||
exampleCommandList.push(...temp);
|
exampleCommandList.push(...temp);
|
||||||
}
|
}
|
||||||
exampleCommandList.push('```');
|
exampleCommandList.push('```');
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#
|
#
|
||||||
# Generation mode: Incremental
|
# Generation mode: Incremental
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
from .generated.action import * # noqa: F403
|
from .generated.action import * # noqa: F403
|
||||||
try:
|
try:
|
||||||
from .manual.action import * # noqa: F403
|
from .manual.action import * # noqa: F403
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#
|
#
|
||||||
# Generation mode: Incremental
|
# Generation mode: Incremental
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
|
||||||
from .generated.action import * # noqa: F403
|
from .generated.action import * # noqa: F403
|
||||||
try:
|
try:
|
||||||
from .manual.action import * # noqa: F403
|
from .manual.action import * # noqa: F403
|
||||||
|
|
|
@ -29,6 +29,7 @@ def step_attached_database_configuration_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az kusto attached-database-configuration wait --created '
|
test.cmd('az kusto attached-database-configuration wait --created '
|
||||||
'--name "{myAttachedDatabaseConfiguration2}" '
|
'--name "{myAttachedDatabaseConfiguration2}" '
|
||||||
|
'--cluster-name "{myCluster}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
|
@ -29,6 +29,7 @@ def step_attached_database_configuration_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az kusto attached-database-configuration wait --created '
|
test.cmd('az kusto attached-database-configuration wait --created '
|
||||||
'--name "{myAttachedDatabaseConfiguration2}" '
|
'--name "{myAttachedDatabaseConfiguration2}" '
|
||||||
|
'--cluster-name "{myCluster}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
|
@ -177,7 +177,7 @@ az kusto attached-database-configuration create --name "attachedDatabaseConfigur
|
||||||
--database-name "kustodatabase" --default-principals-modification-kind "Union" --resource-group "kustorptest"
|
--database-name "kustodatabase" --default-principals-modification-kind "Union" --resource-group "kustorptest"
|
||||||
|
|
||||||
az kusto attached-database-configuration wait --created --name "{myAttachedDatabaseConfiguration2}" \
|
az kusto attached-database-configuration wait --created --name "{myAttachedDatabaseConfiguration2}" \
|
||||||
--resource-group "{rg}"
|
--cluster-name "{myCluster}" --resource-group "{rg}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -29,6 +29,7 @@ def step_attached_database_configuration_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az kusto attached-database-configuration wait --created '
|
test.cmd('az kusto attached-database-configuration wait --created '
|
||||||
'--name "{myAttachedDatabaseConfiguration2}" '
|
'--name "{myAttachedDatabaseConfiguration2}" '
|
||||||
|
'--cluster-name "{myCluster}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
|
@ -177,7 +177,7 @@ az kusto attached-database-configuration create --name "attachedDatabaseConfigur
|
||||||
--database-name "kustodatabase" --default-principals-modification-kind "Union" --resource-group "kustorptest"
|
--database-name "kustodatabase" --default-principals-modification-kind "Union" --resource-group "kustorptest"
|
||||||
|
|
||||||
az kusto attached-database-configuration wait --created --name "{myAttachedDatabaseConfiguration2}" \
|
az kusto attached-database-configuration wait --created --name "{myAttachedDatabaseConfiguration2}" \
|
||||||
--resource-group "{rg}"
|
--cluster-name "{myCluster}" --resource-group "{rg}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -29,6 +29,7 @@ def step_attached_database_configuration_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az kusto attached-database-configuration wait --created '
|
test.cmd('az kusto attached-database-configuration wait --created '
|
||||||
'--name "{myAttachedDatabaseConfiguration2}" '
|
'--name "{myAttachedDatabaseConfiguration2}" '
|
||||||
|
'--cluster-name "{myCluster}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,8 @@ az managed-network mn group create --management-groups "[]" \
|
||||||
--virtual-networks id="/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB" \
|
--virtual-networks id="/subscriptionB/resourceGroups/myResourceGroup/providers/Microsoft.Network/virtualNetworks/VnetB" \
|
||||||
--group-name "myManagedNetworkGroup" --managed-network-name "myManagedNetwork" --resource-group "myResourceGroup"
|
--group-name "myManagedNetworkGroup" --managed-network-name "myManagedNetwork" --resource-group "myResourceGroup"
|
||||||
|
|
||||||
az managed-network mn group wait --created --group-name "{myManagedNetworkGroup}" --resource-group "{rg}"
|
az managed-network mn group wait --created --group-name "{myManagedNetworkGroup}" \
|
||||||
|
--managed-network-name "{myManagedNetwork}" --resource-group "{rg}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -115,6 +115,7 @@ def step_mn_group_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az managed-network mn group wait --created '
|
test.cmd('az managed-network mn group wait --created '
|
||||||
'--group-name "{myManagedNetworkGroup}" '
|
'--group-name "{myManagedNetworkGroup}" '
|
||||||
|
'--managed-network-name "{myManagedNetwork}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
@ -129,6 +130,7 @@ def step_mn_group_create_min(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az managed-network mn group wait --created '
|
test.cmd('az managed-network mn group wait --created '
|
||||||
'--group-name "{myManagedNetworkGroup}" '
|
'--group-name "{myManagedNetworkGroup}" '
|
||||||
|
'--managed-network-name "{myManagedNetwork}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
|
@ -104,7 +104,8 @@ def step_big_data_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse big-data-pool wait --created '
|
test.cmd('az synapse big-data-pool wait --created '
|
||||||
'--name "{myBigDataPool}" '
|
'--name "{myBigDataPool}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -504,7 +505,8 @@ def step_private_endpoint_connection_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse private-endpoint-connection wait --created '
|
test.cmd('az synapse private-endpoint-connection wait --created '
|
||||||
'--name "{myPrivateEndpointConnection}" '
|
'--name "{myPrivateEndpointConnection}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -642,7 +644,8 @@ def step_sql_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse sql-pool wait --created '
|
test.cmd('az synapse sql-pool wait --created '
|
||||||
'--resource-group "{rg}" '
|
'--resource-group "{rg}" '
|
||||||
'--name "{mySqlPool2}"',
|
'--name "{mySqlPool2}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,8 @@ az synapse big-data-pool create --location "West US 2" --auto-pause delay-in-min
|
||||||
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
||||||
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}"
|
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
@ -82,7 +83,7 @@ az synapse sql-pool create --resource-group "ExampleResourceGroup" --location "W
|
||||||
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
||||||
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}"
|
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}" --workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### List #####
|
##### List #####
|
||||||
```
|
```
|
||||||
|
@ -546,7 +547,8 @@ az synapse private-link-resource show --name "sql" --resource-group "ExampleReso
|
||||||
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
||||||
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}"
|
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -104,7 +104,8 @@ def step_big_data_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse big-data-pool wait --created '
|
test.cmd('az synapse big-data-pool wait --created '
|
||||||
'--name "{myBigDataPool}" '
|
'--name "{myBigDataPool}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -504,7 +505,8 @@ def step_private_endpoint_connection_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse private-endpoint-connection wait --created '
|
test.cmd('az synapse private-endpoint-connection wait --created '
|
||||||
'--name "{myPrivateEndpointConnection}" '
|
'--name "{myPrivateEndpointConnection}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -642,7 +644,8 @@ def step_sql_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse sql-pool wait --created '
|
test.cmd('az synapse sql-pool wait --created '
|
||||||
'--resource-group "{rg}" '
|
'--resource-group "{rg}" '
|
||||||
'--name "{mySqlPool2}"',
|
'--name "{mySqlPool2}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,8 @@ az synapse big-data-pool create --location "West US 2" --auto-pause delay-in-min
|
||||||
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
||||||
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}"
|
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
@ -82,7 +83,7 @@ az synapse sql-pool create --resource-group "ExampleResourceGroup" --location "W
|
||||||
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
||||||
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}"
|
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}" --workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### List #####
|
##### List #####
|
||||||
```
|
```
|
||||||
|
@ -546,7 +547,8 @@ az synapse private-link-resource show --name "sql" --resource-group "ExampleReso
|
||||||
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
||||||
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}"
|
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -104,7 +104,8 @@ def step_big_data_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse big-data-pool wait --created '
|
test.cmd('az synapse big-data-pool wait --created '
|
||||||
'--name "{myBigDataPool}" '
|
'--name "{myBigDataPool}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -504,7 +505,8 @@ def step_private_endpoint_connection_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse private-endpoint-connection wait --created '
|
test.cmd('az synapse private-endpoint-connection wait --created '
|
||||||
'--name "{myPrivateEndpointConnection}" '
|
'--name "{myPrivateEndpointConnection}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -642,7 +644,8 @@ def step_sql_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse sql-pool wait --created '
|
test.cmd('az synapse sql-pool wait --created '
|
||||||
'--resource-group "{rg}" '
|
'--resource-group "{rg}" '
|
||||||
'--name "{mySqlPool2}"',
|
'--name "{mySqlPool2}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,8 @@ az synapse big-data-pool create --location "West US 2" --auto-pause delay-in-min
|
||||||
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
--node-size-family "MemoryOptimized" --spark-events-folder "/events" --spark-version "2.4" --tags key="value" \
|
||||||
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--name "ExamplePool" --resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}"
|
az synapse big-data-pool wait --created --name "{myBigDataPool}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
@ -82,7 +83,7 @@ az synapse sql-pool create --resource-group "ExampleResourceGroup" --location "W
|
||||||
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
--restore-point-in-time "1970-01-01T00:00:00.000Z" --source-database-id "" --sku name="" tier="" \
|
||||||
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
--name "ExampleSqlPool" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}"
|
az synapse sql-pool wait --created --resource-group "{rg}" --name "{mySqlPool2}" --workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### List #####
|
##### List #####
|
||||||
```
|
```
|
||||||
|
@ -546,7 +547,8 @@ az synapse private-link-resource show --name "sql" --resource-group "ExampleReso
|
||||||
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
az synapse private-endpoint-connection create --name "ExamplePrivateEndpointConnection" \
|
||||||
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
--resource-group "ExampleResourceGroup" --workspace-name "ExampleWorkspace"
|
||||||
|
|
||||||
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}"
|
az synapse private-endpoint-connection wait --created --name "{myPrivateEndpointConnection}" --resource-group "{rg}" \
|
||||||
|
--workspace-name "{myWorkspace}"
|
||||||
```
|
```
|
||||||
##### Show #####
|
##### Show #####
|
||||||
```
|
```
|
||||||
|
|
|
@ -104,7 +104,8 @@ def step_big_data_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse big-data-pool wait --created '
|
test.cmd('az synapse big-data-pool wait --created '
|
||||||
'--name "{myBigDataPool}" '
|
'--name "{myBigDataPool}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -504,7 +505,8 @@ def step_private_endpoint_connection_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse private-endpoint-connection wait --created '
|
test.cmd('az synapse private-endpoint-connection wait --created '
|
||||||
'--name "{myPrivateEndpointConnection}" '
|
'--name "{myPrivateEndpointConnection}" '
|
||||||
'--resource-group "{rg}"',
|
'--resource-group "{rg}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
@ -642,7 +644,8 @@ def step_sql_pool_create(test, checks=None):
|
||||||
checks=[])
|
checks=[])
|
||||||
test.cmd('az synapse sql-pool wait --created '
|
test.cmd('az synapse sql-pool wait --created '
|
||||||
'--resource-group "{rg}" '
|
'--resource-group "{rg}" '
|
||||||
'--name "{mySqlPool2}"',
|
'--name "{mySqlPool2}" '
|
||||||
|
'--workspace-name "{myWorkspace}"',
|
||||||
checks=checks)
|
checks=checks)
|
||||||
|
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче