kazrael2119 2023-08-23 17:15:07 +08:00 коммит произвёл GitHub
Родитель 84496e3b31
Коммит f4cd554345
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1909 изменённых файлов: 4099 добавлений и 3461 удалений

Просмотреть файл

@ -1,15 +1,21 @@
# Release History
## 32.1.0 (2023-08-08)
**Features**
## 32.0.1 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
### Other Changes
- Added operation LoadBalancers.migrateToIpBased
- Added Interface LoadBalancersMigrateToIpBasedOptionalParams
- Added Interface MigratedPools
- Added Interface MigrateLoadBalancerToIpBasedRequest
- Added Type Alias LoadBalancersMigrateToIpBasedResponse
- Added Type Alias SyncMode
- Interface BackendAddressPool has a new optional parameter syncMode
- Added Enum KnownSyncMode
- Enum KnownApplicationGatewaySkuName has a new value Basic
- Enum KnownApplicationGatewayTier has a new value Basic
## 32.0.0 (2023-07-06)
**Features**

Просмотреть файл

@ -1,5 +1,5 @@
{
"commit": "26cac4f70e9ce0e1c2f77de8303b47d1faa9ad33",
"commit": "2888f49ff0b4ce0587780b83530a7974dae71015",
"readme": "specification/network/resource-manager/readme.md",
"autorest_command": "autorest --version=3.9.3 --typescript --modelerfour.lenient-model-deduplication --azure-arm --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\network\\resource-manager\\readme.md --use=@autorest/typescript@6.0.5 --generate-sample=true",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",

Просмотреть файл

@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "js",
"TagPrefix": "js/network/arm-network",
"Tag": "js/network/arm-network_d3ef165b2c"
"Tag": "js/network/arm-network_4f05d9e7a0"
}

Просмотреть файл

@ -3,7 +3,7 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for NetworkManagementClient.",
"version": "32.0.1",
"version": "32.1.0",
"engines": {
"node": ">=14.0.0"
},
@ -120,4 +120,4 @@
"disableDocsMs": true,
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-network?view=azure-node-preview"
}
}
}

Просмотреть файл

@ -1941,6 +1941,7 @@ export interface BackendAddressPool extends SubResource {
readonly outboundRule?: SubResource;
readonly outboundRules?: SubResource[];
readonly provisioningState?: ProvisioningState;
syncMode?: SyncMode;
tunnelInterfaces?: GatewayLoadBalancerTunnelInterface[];
readonly type?: string;
virtualNetwork?: SubResource;
@ -6069,6 +6070,7 @@ export enum KnownApplicationGatewayRuleSetStatusOptions {
// @public
export enum KnownApplicationGatewaySkuName {
Basic = "Basic",
StandardLarge = "Standard_Large",
StandardMedium = "Standard_Medium",
StandardSmall = "Standard_Small",
@ -6136,6 +6138,7 @@ export enum KnownApplicationGatewaySslProtocol {
// @public
export enum KnownApplicationGatewayTier {
Basic = "Basic",
Standard = "Standard",
StandardV2 = "Standard_v2",
WAF = "WAF",
@ -7212,6 +7215,12 @@ export enum KnownSeverity {
Warning = "Warning"
}
// @public
export enum KnownSyncMode {
Automatic = "Automatic",
Manual = "Manual"
}
// @public
export enum KnownSyncRemoteAddressSpace {
True = "true"
@ -7929,6 +7938,7 @@ export interface LoadBalancers {
get(resourceGroupName: string, loadBalancerName: string, options?: LoadBalancersGetOptionalParams): Promise<LoadBalancersGetResponse>;
list(resourceGroupName: string, options?: LoadBalancersListOptionalParams): PagedAsyncIterableIterator<LoadBalancer>;
listAll(options?: LoadBalancersListAllOptionalParams): PagedAsyncIterableIterator<LoadBalancer>;
migrateToIpBased(groupName: string, loadBalancerName: string, options?: LoadBalancersMigrateToIpBasedOptionalParams): Promise<LoadBalancersMigrateToIpBasedResponse>;
updateTags(resourceGroupName: string, loadBalancerName: string, parameters: TagsObject, options?: LoadBalancersUpdateTagsOptionalParams): Promise<LoadBalancersUpdateTagsResponse>;
}
@ -8004,6 +8014,14 @@ export interface LoadBalancersListOptionalParams extends coreClient.OperationOpt
// @public
export type LoadBalancersListResponse = LoadBalancerListResult;
// @public
export interface LoadBalancersMigrateToIpBasedOptionalParams extends coreClient.OperationOptions {
parameters?: MigrateLoadBalancerToIpBasedRequest;
}
// @public
export type LoadBalancersMigrateToIpBasedResponse = MigratedPools;
// @public
export interface LoadBalancersSwapPublicIpAddressesOptionalParams extends coreClient.OperationOptions {
resumeFrom?: string;
@ -8249,6 +8267,16 @@ export interface MetricSpecification {
unit?: string;
}
// @public
export interface MigratedPools {
migratedPools?: string[];
}
// @public
export interface MigrateLoadBalancerToIpBasedRequest {
pools?: string[];
}
// @public
export interface NatGateway extends Resource {
readonly etag?: string;
@ -12890,6 +12918,9 @@ export interface SwapResourceProperties {
slotType?: SlotType;
}
// @public
export type SyncMode = string;
// @public
export type SyncRemoteAddressSpace = string;

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates an admin rule collection.
*
* @summary Creates or updates an admin rule collection.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleCollectionPut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleCollectionPut.json
*/
async function createOrUpdateAnAdminRuleCollection() {
const subscriptionId =

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Deletes an admin rule collection.
*
* @summary Deletes an admin rule collection.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleCollectionDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleCollectionDelete.json
*/
async function deletesAnAdminRuleCollection() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets a network manager security admin configuration rule collection.
*
* @summary Gets a network manager security admin configuration rule collection.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleCollectionGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleCollectionGet.json
*/
async function getsSecurityAdminRuleCollection() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all the rule collections in a security admin configuration, in a paginated format.
*
* @summary Lists all the rule collections in a security admin configuration, in a paginated format.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleCollectionList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleCollectionList.json
*/
async function listSecurityAdminRuleCollections() {
const subscriptionId =

Просмотреть файл

@ -22,7 +22,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates an admin rule.
*
* @summary Creates or updates an admin rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerDefaultAdminRulePut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerDefaultAdminRulePut.json
*/
async function createADefaultAdminRule() {
const subscriptionId =
@ -54,7 +54,7 @@ async function createADefaultAdminRule() {
* This sample demonstrates how to Creates or updates an admin rule.
*
* @summary Creates or updates an admin rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRulePut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRulePut.json
*/
async function createAnAdminRule() {
const subscriptionId =

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Deletes an admin rule.
*
* @summary Deletes an admin rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleDelete.json
*/
async function deletesAnAdminRule() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets a network manager security configuration admin rule.
*
* @summary Gets a network manager security configuration admin rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleGet.json
*/
async function getsSecurityAdminRule() {
const subscriptionId =
@ -45,7 +45,7 @@ async function getsSecurityAdminRule() {
* This sample demonstrates how to Gets a network manager security configuration admin rule.
*
* @summary Gets a network manager security configuration admin rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerDefaultAdminRuleGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerDefaultAdminRuleGet.json
*/
async function getsSecurityDefaultAdminRule() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to List all network manager security configuration admin rules.
*
* @summary List all network manager security configuration admin rules.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerAdminRuleList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerAdminRuleList.json
*/
async function listSecurityAdminRules() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified private endpoint connection on application gateway.
*
* @summary Deletes the specified private endpoint connection on application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayPrivateEndpointConnectionDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayPrivateEndpointConnectionDelete.json
*/
async function deleteApplicationGatewayPrivateEndpointConnection() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the specified private endpoint connection on application gateway.
*
* @summary Gets the specified private endpoint connection on application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayPrivateEndpointConnectionGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayPrivateEndpointConnectionGet.json
*/
async function getApplicationGatewayPrivateEndpointConnection() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all private endpoint connections on an application gateway.
*
* @summary Lists all private endpoint connections on an application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayPrivateEndpointConnectionList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayPrivateEndpointConnectionList.json
*/
async function listsAllPrivateEndpointConnectionsOnApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Updates the specified private endpoint connection on application gateway.
*
* @summary Updates the specified private endpoint connection on application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayPrivateEndpointConnectionUpdate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayPrivateEndpointConnectionUpdate.json
*/
async function updateApplicationGatewayPrivateEndpointConnection() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all private link resources on an application gateway.
*
* @summary Lists all private link resources on an application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayPrivateLinkResourceList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayPrivateLinkResourceList.json
*/
async function listsAllPrivateLinkResourcesOnApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the regional application gateway waf manifest.
*
* @summary Gets the regional application gateway waf manifest.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/GetApplicationGatewayWafDynamicManifestsDefault.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/GetApplicationGatewayWafDynamicManifestsDefault.json
*/
async function getsWafDefaultManifest() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the regional application gateway waf manifest.
*
* @summary Gets the regional application gateway waf manifest.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/GetApplicationGatewayWafDynamicManifests.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/GetApplicationGatewayWafDynamicManifests.json
*/
async function getsWafManifests() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Gets the backend health for given combination of backend pool and http setting of the specified application gateway in a resource group.
*
* @summary Gets the backend health for given combination of backend pool and http setting of the specified application gateway in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayBackendHealthTest.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayBackendHealthTest.json
*/
async function testBackendHealth() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the backend health of the specified application gateway in a resource group.
*
* @summary Gets the backend health of the specified application gateway in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayBackendHealthGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayBackendHealthGet.json
*/
async function getBackendHealth() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates the specified application gateway.
*
* @summary Creates or updates the specified application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayCreate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayCreate.json
*/
async function createApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified application gateway.
*
* @summary Deletes the specified application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayDelete.json
*/
async function deleteApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the specified application gateway.
*
* @summary Gets the specified application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayGet.json
*/
async function getApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets Ssl predefined policy with the specified policy name.
*
* @summary Gets Ssl predefined policy with the specified policy name.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableSslOptionsPredefinedPolicyGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableSslOptionsPredefinedPolicyGet.json
*/
async function getAvailableSslPredefinedPolicyByName() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the application gateways in a subscription.
*
* @summary Gets all the application gateways in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayListAll.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayListAll.json
*/
async function listsAllApplicationGatewaysInASubscription() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all available request headers.
*
* @summary Lists all available request headers.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableRequestHeadersGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableRequestHeadersGet.json
*/
async function getAvailableRequestHeaders() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all available response headers.
*
* @summary Lists all available response headers.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableResponseHeadersGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableResponseHeadersGet.json
*/
async function getAvailableResponseHeaders() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all available server variables.
*
* @summary Lists all available server variables.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableServerVariablesGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableServerVariablesGet.json
*/
async function getAvailableServerVariables() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists available Ssl options for configuring Ssl policy.
*
* @summary Lists available Ssl options for configuring Ssl policy.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableSslOptionsGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableSslOptionsGet.json
*/
async function getAvailableSslOptions() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all SSL predefined policies for configuring Ssl policy.
*
* @summary Lists all SSL predefined policies for configuring Ssl policy.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableSslOptionsPredefinedPoliciesGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableSslOptionsPredefinedPoliciesGet.json
*/
async function getAvailableSslPredefinedPolicies() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all available web application firewall rule sets.
*
* @summary Lists all available web application firewall rule sets.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayAvailableWafRuleSetsGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayAvailableWafRuleSetsGet.json
*/
async function getAvailableWafRuleSets() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all application gateways in a resource group.
*
* @summary Lists all application gateways in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayList.json
*/
async function listsAllApplicationGatewaysInAResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Starts the specified application gateway.
*
* @summary Starts the specified application gateway.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayStart.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayStart.json
*/
async function startApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Stops the specified application gateway in a resource group.
*
* @summary Stops the specified application gateway in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayStop.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayStop.json
*/
async function stopApplicationGateway() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Updates the specified application gateway tags.
*
* @summary Updates the specified application gateway tags.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationGatewayUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationGatewayUpdateTags.json
*/
async function updateApplicationGatewayTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates an application security group.
*
* @summary Creates or updates an application security group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupCreate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupCreate.json
*/
async function createApplicationSecurityGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified application security group.
*
* @summary Deletes the specified application security group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupDelete.json
*/
async function deleteApplicationSecurityGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets information about the specified application security group.
*
* @summary Gets information about the specified application security group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupGet.json
*/
async function getApplicationSecurityGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all application security groups in a subscription.
*
* @summary Gets all application security groups in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupListAll.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupListAll.json
*/
async function listAllApplicationSecurityGroups() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the application security groups in a resource group.
*
* @summary Gets all the application security groups in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupList.json
*/
async function listLoadBalancersInResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Updates an application security group's tags.
*
* @summary Updates an application security group's tags.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ApplicationSecurityGroupUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ApplicationSecurityGroupUpdateTags.json
*/
async function updateApplicationSecurityGroupTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all of the available subnet delegations for this subscription in this region.
*
* @summary Gets all of the available subnet delegations for this subscription in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailableDelegationsSubscriptionGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailableDelegationsSubscriptionGet.json
*/
async function getAvailableDelegations() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to List what values of endpoint services are available for use.
*
* @summary List what values of endpoint services are available for use.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/EndpointServicesList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/EndpointServicesList.json
*/
async function endpointServicesList() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
*
* @summary Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailablePrivateEndpointTypesResourceGroupGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailablePrivateEndpointTypesResourceGroupGet.json
*/
async function getAvailablePrivateEndpointTypesInTheResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
*
* @summary Returns all of the resource types that can be linked to a Private Endpoint in this subscription in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailablePrivateEndpointTypesGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailablePrivateEndpointTypesGet.json
*/
async function getAvailablePrivateEndpointTypes() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all of the available subnet delegations for this resource group in this region.
*
* @summary Gets all of the available subnet delegations for this resource group in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailableDelegationsResourceGroupGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailableDelegationsResourceGroupGet.json
*/
async function getAvailableDelegationsInTheResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all available service aliases for this resource group in this region.
*
* @summary Gets all available service aliases for this resource group in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailableServiceAliasesListByResourceGroup.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailableServiceAliasesListByResourceGroup.json
*/
async function getAvailableServiceAliasesInTheResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all available service aliases for this subscription in this region.
*
* @summary Gets all available service aliases for this subscription in this region.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AvailableServiceAliasesList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AvailableServiceAliasesList.json
*/
async function getAvailableServiceAliases() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subId";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the Azure Firewall FQDN Tags in a subscription.
*
* @summary Gets all the Azure Firewall FQDN Tags in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallFqdnTagsListBySubscription.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallFqdnTagsListBySubscription.json
*/
async function listAllAzureFirewallFqdnTagsForAGivenSubscription() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPut.json
*/
async function createAzureFirewall() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -132,7 +132,7 @@ async function createAzureFirewall() {
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPutWithAdditionalProperties.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPutWithAdditionalProperties.json
*/
async function createAzureFirewallWithAdditionalProperties() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -248,7 +248,7 @@ async function createAzureFirewallWithAdditionalProperties() {
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPutWithIpGroups.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPutWithIpGroups.json
*/
async function createAzureFirewallWithIPGroups() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -362,7 +362,7 @@ async function createAzureFirewallWithIPGroups() {
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPutWithZones.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPutWithZones.json
*/
async function createAzureFirewallWithZones() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -476,7 +476,7 @@ async function createAzureFirewallWithZones() {
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPutWithMgmtSubnet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPutWithMgmtSubnet.json
*/
async function createAzureFirewallWithManagementSubnet() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -601,7 +601,7 @@ async function createAzureFirewallWithManagementSubnet() {
* This sample demonstrates how to Creates or updates the specified Azure Firewall.
*
* @summary Creates or updates the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPutInHub.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPutInHub.json
*/
async function createAzureFirewallInVirtualHub() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified Azure Firewall.
*
* @summary Deletes the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallDelete.json
*/
async function deleteAzureFirewall() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the specified Azure Firewall.
*
* @summary Gets the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallGet.json
*/
async function getAzureFirewall() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -37,7 +37,7 @@ async function getAzureFirewall() {
* This sample demonstrates how to Gets the specified Azure Firewall.
*
* @summary Gets the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallGetWithAdditionalProperties.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallGetWithAdditionalProperties.json
*/
async function getAzureFirewallWithAdditionalProperties() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -56,7 +56,7 @@ async function getAzureFirewallWithAdditionalProperties() {
* This sample demonstrates how to Gets the specified Azure Firewall.
*
* @summary Gets the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallGetWithIpGroups.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallGetWithIpGroups.json
*/
async function getAzureFirewallWithIPGroups() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -75,7 +75,7 @@ async function getAzureFirewallWithIPGroups() {
* This sample demonstrates how to Gets the specified Azure Firewall.
*
* @summary Gets the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallGetWithZones.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallGetWithZones.json
*/
async function getAzureFirewallWithZones() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -94,7 +94,7 @@ async function getAzureFirewallWithZones() {
* This sample demonstrates how to Gets the specified Azure Firewall.
*
* @summary Gets the specified Azure Firewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallGetWithMgmtSubnet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallGetWithMgmtSubnet.json
*/
async function getAzureFirewallWithManagementSubnet() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the Azure Firewalls in a subscription.
*
* @summary Gets all the Azure Firewalls in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallListBySubscription.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallListBySubscription.json
*/
async function listAllAzureFirewallsForAGivenSubscription() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Retrieves a list of all IP prefixes that azure firewall has learned to not SNAT.
*
* @summary Retrieves a list of all IP prefixes that azure firewall has learned to not SNAT.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallListLearnedIPPrefixes.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallListLearnedIPPrefixes.json
*/
async function azureFirewallListLearnedPrefixes() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all Azure Firewalls in a resource group.
*
* @summary Lists all Azure Firewalls in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallListByResourceGroup.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallListByResourceGroup.json
*/
async function listAllAzureFirewallsForAGivenResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Runs a packet capture on AzureFirewall.
*
* @summary Runs a packet capture on AzureFirewall.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallPacketCapture.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallPacketCapture.json
*/
async function azureFirewallPacketCapture() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Updates tags of an Azure Firewall resource.
*
* @summary Updates tags of an Azure Firewall resource.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/AzureFirewallUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/AzureFirewallUpdateTags.json
*/
async function updateAzureFirewallTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates the specified Bastion Host.
*
* @summary Creates or updates the specified Bastion Host.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostPut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostPut.json
*/
async function createBastionHost() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified Bastion Host.
*
* @summary Deletes the specified Bastion Host.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostDelete.json
*/
async function deleteBastionHost() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the specified Bastion Host.
*
* @summary Gets the specified Bastion Host.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostGet.json
*/
async function getBastionHost() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all Bastion Hosts in a resource group.
*
* @summary Lists all Bastion Hosts in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostListByResourceGroup.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostListByResourceGroup.json
*/
async function listAllBastionHostsForAGivenResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all Bastion Hosts in a subscription.
*
* @summary Lists all Bastion Hosts in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostListBySubscription.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostListBySubscription.json
*/
async function listAllBastionHostsForAGivenSubscription() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Updates Tags for BastionHost resource
*
* @summary Updates Tags for BastionHost resource
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/BastionHostPatch.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/BastionHostPatch.json
*/
async function patchBastionHost() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the available bgp service communities.
*
* @summary Gets all the available bgp service communities.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ServiceCommunityList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ServiceCommunityList.json
*/
async function serviceCommunityList() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Checks whether a domain name in the cloudapp.azure.com zone is available for use.
*
* @summary Checks whether a domain name in the cloudapp.azure.com zone is available for use.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CheckDnsNameAvailability.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CheckDnsNameAvailability.json
*/
async function checkDnsNameAvailability() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates a ConfigurationPolicyGroup if it doesn't exist else updates the existing one.
*
* @summary Creates a ConfigurationPolicyGroup if it doesn't exist else updates the existing one.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ConfigurationPolicyGroupPut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ConfigurationPolicyGroupPut.json
*/
async function configurationPolicyGroupPut() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes a ConfigurationPolicyGroup.
*
* @summary Deletes a ConfigurationPolicyGroup.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ConfigurationPolicyGroupDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ConfigurationPolicyGroupDelete.json
*/
async function configurationPolicyGroupDelete() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Retrieves the details of a ConfigurationPolicyGroup.
*
* @summary Retrieves the details of a ConfigurationPolicyGroup.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ConfigurationPolicyGroupGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ConfigurationPolicyGroupGet.json
*/
async function configurationPolicyGroupGet() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all the configurationPolicyGroups in a resource group for a vpnServerConfiguration.
*
* @summary Lists all the configurationPolicyGroups in a resource group for a vpnServerConfiguration.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/ConfigurationPolicyGroupListByVpnServerConfiguration.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/ConfigurationPolicyGroupListByVpnServerConfiguration.json
*/
async function configurationPolicyGroupListByVpnServerConfiguration() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Create or update a connection monitor.
*
* @summary Create or update a connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorCreate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorCreate.json
*/
async function createConnectionMonitorV1() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";
@ -67,7 +67,7 @@ async function createConnectionMonitorV1() {
* This sample demonstrates how to Create or update a connection monitor.
*
* @summary Create or update a connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorV2Create.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorV2Create.json
*/
async function createConnectionMonitorV2() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified connection monitor.
*
* @summary Deletes the specified connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorDelete.json
*/
async function deleteConnectionMonitor() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets a connection monitor by name.
*
* @summary Gets a connection monitor by name.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorGet.json
*/
async function getConnectionMonitor() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all connection monitors for the specified Network Watcher.
*
* @summary Lists all connection monitors for the specified Network Watcher.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorList.json
*/
async function listConnectionMonitors() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Query a snapshot of the most recent connection states.
*
* @summary Query a snapshot of the most recent connection states.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorQuery.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorQuery.json
*/
async function queryConnectionMonitor() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Starts the specified connection monitor.
*
* @summary Starts the specified connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorStart.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorStart.json
*/
async function startConnectionMonitor() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Stops the specified connection monitor.
*
* @summary Stops the specified connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorStop.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorStop.json
*/
async function stopConnectionMonitor() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Update tags of the specified connection monitor.
*
* @summary Update tags of the specified connection monitor.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkWatcherConnectionMonitorUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkWatcherConnectionMonitorUpdateTags.json
*/
async function updateConnectionMonitorTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates/Updates a new network manager connectivity configuration
*
* @summary Creates/Updates a new network manager connectivity configuration
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerConnectivityConfigurationPut.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerConnectivityConfigurationPut.json
*/
async function connectivityConfigurationsPut() {
const subscriptionId =

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Deletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name
*
* @summary Deletes a network manager connectivity configuration, specified by the resource group, network manager name, and connectivity configuration name
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerConnectivityConfigurationDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerConnectivityConfigurationDelete.json
*/
async function connectivityConfigurationsDelete() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name
*
* @summary Gets a Network Connectivity Configuration, specified by the resource group, network manager name, and connectivity Configuration name
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerConnectivityConfigurationGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerConnectivityConfigurationGet.json
*/
async function connectivityConfigurationsGet() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Lists all the network manager connectivity configuration in a specified network manager.
*
* @summary Lists all the network manager connectivity configuration in a specified network manager.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/NetworkManagerConnectivityConfigurationList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/NetworkManagerConnectivityConfigurationList.json
*/
async function connectivityConfigurationsList() {
const subscriptionId =

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates a custom IP prefix.
*
* @summary Creates or updates a custom IP prefix.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixCreateCustomizedValues.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixCreateCustomizedValues.json
*/
async function createCustomIPPrefixAllocationMethod() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified custom IP prefix.
*
* @summary Deletes the specified custom IP prefix.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixDelete.json
*/
async function deleteCustomIPPrefix() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets the specified custom IP prefix in a specified resource group.
*
* @summary Gets the specified custom IP prefix in a specified resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixGet.json
*/
async function getCustomIPPrefix() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the custom IP prefixes in a subscription.
*
* @summary Gets all the custom IP prefixes in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixListAll.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixListAll.json
*/
async function listAllCustomIPPrefixes() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all custom IP prefixes in a resource group.
*
* @summary Gets all custom IP prefixes in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixList.json
*/
async function listResourceGroupCustomIPPrefixes() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Updates custom IP prefix tags.
*
* @summary Updates custom IP prefix tags.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/CustomIpPrefixUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/CustomIpPrefixUpdateTags.json
*/
async function updatePublicIPAddressTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates a DDoS custom policy.
*
* @summary Creates or updates a DDoS custom policy.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosCustomPolicyCreate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosCustomPolicyCreate.json
*/
async function createDDoSCustomPolicy() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified DDoS custom policy.
*
* @summary Deletes the specified DDoS custom policy.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosCustomPolicyDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosCustomPolicyDelete.json
*/
async function deleteDDoSCustomPolicy() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets information about the specified DDoS custom policy.
*
* @summary Gets information about the specified DDoS custom policy.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosCustomPolicyGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosCustomPolicyGet.json
*/
async function getDDoSCustomPolicy() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Update a DDoS custom policy tags.
*
* @summary Update a DDoS custom policy tags.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosCustomPolicyUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosCustomPolicyUpdateTags.json
*/
async function dDoSCustomPolicyUpdateTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -21,7 +21,7 @@ dotenv.config();
* This sample demonstrates how to Creates or updates a DDoS protection plan.
*
* @summary Creates or updates a DDoS protection plan.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanCreate.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanCreate.json
*/
async function createDDoSProtectionPlan() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Deletes the specified DDoS protection plan.
*
* @summary Deletes the specified DDoS protection plan.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanDelete.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanDelete.json
*/
async function deleteDDoSProtectionPlan() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets information about the specified DDoS protection plan.
*
* @summary Gets information about the specified DDoS protection plan.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanGet.json
*/
async function getDDoSProtectionPlan() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all the DDoS protection plans in a resource group.
*
* @summary Gets all the DDoS protection plans in a resource group.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanList.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanList.json
*/
async function listDDoSProtectionPlansInResourceGroup() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Gets all DDoS protection plans in a subscription.
*
* @summary Gets all DDoS protection plans in a subscription.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanListAll.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanListAll.json
*/
async function listAllDDoSProtectionPlans() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Update a DDoS protection plan tags.
*
* @summary Update a DDoS protection plan tags.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DdosProtectionPlanUpdateTags.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DdosProtectionPlanUpdateTags.json
*/
async function dDoSProtectionPlanUpdateTags() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Просмотреть файл

@ -18,7 +18,7 @@ dotenv.config();
* This sample demonstrates how to Get the specified default network security rule.
*
* @summary Get the specified default network security rule.
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-02-01/examples/DefaultSecurityRuleGet.json
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2023-04-01/examples/DefaultSecurityRuleGet.json
*/
async function defaultSecurityRuleGet() {
const subscriptionId = process.env["NETWORK_SUBSCRIPTION_ID"] || "subid";

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше