From 439d04b9473b40e690d0e91c1c2fadb6f6773491 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Wed, 29 Nov 2023 16:54:20 +0800 Subject: [PATCH 01/16] [mgmt]fix sample issue --- .../samples-dev/monitorsCreateSample.ts | 23 ++++++++++++++++++- ...itoredSubscriptionsCreateorUpdateSample.js | 2 +- .../monitoredSubscriptionsDeleteSample.js | 2 +- .../monitoredSubscriptionsGetSample.js | 2 +- .../monitoredSubscriptionsUpdateSample.js | 2 +- .../v3/javascript/monitorsCreateSample.js | 22 +++++++++++++++++- .../samples/v3/javascript/package.json | 2 +- ...ignOnConfigurationsCreateOrUpdateSample.js | 2 +- .../singleSignOnConfigurationsGetSample.js | 2 +- .../samples/v3/typescript/package.json | 2 +- .../v3/typescript/src/monitorsCreateSample.ts | 23 ++++++++++++++++++- 11 files changed, 73 insertions(+), 11 deletions(-) diff --git a/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts b/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts index fe579aff0208..052c39cc8127 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts @@ -31,7 +31,28 @@ async function monitorsCreate() { const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginCreateAndWait( resourceGroupName, - monitorName + monitorName, + { + body: { + properties: { + datadogOrganizationProperties: { + name: "testdatadogOrganization" + }, + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890" + } + }, + sku: { + name: "free_Monthly" + }, + identity: { + type: "SystemAssigned" + }, + location: "West US 2" + } + } ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js index 6ca5251d6adc..05bf2bb789db 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js @@ -29,7 +29,7 @@ async function monitorsAddMonitoredSubscriptions() { const result = await client.monitoredSubscriptions.beginCreateorUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsDeleteSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsDeleteSample.js index 5c096fd9fb18..247f6d0e551d 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsDeleteSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsDeleteSample.js @@ -29,7 +29,7 @@ async function monitorsDeleteMonitoredSubscriptions() { const result = await client.monitoredSubscriptions.beginDeleteAndWait( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsGetSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsGetSample.js index 728eb87c6956..78064a3841e6 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsGetSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsGetSample.js @@ -29,7 +29,7 @@ async function monitorsGetMonitoredSubscriptions() { const result = await client.monitoredSubscriptions.get( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js index a7d171c4f7e3..9f1a862e7622 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js @@ -29,7 +29,7 @@ async function monitorsUpdateMonitoredSubscriptions() { const result = await client.monitoredSubscriptions.beginUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js index 664b511970a7..da7b5f6ebfbf 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js @@ -25,7 +25,27 @@ async function monitorsCreate() { const monitorName = "myMonitor"; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.monitors.beginCreateAndWait(resourceGroupName, monitorName); + const result = await client.monitors.beginCreateAndWait(resourceGroupName, monitorName, { + body: { + properties: { + datadogOrganizationProperties: { + name: "testdatadogOrganization", + }, + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890", + }, + }, + sku: { + name: "free_Monthly", + }, + identity: { + type: "SystemAssigned", + }, + location: "West US 2", + }, + }); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/package.json b/sdk/datadog/arm-datadog/samples/v3/javascript/package.json index 852fe7fbc91b..de3b488f3205 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/package.json +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-datadog": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" } } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js index 8df51420a59f..a9d91ffe415e 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js @@ -29,7 +29,7 @@ async function singleSignOnConfigurationsCreateOrUpdate() { const result = await client.singleSignOnConfigurations.beginCreateOrUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsGetSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsGetSample.js index 51078a7c9a6f..e41e661da0c7 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsGetSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsGetSample.js @@ -29,7 +29,7 @@ async function singleSignOnConfigurationsGet() { const result = await client.singleSignOnConfigurations.get( resourceGroupName, monitorName, - configurationName + configurationName, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/package.json b/sdk/datadog/arm-datadog/samples/v3/typescript/package.json index 720c09208464..e8ad949e6cb6 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/package.json +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-datadog": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts index fe579aff0208..052c39cc8127 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts @@ -31,7 +31,28 @@ async function monitorsCreate() { const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginCreateAndWait( resourceGroupName, - monitorName + monitorName, + { + body: { + properties: { + datadogOrganizationProperties: { + name: "testdatadogOrganization" + }, + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890" + } + }, + sku: { + name: "free_Monthly" + }, + identity: { + type: "SystemAssigned" + }, + location: "West US 2" + } + } ); console.log(result); } From 4b98207a4bd9be34d39f288af7d84d7de8fd5fa1 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:00:23 +0800 Subject: [PATCH 02/16] update --- .../arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts | 2 +- .../netAppResourceCheckNameAvailabilitySample.ts | 2 +- .../samples/v19/javascript/accountsCreateOrUpdateSample.js | 6 +++--- .../samples/v19/javascript/backupPoliciesCreateSample.js | 2 +- .../samples/v19/javascript/backupPoliciesDeleteSample.js | 2 +- .../samples/v19/javascript/backupPoliciesUpdateSample.js | 2 +- .../v19/javascript/backupsGetVolumeRestoreStatusSample.js | 2 +- .../javascript/netAppResourceCheckNameAvailabilitySample.js | 4 ++-- .../netAppResourceCheckQuotaAvailabilitySample.js | 2 +- .../netAppResourceQueryNetworkSiblingSetSample.js | 2 +- .../netAppResourceUpdateNetworkSiblingSetSample.js | 2 +- sdk/netapp/arm-netapp/samples/v19/javascript/package.json | 2 +- .../samples/v19/javascript/poolsCreateOrUpdateSample.js | 2 +- .../arm-netapp/samples/v19/javascript/poolsUpdateSample.js | 2 +- .../samples/v19/javascript/snapshotPoliciesCreateSample.js | 2 +- .../samples/v19/javascript/snapshotPoliciesDeleteSample.js | 2 +- .../samples/v19/javascript/snapshotPoliciesGetSample.js | 2 +- .../v19/javascript/snapshotPoliciesListVolumesSample.js | 2 +- .../samples/v19/javascript/snapshotPoliciesUpdateSample.js | 2 +- .../samples/v19/javascript/snapshotsCreateSample.js | 2 +- .../samples/v19/javascript/snapshotsDeleteSample.js | 2 +- .../arm-netapp/samples/v19/javascript/snapshotsGetSample.js | 2 +- .../samples/v19/javascript/snapshotsListSample.js | 2 +- .../samples/v19/javascript/snapshotsRestoreFilesSample.js | 2 +- .../samples/v19/javascript/snapshotsUpdateSample.js | 2 +- .../samples/v19/javascript/subvolumesCreateSample.js | 2 +- .../samples/v19/javascript/subvolumesDeleteSample.js | 2 +- .../samples/v19/javascript/subvolumesGetMetadataSample.js | 2 +- .../samples/v19/javascript/subvolumesGetSample.js | 2 +- .../samples/v19/javascript/subvolumesListByVolumeSample.js | 2 +- .../samples/v19/javascript/subvolumesUpdateSample.js | 2 +- .../samples/v19/javascript/volumeGroupsCreateSample.js | 4 ++-- .../samples/v19/javascript/volumeGroupsDeleteSample.js | 2 +- .../samples/v19/javascript/volumeQuotaRulesCreateSample.js | 2 +- .../samples/v19/javascript/volumeQuotaRulesDeleteSample.js | 2 +- .../samples/v19/javascript/volumeQuotaRulesGetSample.js | 2 +- .../v19/javascript/volumeQuotaRulesListByVolumeSample.js | 2 +- .../samples/v19/javascript/volumeQuotaRulesUpdateSample.js | 2 +- .../v19/javascript/volumesAuthorizeReplicationSample.js | 2 +- .../samples/v19/javascript/volumesBreakFileLocksSample.js | 2 +- .../samples/v19/javascript/volumesBreakReplicationSample.js | 2 +- .../samples/v19/javascript/volumesCreateOrUpdateSample.js | 2 +- .../v19/javascript/volumesDeleteReplicationSample.js | 2 +- .../samples/v19/javascript/volumesDeleteSample.js | 2 +- .../v19/javascript/volumesFinalizeRelocationSample.js | 2 +- .../volumesListGetGroupIdListForLdapUserSample.js | 2 +- .../samples/v19/javascript/volumesListReplicationsSample.js | 2 +- .../samples/v19/javascript/volumesPoolChangeSample.js | 2 +- .../v19/javascript/volumesPopulateAvailabilityZoneSample.js | 2 +- .../v19/javascript/volumesReInitializeReplicationSample.js | 2 +- .../v19/javascript/volumesReestablishReplicationSample.js | 2 +- .../samples/v19/javascript/volumesRelocateSample.js | 2 +- .../v19/javascript/volumesReplicationStatusSample.js | 2 +- .../v19/javascript/volumesResetCifsPasswordSample.js | 2 +- .../v19/javascript/volumesResyncReplicationSample.js | 2 +- .../samples/v19/javascript/volumesRevertRelocationSample.js | 2 +- .../samples/v19/javascript/volumesRevertSample.js | 2 +- .../samples/v19/javascript/volumesUpdateSample.js | 2 +- sdk/netapp/arm-netapp/samples/v19/typescript/package.json | 2 +- .../v19/typescript/src/accountsCreateOrUpdateSample.ts | 2 +- .../src/netAppResourceCheckNameAvailabilitySample.ts | 2 +- 61 files changed, 65 insertions(+), 65 deletions(-) diff --git a/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts b/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts index 4d013bfbb89a..dad893ba8596 100644 --- a/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts +++ b/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts @@ -53,7 +53,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3, 10.10.10.4", + dns: "10.10.10.3", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, diff --git a/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts b/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts index cf33fb750a6d..98b144abea5f 100644 --- a/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts +++ b/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts @@ -26,7 +26,7 @@ async function checkNameAvailability() { "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "netAppAccount"; + const typeParam = "Microsoft.NetApp/netAppAccounts"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js index cf91e75bf6b1..b98e52e4f7a8 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js @@ -29,7 +29,7 @@ async function accountsCreateOrUpdate() { const result = await client.accounts.beginCreateOrUpdateAndWait( resourceGroupName, accountName, - body + body, ); console.log(result); } @@ -49,7 +49,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3, 10.10.10.4", + dns: "10.10.10.3", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, @@ -67,7 +67,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { const result = await client.accounts.beginCreateOrUpdateAndWait( resourceGroupName, accountName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js index 666865143a94..80efb8f8b48a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js @@ -37,7 +37,7 @@ async function backupPoliciesCreate() { resourceGroupName, accountName, backupPolicyName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js index e2cbb8fc4f59..e612d0398f10 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js @@ -29,7 +29,7 @@ async function backupsDelete() { const result = await client.backupPolicies.beginDeleteAndWait( resourceGroupName, accountName, - backupPolicyName + backupPolicyName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js index 29fdc83e1a08..2a8641514b08 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js @@ -37,7 +37,7 @@ async function backupPoliciesUpdate() { resourceGroupName, accountName, backupPolicyName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js index cc5e53039fc5..5f8ae399a3d1 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js @@ -31,7 +31,7 @@ async function volumesRestoreStatus() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js index dacb18c6f794..0147db1a3f36 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js @@ -23,7 +23,7 @@ async function checkNameAvailability() { process.env["NETAPP_SUBSCRIPTION_ID"] || "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "netAppAccount"; + const typeParam = "Microsoft.NetApp/netAppAccounts"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); @@ -31,7 +31,7 @@ async function checkNameAvailability() { location, name, typeParam, - resourceGroup + resourceGroup, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js index 5cb99c570140..e9eecf9e15c2 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js @@ -31,7 +31,7 @@ async function checkQuotaAvailability() { location, name, typeParam, - resourceGroup + resourceGroup, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js index 5500b8ac87d2..8e81a059e64b 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js @@ -30,7 +30,7 @@ async function networkSiblingSetQuery() { const result = await client.netAppResource.queryNetworkSiblingSet( location, networkSiblingSetId, - subnetId + subnetId, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js index 4a98f56ba708..b1df02139c47 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js @@ -34,7 +34,7 @@ async function networkFeaturesUpdate() { networkSiblingSetId, subnetId, networkSiblingSetStateId, - networkFeatures + networkFeatures, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/package.json b/sdk/netapp/arm-netapp/samples/v19/javascript/package.json index f461a297dcfd..90f183b720ed 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/package.json +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-netapp": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" } } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js index 893ce194d851..20a618784984 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js @@ -36,7 +36,7 @@ async function poolsCreateOrUpdate() { resourceGroupName, accountName, poolName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js index e71901cbfb5d..6973aa7c94fc 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js @@ -31,7 +31,7 @@ async function poolsUpdate() { resourceGroupName, accountName, poolName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js index 76074c3566c4..b18c11cd7c1d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js @@ -48,7 +48,7 @@ async function snapshotPoliciesCreate() { resourceGroupName, accountName, snapshotPolicyName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js index e55a7776e4f3..7624060340ae 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesDelete() { const result = await client.snapshotPolicies.beginDeleteAndWait( resourceGroupName, accountName, - snapshotPolicyName + snapshotPolicyName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js index 0e5051624d89..1027af15dad0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesGet() { const result = await client.snapshotPolicies.get( resourceGroupName, accountName, - snapshotPolicyName + snapshotPolicyName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js index ff7201d4765f..5697eda4f134 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesListVolumes() { const result = await client.snapshotPolicies.listVolumes( resourceGroupName, accountName, - snapshotPolicyName + snapshotPolicyName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js index 8518bda908d4..3143edcab1dd 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js @@ -48,7 +48,7 @@ async function snapshotPoliciesUpdate() { resourceGroupName, accountName, snapshotPolicyName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js index 4e07ab28ec96..2f2a3a20e2c4 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js @@ -35,7 +35,7 @@ async function snapshotsCreate() { poolName, volumeName, snapshotName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js index e3de122a5d6f..415d21a6bc21 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js @@ -33,7 +33,7 @@ async function snapshotsDelete() { accountName, poolName, volumeName, - snapshotName + snapshotName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js index b99ca9cf3ee1..eb44b5aae29e 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js @@ -33,7 +33,7 @@ async function snapshotsGet() { accountName, poolName, volumeName, - snapshotName + snapshotName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js index cfa3e58f7fe6..ba4fb9563553 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js @@ -32,7 +32,7 @@ async function snapshotsList() { resourceGroupName, accountName, poolName, - volumeName + volumeName, )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js index 152aaf832803..252cbac1ab4e 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js @@ -37,7 +37,7 @@ async function snapshotsSingleFileRestore() { poolName, volumeName, snapshotName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js index 5160e3bec744..147e94c4818b 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js @@ -35,7 +35,7 @@ async function snapshotsUpdate() { poolName, volumeName, snapshotName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js index 2ee3d3688e7d..b9d668c671e7 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js @@ -35,7 +35,7 @@ async function subvolumesCreate() { poolName, volumeName, subvolumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js index 8a36ff8cb05d..da6d4f1184f0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js @@ -33,7 +33,7 @@ async function subvolumesDelete() { accountName, poolName, volumeName, - subvolumeName + subvolumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js index 1eed02f6c719..092c0c141b4b 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js @@ -33,7 +33,7 @@ async function subvolumesMetadata() { accountName, poolName, volumeName, - subvolumeName + subvolumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js index de35798896b4..ed948d428a8e 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js @@ -33,7 +33,7 @@ async function subvolumesGet() { accountName, poolName, volumeName, - subvolumeName + subvolumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js index 2bcb4e53f9a7..082b3151eb6f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js @@ -32,7 +32,7 @@ async function subvolumesList() { resourceGroupName, accountName, poolName, - volumeName + volumeName, )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js index 48452d5e13bb..ee1b769dc51e 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js @@ -35,7 +35,7 @@ async function subvolumesUpdate() { poolName, volumeName, subvolumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js index 28a583d37015..178b66ede8b9 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js @@ -448,7 +448,7 @@ async function volumeGroupsCreateOracle() { resourceGroupName, accountName, volumeGroupName, - body + body, ); console.log(result); } @@ -656,7 +656,7 @@ async function volumeGroupsCreateSapHana() { resourceGroupName, accountName, volumeGroupName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js index 10ae34fbdd00..076481f0a3ec 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js @@ -29,7 +29,7 @@ async function volumeGroupsDelete() { const result = await client.volumeGroups.beginDeleteAndWait( resourceGroupName, accountName, - volumeGroupName + volumeGroupName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js index 34d9c0137661..221e87e32e27 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js @@ -40,7 +40,7 @@ async function volumeQuotaRulesCreate() { poolName, volumeName, volumeQuotaRuleName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js index 184ab4cc346a..4bda74933698 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js @@ -33,7 +33,7 @@ async function volumeQuotaRulesDelete() { accountName, poolName, volumeName, - volumeQuotaRuleName + volumeQuotaRuleName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js index e32298c815f2..1a109e8d9ff1 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js @@ -33,7 +33,7 @@ async function volumeQuotaRulesGet() { accountName, poolName, volumeName, - volumeQuotaRuleName + volumeQuotaRuleName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js index 74774a86d7e2..692f969466fe 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js @@ -32,7 +32,7 @@ async function volumeQuotaRulesList() { resourceGroupName, accountName, poolName, - volumeName + volumeName, )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js index cc39bf8c68ee..93b881af264a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js @@ -35,7 +35,7 @@ async function volumeQuotaRulesUpdate() { poolName, volumeName, volumeQuotaRuleName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js index b57279d33ce0..f821c3a1dc74 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js @@ -36,7 +36,7 @@ async function volumesAuthorizeReplication() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js index bd62f7a5cc26..ce6c4d995552 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js @@ -37,7 +37,7 @@ async function volumesBreakFileLocks() { accountName, poolName, volumeName, - options + options, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js index 0e01b08fdae0..edd46089f768 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js @@ -34,7 +34,7 @@ async function volumesBreakReplication() { accountName, poolName, volumeName, - options + options, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js index bc92679d68ba..7b16034b2ec5 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js @@ -40,7 +40,7 @@ async function volumesCreateOrUpdate() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js index 4672f1978df0..cf0cd323b19d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js @@ -31,7 +31,7 @@ async function volumesDeleteReplication() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js index 95537489ed3e..c413ad418dd7 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js @@ -31,7 +31,7 @@ async function volumesDelete() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js index d9d68db1a829..6637cfce71e0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js @@ -31,7 +31,7 @@ async function volumesFinalizeRelocation() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js index b5629c4ad49f..fe77a6fdc1ce 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js @@ -33,7 +33,7 @@ async function getGroupIdListForUser() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js index 04e8431df9d5..fb695a318d2c 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js @@ -32,7 +32,7 @@ async function volumesListReplications() { resourceGroupName, accountName, poolName, - volumeName + volumeName, )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js index 5aae7cfa5467..20b0fd301d7f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js @@ -36,7 +36,7 @@ async function volumesAuthorizeReplication() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js index 05066d1e5c70..8cc46d390144 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js @@ -31,7 +31,7 @@ async function volumesPopulateAvailabilityZones() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js index 57d20e5d4688..bed765f4a64d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js @@ -31,7 +31,7 @@ async function volumesReInitializeReplication() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js index 955d37a4f609..c5baf2a730b5 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js @@ -36,7 +36,7 @@ async function volumesReestablishReplication() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js index 0c49963cce0a..99e447490a71 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js @@ -34,7 +34,7 @@ async function volumesRelocate() { accountName, poolName, volumeName, - options + options, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js index 14150dd7a1b4..411b210ec93f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js @@ -31,7 +31,7 @@ async function volumesReplicationStatus() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js index 6737dce1e9d9..b91cfae0e9f1 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js @@ -31,7 +31,7 @@ async function volumesResetCifsPassword() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js index 3487a21b1047..9d827ab52458 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js @@ -31,7 +31,7 @@ async function volumesResyncReplication() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js index 3234cc53262a..bcac027b2783 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js @@ -31,7 +31,7 @@ async function volumesRevertRelocation() { resourceGroupName, accountName, poolName, - volumeName + volumeName, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js index 4901ef33b027..723ca2181a07 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js @@ -36,7 +36,7 @@ async function volumesRevert() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js index d89e4cf5d7ec..0edf10832e45 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js @@ -33,7 +33,7 @@ async function volumesUpdate() { accountName, poolName, volumeName, - body + body, ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/package.json b/sdk/netapp/arm-netapp/samples/v19/typescript/package.json index e076170a62a9..0c44d2a93f55 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/package.json +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-netapp": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts b/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts index 4d013bfbb89a..dad893ba8596 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts @@ -53,7 +53,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3, 10.10.10.4", + dns: "10.10.10.3", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts b/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts index cf33fb750a6d..98b144abea5f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts @@ -26,7 +26,7 @@ async function checkNameAvailability() { "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "netAppAccount"; + const typeParam = "Microsoft.NetApp/netAppAccounts"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); From d4e7ddf9580f8eefc5861fba34b2cfe0f831ae99 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:05:57 +0800 Subject: [PATCH 03/16] update --- .../arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts | 2 +- ...chedDatabaseConfigurationsCheckNameAvailabilitySample.js | 2 +- .../attachedDatabaseConfigurationsCreateOrUpdateSample.js | 2 +- .../attachedDatabaseConfigurationsDeleteSample.js | 2 +- .../javascript/attachedDatabaseConfigurationsGetSample.js | 2 +- .../attachedDatabaseConfigurationsListByClusterSample.js | 2 +- ...lusterPrincipalAssignmentsCheckNameAvailabilitySample.js | 2 +- .../clusterPrincipalAssignmentsCreateOrUpdateSample.js | 2 +- .../javascript/clusterPrincipalAssignmentsDeleteSample.js | 2 +- .../v8/javascript/clusterPrincipalAssignmentsGetSample.js | 2 +- .../v8/javascript/clustersAddLanguageExtensionsSample.js | 2 +- .../samples/v8/javascript/clustersCreateOrUpdateSample.js | 4 ++-- .../v8/javascript/clustersDetachFollowerDatabasesSample.js | 2 +- .../v8/javascript/clustersDiagnoseVirtualNetworkSample.js | 2 +- ...lustersListOutboundNetworkDependenciesEndpointsSample.js | 2 +- .../samples/v8/javascript/clustersMigrateSample.js | 2 +- .../v8/javascript/clustersRemoveLanguageExtensionsSample.js | 2 +- .../arm-kusto/samples/v8/javascript/clustersUpdateSample.js | 2 +- .../dataConnectionsCheckNameAvailabilitySample.js | 2 +- .../v8/javascript/dataConnectionsCreateOrUpdateSample.js | 6 +++--- .../dataConnectionsDataConnectionValidationSample.js | 4 ++-- .../samples/v8/javascript/dataConnectionsDeleteSample.js | 2 +- .../samples/v8/javascript/dataConnectionsGetSample.js | 6 +++--- .../v8/javascript/dataConnectionsListByDatabaseSample.js | 2 +- .../samples/v8/javascript/dataConnectionsUpdateSample.js | 6 +++--- .../samples/v8/javascript/databaseInviteFollowerSample.js | 2 +- ...tabasePrincipalAssignmentsCheckNameAvailabilitySample.js | 2 +- .../databasePrincipalAssignmentsCreateOrUpdateSample.js | 2 +- .../javascript/databasePrincipalAssignmentsDeleteSample.js | 2 +- .../v8/javascript/databasePrincipalAssignmentsGetSample.js | 2 +- .../v8/javascript/databasePrincipalAssignmentsListSample.js | 2 +- .../samples/v8/javascript/databasesAddPrincipalsSample.js | 2 +- .../v8/javascript/databasesCheckNameAvailabilitySample.js | 2 +- .../samples/v8/javascript/databasesCreateOrUpdateSample.js | 4 ++-- .../samples/v8/javascript/databasesDeleteSample.js | 2 +- .../samples/v8/javascript/databasesListPrincipalsSample.js | 2 +- .../v8/javascript/databasesRemovePrincipalsSample.js | 2 +- .../samples/v8/javascript/databasesUpdateSample.js | 2 +- .../managedPrivateEndpointsCheckNameAvailabilitySample.js | 2 +- .../managedPrivateEndpointsCreateOrUpdateSample.js | 2 +- .../v8/javascript/managedPrivateEndpointsDeleteSample.js | 2 +- .../v8/javascript/managedPrivateEndpointsGetSample.js | 2 +- .../v8/javascript/managedPrivateEndpointsUpdateSample.js | 2 +- sdk/kusto/arm-kusto/samples/v8/javascript/package.json | 2 +- .../privateEndpointConnectionsCreateOrUpdateSample.js | 2 +- .../v8/javascript/privateEndpointConnectionsDeleteSample.js | 2 +- .../v8/javascript/privateEndpointConnectionsGetSample.js | 2 +- .../samples/v8/javascript/privateLinkResourcesGetSample.js | 2 +- .../sandboxCustomImagesCheckNameAvailabilitySample.js | 2 +- .../javascript/sandboxCustomImagesCreateOrUpdateSample.js | 2 +- .../v8/javascript/sandboxCustomImagesDeleteSample.js | 2 +- .../samples/v8/javascript/sandboxCustomImagesGetSample.js | 2 +- .../v8/javascript/sandboxCustomImagesUpdateSample.js | 2 +- .../v8/javascript/scriptsCheckNameAvailabilitySample.js | 2 +- .../samples/v8/javascript/scriptsCreateOrUpdateSample.js | 2 +- .../arm-kusto/samples/v8/javascript/scriptsDeleteSample.js | 2 +- .../samples/v8/javascript/scriptsListByDatabaseSample.js | 2 +- .../arm-kusto/samples/v8/javascript/scriptsUpdateSample.js | 2 +- sdk/kusto/arm-kusto/samples/v8/typescript/package.json | 2 +- .../v8/typescript/src/clustersCreateOrUpdateSample.ts | 2 +- 60 files changed, 69 insertions(+), 69 deletions(-) diff --git a/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts b/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts index a113f7506326..f50ac68cedb7 100644 --- a/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts +++ b/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts @@ -38,7 +38,7 @@ async function kustoClustersCreateOrUpdate() { value: [ { languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "Python_Custom_Image", + languageExtensionImageName: "PythonCustomImage", languageExtensionName: "PYTHON" }, { languageExtensionImageName: "R", languageExtensionName: "R" } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js index 98ac878625da..c7281748ad29 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCheckNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function kustoAttachedDatabaseConfigurationCheckNameAvailability() { const result = await client.attachedDatabaseConfigurations.checkNameAvailability( resourceGroupName, clusterName, - resourceName + resourceName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCreateOrUpdateSample.js index 59f93ff38d38..9d7a1aac8d92 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsCreateOrUpdateSample.js @@ -46,7 +46,7 @@ async function attachedDatabaseConfigurationsCreateOrUpdate() { resourceGroupName, clusterName, attachedDatabaseConfigurationName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsDeleteSample.js index cb810975a4a8..025742273d48 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsDeleteSample.js @@ -29,7 +29,7 @@ async function attachedDatabaseConfigurationsDelete() { const result = await client.attachedDatabaseConfigurations.beginDeleteAndWait( resourceGroupName, clusterName, - attachedDatabaseConfigurationName + attachedDatabaseConfigurationName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsGetSample.js index f6455188c14c..3d3dd660b62a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsGetSample.js @@ -29,7 +29,7 @@ async function attachedDatabaseConfigurationsGet() { const result = await client.attachedDatabaseConfigurations.get( resourceGroupName, clusterName, - attachedDatabaseConfigurationName + attachedDatabaseConfigurationName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsListByClusterSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsListByClusterSample.js index c937cf0b46d1..f32a6c1c8d12 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsListByClusterSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/attachedDatabaseConfigurationsListByClusterSample.js @@ -28,7 +28,7 @@ async function kustoAttachedDatabaseConfigurationsListByCluster() { const resArray = new Array(); for await (let item of client.attachedDatabaseConfigurations.listByCluster( resourceGroupName, - clusterName + clusterName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCheckNameAvailabilitySample.js index cab1320f2a85..db33c945e5d1 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCheckNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function kustoClusterPrincipalAssignmentsCheckNameAvailability() { const result = await client.clusterPrincipalAssignments.checkNameAvailability( resourceGroupName, clusterName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCreateOrUpdateSample.js index 0989e66431e2..3c5ab18d503f 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsCreateOrUpdateSample.js @@ -36,7 +36,7 @@ async function kustoClusterPrincipalAssignmentsCreateOrUpdate() { resourceGroupName, clusterName, principalAssignmentName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsDeleteSample.js index 60e2b4a077fd..94c4ef9a0109 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsDeleteSample.js @@ -29,7 +29,7 @@ async function kustoClusterPrincipalAssignmentsDelete() { const result = await client.clusterPrincipalAssignments.beginDeleteAndWait( resourceGroupName, clusterName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsGetSample.js index 1471d8b40411..fd86b6f7bc4b 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clusterPrincipalAssignmentsGetSample.js @@ -29,7 +29,7 @@ async function kustoClusterPrincipalAssignmentsGet() { const result = await client.clusterPrincipalAssignments.get( resourceGroupName, clusterName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersAddLanguageExtensionsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersAddLanguageExtensionsSample.js index 98e2de83724c..f02c181f5dae 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersAddLanguageExtensionsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersAddLanguageExtensionsSample.js @@ -31,7 +31,7 @@ async function kustoClusterAddLanguageExtensions() { const result = await client.clusters.beginAddLanguageExtensionsAndWait( resourceGroupName, clusterName, - languageExtensionsToAdd + languageExtensionsToAdd, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js index 41f4b40c02f6..cc7d09623ad3 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js @@ -34,7 +34,7 @@ async function kustoClustersCreateOrUpdate() { value: [ { languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "Python_Custom_Image", + languageExtensionImageName: "PythonCustomImage", languageExtensionName: "PYTHON", }, { languageExtensionImageName: "R", languageExtensionName: "R" }, @@ -50,7 +50,7 @@ async function kustoClustersCreateOrUpdate() { const result = await client.clusters.beginCreateOrUpdateAndWait( resourceGroupName, clusterName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDetachFollowerDatabasesSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDetachFollowerDatabasesSample.js index 9e2d4c2fc74d..1a37189036fb 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDetachFollowerDatabasesSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDetachFollowerDatabasesSample.js @@ -33,7 +33,7 @@ async function kustoClusterDetachFollowerDatabases() { const result = await client.clusters.beginDetachFollowerDatabasesAndWait( resourceGroupName, clusterName, - followerDatabaseToRemove + followerDatabaseToRemove, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDiagnoseVirtualNetworkSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDiagnoseVirtualNetworkSample.js index b60e1e97388a..82164c213981 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDiagnoseVirtualNetworkSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersDiagnoseVirtualNetworkSample.js @@ -27,7 +27,7 @@ async function kustoClusterDiagnoseVirtualNetwork() { const client = new KustoManagementClient(credential, subscriptionId); const result = await client.clusters.beginDiagnoseVirtualNetworkAndWait( resourceGroupName, - clusterName + clusterName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersListOutboundNetworkDependenciesEndpointsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersListOutboundNetworkDependenciesEndpointsSample.js index 55109371a144..23a2107b8ab1 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersListOutboundNetworkDependenciesEndpointsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersListOutboundNetworkDependenciesEndpointsSample.js @@ -28,7 +28,7 @@ async function getKustoClusterOutboundNetworkDependencies() { const resArray = new Array(); for await (let item of client.clusters.listOutboundNetworkDependenciesEndpoints( resourceGroupName, - clusterName + clusterName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersMigrateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersMigrateSample.js index 7f48c155e584..947418edee1a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersMigrateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersMigrateSample.js @@ -32,7 +32,7 @@ async function kustoClusterMigrate() { const result = await client.clusters.beginMigrateAndWait( resourceGroupName, clusterName, - clusterMigrateRequest + clusterMigrateRequest, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersRemoveLanguageExtensionsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersRemoveLanguageExtensionsSample.js index dbaa7b4951cc..a6adef30aa69 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersRemoveLanguageExtensionsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersRemoveLanguageExtensionsSample.js @@ -31,7 +31,7 @@ async function kustoClusterRemoveLanguageExtensions() { const result = await client.clusters.beginRemoveLanguageExtensionsAndWait( resourceGroupName, clusterName, - languageExtensionsToRemove + languageExtensionsToRemove, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersUpdateSample.js index bd6dfff1cc96..81a93b7d4fd9 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersUpdateSample.js @@ -32,7 +32,7 @@ async function kustoClustersUpdate() { resourceGroupName, clusterName, parameters, - options + options, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCheckNameAvailabilitySample.js index c11e0ec2c96a..b70f8270a83f 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCheckNameAvailabilitySample.js @@ -34,7 +34,7 @@ async function kustoDataConnectionsCheckNameAvailability() { resourceGroupName, clusterName, databaseName, - dataConnectionName + dataConnectionName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCreateOrUpdateSample.js index d32424522506..ed3ad99b136a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsCreateOrUpdateSample.js @@ -45,7 +45,7 @@ async function kustoDataConnectionsCosmosDbCreateOrUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } @@ -79,7 +79,7 @@ async function kustoDataConnectionsCreateOrUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } @@ -123,7 +123,7 @@ async function kustoDataConnectionsEventGridCreateOrUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDataConnectionValidationSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDataConnectionValidationSample.js index ab7cc67c1a38..807d2cbb5395 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDataConnectionValidationSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDataConnectionValidationSample.js @@ -51,7 +51,7 @@ async function kustoDataConnectionEventGridValidation() { resourceGroupName, clusterName, databaseName, - parameters + parameters, ); console.log(result); } @@ -89,7 +89,7 @@ async function kustoDataConnectionValidation() { resourceGroupName, clusterName, databaseName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDeleteSample.js index 9fb0876d78a2..054772751572 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsDeleteSample.js @@ -31,7 +31,7 @@ async function kustoDataConnectionsDelete() { resourceGroupName, clusterName, databaseName, - dataConnectionName + dataConnectionName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsGetSample.js index 8b714d37bf94..437da15aeebb 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsGetSample.js @@ -31,7 +31,7 @@ async function kustoDataConnectionsCosmosDbGet() { resourceGroupName, clusterName, databaseName, - dataConnectionName + dataConnectionName, ); console.log(result); } @@ -55,7 +55,7 @@ async function kustoDataConnectionsEventGridGet() { resourceGroupName, clusterName, databaseName, - dataConnectionName + dataConnectionName, ); console.log(result); } @@ -79,7 +79,7 @@ async function kustoDataConnectionsGet() { resourceGroupName, clusterName, databaseName, - dataConnectionName + dataConnectionName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsListByDatabaseSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsListByDatabaseSample.js index 0f4456bd3bdf..21ffa2b096c3 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsListByDatabaseSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsListByDatabaseSample.js @@ -30,7 +30,7 @@ async function kustoDatabasesListByCluster() { for await (let item of client.dataConnections.listByDatabase( resourceGroupName, clusterName, - databaseName + databaseName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsUpdateSample.js index 34873d4ff25b..cafca6c9cf5d 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/dataConnectionsUpdateSample.js @@ -45,7 +45,7 @@ async function kustoDataConnectionsCosmosDbUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } @@ -89,7 +89,7 @@ async function kustoDataConnectionsEventGridUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } @@ -123,7 +123,7 @@ async function kustoDataConnectionsUpdate() { clusterName, databaseName, dataConnectionName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databaseInviteFollowerSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databaseInviteFollowerSample.js index 8ee3cf3e109c..797c893595d1 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databaseInviteFollowerSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databaseInviteFollowerSample.js @@ -43,7 +43,7 @@ async function kustoDatabaseInviteFollower() { resourceGroupName, clusterName, databaseName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCheckNameAvailabilitySample.js index 075d8f34ded8..d5efe36320e6 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCheckNameAvailabilitySample.js @@ -34,7 +34,7 @@ async function kustoDatabaseCheckNameAvailability() { resourceGroupName, clusterName, databaseName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCreateOrUpdateSample.js index c753809c998b..154845e44f5a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsCreateOrUpdateSample.js @@ -38,7 +38,7 @@ async function kustoDatabasePrincipalAssignmentsCreateOrUpdate() { clusterName, databaseName, principalAssignmentName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsDeleteSample.js index adfb33b5a622..c1a918df68bc 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsDeleteSample.js @@ -31,7 +31,7 @@ async function kustoDatabasePrincipalAssignmentsDelete() { resourceGroupName, clusterName, databaseName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsGetSample.js index 0e7704a50f87..16e525fe4e44 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsGetSample.js @@ -31,7 +31,7 @@ async function kustoDatabasePrincipalAssignmentsGet() { resourceGroupName, clusterName, databaseName, - principalAssignmentName + principalAssignmentName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsListSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsListSample.js index 718ecbdd3644..c91e19b5c25a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsListSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasePrincipalAssignmentsListSample.js @@ -30,7 +30,7 @@ async function kustoPrincipalAssignmentsList() { for await (let item of client.databasePrincipalAssignments.list( resourceGroupName, clusterName, - databaseName + databaseName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesAddPrincipalsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesAddPrincipalsSample.js index d0775f87f0e8..693decaace86 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesAddPrincipalsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesAddPrincipalsSample.js @@ -58,7 +58,7 @@ async function kustoDatabaseAddPrincipals() { resourceGroupName, clusterName, databaseName, - databasePrincipalsToAdd + databasePrincipalsToAdd, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCheckNameAvailabilitySample.js index 6ae0d1d16dea..6529d863b95b 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCheckNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function kustoDatabasesCheckNameAvailability() { const result = await client.databases.checkNameAvailability( resourceGroupName, clusterName, - resourceName + resourceName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCreateOrUpdateSample.js index 3788576ddb48..5714eca2cc9f 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesCreateOrUpdateSample.js @@ -35,7 +35,7 @@ async function kustoReadOnlyDatabaseUpdate() { resourceGroupName, clusterName, databaseName, - parameters + parameters, ); console.log(result); } @@ -66,7 +66,7 @@ async function kustoReadWriteDatabaseCreateOrUpdate() { clusterName, databaseName, parameters, - options + options, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesDeleteSample.js index 04a463cfbb89..c96a2f61307d 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesDeleteSample.js @@ -29,7 +29,7 @@ async function kustoDatabasesDelete() { const result = await client.databases.beginDeleteAndWait( resourceGroupName, clusterName, - databaseName + databaseName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesListPrincipalsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesListPrincipalsSample.js index f2a584e41bc7..e2b4fd5375b2 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesListPrincipalsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesListPrincipalsSample.js @@ -30,7 +30,7 @@ async function kustoDatabaseListPrincipals() { for await (let item of client.databases.listPrincipals( resourceGroupName, clusterName, - databaseName + databaseName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesRemovePrincipalsSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesRemovePrincipalsSample.js index f4ced09976db..d98173b6ed59 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesRemovePrincipalsSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesRemovePrincipalsSample.js @@ -58,7 +58,7 @@ async function kustoDatabaseRemovePrincipals() { resourceGroupName, clusterName, databaseName, - databasePrincipalsToRemove + databasePrincipalsToRemove, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesUpdateSample.js index 6f6b6a0510fe..52741c208ddf 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/databasesUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/databasesUpdateSample.js @@ -34,7 +34,7 @@ async function kustoDatabasesUpdate() { resourceGroupName, clusterName, databaseName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCheckNameAvailabilitySample.js index 41c98d8ecaa6..db37e6a7e8c6 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCheckNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function kustoManagedPrivateEndpointsCheckNameAvailability() { const result = await client.managedPrivateEndpoints.checkNameAvailability( resourceGroupName, clusterName, - resourceName + resourceName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCreateOrUpdateSample.js index 781318a643db..4fc2415f259a 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsCreateOrUpdateSample.js @@ -36,7 +36,7 @@ async function kustoManagedPrivateEndpointsCreateOrUpdate() { resourceGroupName, clusterName, managedPrivateEndpointName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsDeleteSample.js index 06f08f62c9d3..4ad958043c03 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsDeleteSample.js @@ -29,7 +29,7 @@ async function managedPrivateEndpointsDelete() { const result = await client.managedPrivateEndpoints.beginDeleteAndWait( resourceGroupName, clusterName, - managedPrivateEndpointName + managedPrivateEndpointName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsGetSample.js index f6786c5ca6f7..11e6ee577fc9 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsGetSample.js @@ -29,7 +29,7 @@ async function kustoManagedPrivateEndpointsGet() { const result = await client.managedPrivateEndpoints.get( resourceGroupName, clusterName, - managedPrivateEndpointName + managedPrivateEndpointName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsUpdateSample.js index 41a491c522fd..75b351f4d82c 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/managedPrivateEndpointsUpdateSample.js @@ -36,7 +36,7 @@ async function kustoManagedPrivateEndpointsUpdate() { resourceGroupName, clusterName, managedPrivateEndpointName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/package.json b/sdk/kusto/arm-kusto/samples/v8/javascript/package.json index 37461c83b457..8c9ccc6363ad 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/package.json +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-kusto": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" } } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsCreateOrUpdateSample.js index 57f1e5abf033..56dd959a9693 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsCreateOrUpdateSample.js @@ -36,7 +36,7 @@ async function approveOrRejectAPrivateEndpointConnectionWithAGivenName() { resourceGroupName, clusterName, privateEndpointConnectionName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsDeleteSample.js index ce88b74c4f1a..e2c824e390c1 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsDeleteSample.js @@ -29,7 +29,7 @@ async function deletesAPrivateEndpointConnectionWithAGivenName() { const result = await client.privateEndpointConnections.beginDeleteAndWait( resourceGroupName, clusterName, - privateEndpointConnectionName + privateEndpointConnectionName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsGetSample.js index eb803d4a99e6..3891bcf7d5f0 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/privateEndpointConnectionsGetSample.js @@ -29,7 +29,7 @@ async function getsPrivateEndpointConnection() { const result = await client.privateEndpointConnections.get( resourceGroupName, clusterName, - privateEndpointConnectionName + privateEndpointConnectionName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/privateLinkResourcesGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/privateLinkResourcesGetSample.js index 6320b35dc43e..7e20f632cd80 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/privateLinkResourcesGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/privateLinkResourcesGetSample.js @@ -29,7 +29,7 @@ async function getsPrivateEndpointConnection() { const result = await client.privateLinkResources.get( resourceGroupName, clusterName, - privateLinkResourceName + privateLinkResourceName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCheckNameAvailabilitySample.js index 690c39df9279..64dbbd40afde 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCheckNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function kustoSandboxCustomImagesCheckNameAvailability() { const result = await client.sandboxCustomImages.checkNameAvailability( resourceGroupName, clusterName, - resourceName + resourceName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCreateOrUpdateSample.js index 7e1236b14bbc..e6a6af8c086f 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesCreateOrUpdateSample.js @@ -35,7 +35,7 @@ async function kustoSandboxCustomImagesCreateOrUpdate() { resourceGroupName, clusterName, sandboxCustomImageName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesDeleteSample.js index f8ccd594528d..a680bae44819 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesDeleteSample.js @@ -29,7 +29,7 @@ async function sandboxCustomImagesDelete() { const result = await client.sandboxCustomImages.beginDeleteAndWait( resourceGroupName, clusterName, - sandboxCustomImageName + sandboxCustomImageName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesGetSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesGetSample.js index a90159146204..f855c93302cb 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesGetSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesGetSample.js @@ -29,7 +29,7 @@ async function kustoSandboxCustomImagesGet() { const result = await client.sandboxCustomImages.get( resourceGroupName, clusterName, - sandboxCustomImageName + sandboxCustomImageName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesUpdateSample.js index d71da86c1278..462cf2f4c188 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/sandboxCustomImagesUpdateSample.js @@ -35,7 +35,7 @@ async function kustoSandboxCustomImagesUpdate() { resourceGroupName, clusterName, sandboxCustomImageName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCheckNameAvailabilitySample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCheckNameAvailabilitySample.js index 8a0681f2af6d..571b75f244b9 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCheckNameAvailabilitySample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCheckNameAvailabilitySample.js @@ -34,7 +34,7 @@ async function kustoScriptsCheckNameAvailability() { resourceGroupName, clusterName, databaseName, - scriptName + scriptName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCreateOrUpdateSample.js index 2f1924c69a01..265546dbb99c 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsCreateOrUpdateSample.js @@ -39,7 +39,7 @@ async function kustoScriptsCreateOrUpdate() { clusterName, databaseName, scriptName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsDeleteSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsDeleteSample.js index c951196975d0..61a8dbc8d3c5 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsDeleteSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsDeleteSample.js @@ -31,7 +31,7 @@ async function kustoScriptsDelete() { resourceGroupName, clusterName, databaseName, - scriptName + scriptName, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsListByDatabaseSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsListByDatabaseSample.js index f0c6ddde42ac..aeb0b18c2342 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsListByDatabaseSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsListByDatabaseSample.js @@ -30,7 +30,7 @@ async function kustoScriptsList() { for await (let item of client.scripts.listByDatabase( resourceGroupName, clusterName, - databaseName + databaseName, )) { resArray.push(item); } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsUpdateSample.js index 579ef92dba7f..8894f656f1f4 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/scriptsUpdateSample.js @@ -39,7 +39,7 @@ async function kustoScriptsUpdate() { clusterName, databaseName, scriptName, - parameters + parameters, ); console.log(result); } diff --git a/sdk/kusto/arm-kusto/samples/v8/typescript/package.json b/sdk/kusto/arm-kusto/samples/v8/typescript/package.json index 5c6831573128..fe855c7519bf 100644 --- a/sdk/kusto/arm-kusto/samples/v8/typescript/package.json +++ b/sdk/kusto/arm-kusto/samples/v8/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-kusto": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts b/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts index a113f7506326..f50ac68cedb7 100644 --- a/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts +++ b/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts @@ -38,7 +38,7 @@ async function kustoClustersCreateOrUpdate() { value: [ { languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "Python_Custom_Image", + languageExtensionImageName: "PythonCustomImage", languageExtensionName: "PYTHON" }, { languageExtensionImageName: "R", languageExtensionName: "R" } From daf39ef910320389037347f0a4ef6100be2eb208 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Wed, 29 Nov 2023 17:10:01 +0800 Subject: [PATCH 04/16] update --- sdk/cdn/arm-cdn/samples-dev/policiesCreateOrUpdateSample.ts | 2 +- .../samples/v9/javascript/afdCustomDomainsCreateSample.js | 2 +- .../samples/v9/javascript/afdCustomDomainsDeleteSample.js | 2 +- .../samples/v9/javascript/afdCustomDomainsGetSample.js | 2 +- .../afdCustomDomainsRefreshValidationTokenSample.js | 2 +- .../samples/v9/javascript/afdCustomDomainsUpdateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdEndpointsCreateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdEndpointsDeleteSample.js | 2 +- .../v9/javascript/afdEndpointsListResourceUsageSample.js | 2 +- .../samples/v9/javascript/afdEndpointsPurgeContentSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdEndpointsUpdateSample.js | 2 +- .../v9/javascript/afdEndpointsValidateCustomDomainSample.js | 2 +- .../samples/v9/javascript/afdOriginGroupsCreateSample.js | 2 +- .../samples/v9/javascript/afdOriginGroupsDeleteSample.js | 2 +- .../v9/javascript/afdOriginGroupsListResourceUsageSample.js | 2 +- .../samples/v9/javascript/afdOriginGroupsUpdateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdOriginsCreateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdOriginsDeleteSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsGetSample.js | 2 +- .../v9/javascript/afdOriginsListByOriginGroupSample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdOriginsUpdateSample.js | 2 +- .../afdProfilesCheckEndpointNameAvailabilitySample.js | 2 +- .../javascript/afdProfilesCheckHostNameAvailabilitySample.js | 2 +- .../arm-cdn/samples/v9/javascript/afdProfilesUpgradeSample.js | 2 +- .../samples/v9/javascript/afdProfilesValidateSecretSample.js | 2 +- .../v9/javascript/checkEndpointNameAvailabilitySample.js | 2 +- .../samples/v9/javascript/customDomainsCreateSample.js | 2 +- .../samples/v9/javascript/customDomainsDeleteSample.js | 2 +- .../v9/javascript/customDomainsDisableCustomHttpsSample.js | 2 +- .../v9/javascript/customDomainsEnableCustomHttpsSample.js | 4 ++-- .../arm-cdn/samples/v9/javascript/customDomainsGetSample.js | 2 +- .../v9/javascript/customDomainsListByEndpointSample.js | 2 +- .../arm-cdn/samples/v9/javascript/endpointsCreateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/endpointsDeleteSample.js | 2 +- .../samples/v9/javascript/endpointsListResourceUsageSample.js | 2 +- .../samples/v9/javascript/endpointsLoadContentSample.js | 2 +- .../samples/v9/javascript/endpointsPurgeContentSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStartSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStopSample.js | 2 +- .../arm-cdn/samples/v9/javascript/endpointsUpdateSample.js | 2 +- .../v9/javascript/endpointsValidateCustomDomainSample.js | 2 +- .../v9/javascript/logAnalyticsGetLogAnalyticsMetricsSample.js | 2 +- .../javascript/logAnalyticsGetLogAnalyticsRankingsSample.js | 2 +- .../javascript/logAnalyticsGetWafLogAnalyticsMetricsSample.js | 2 +- .../logAnalyticsGetWafLogAnalyticsRankingsSample.js | 2 +- .../arm-cdn/samples/v9/javascript/originGroupsCreateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/originGroupsDeleteSample.js | 2 +- .../arm-cdn/samples/v9/javascript/originGroupsGetSample.js | 2 +- .../samples/v9/javascript/originGroupsListByEndpointSample.js | 2 +- .../arm-cdn/samples/v9/javascript/originGroupsUpdateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/originsCreateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/originsDeleteSample.js | 2 +- .../samples/v9/javascript/originsListByEndpointSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/originsUpdateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/package.json | 2 +- .../samples/v9/javascript/policiesCreateOrUpdateSample.js | 4 ++-- sdk/cdn/arm-cdn/samples/v9/javascript/policiesUpdateSample.js | 2 +- .../arm-cdn/samples/v9/javascript/profilesCanMigrateSample.js | 2 +- .../profilesListSupportedOptimizationTypesSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/profilesUpdateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/routesCreateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/routesDeleteSample.js | 2 +- .../samples/v9/javascript/routesListByEndpointSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/routesUpdateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsDeleteSample.js | 2 +- .../samples/v9/javascript/ruleSetsListResourceUsageSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/rulesCreateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/rulesDeleteSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/rulesUpdateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/secretsCreateSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/javascript/secretsDeleteSample.js | 2 +- .../samples/v9/javascript/securityPoliciesCreateSample.js | 2 +- .../samples/v9/javascript/securityPoliciesDeleteSample.js | 2 +- .../samples/v9/javascript/securityPoliciesGetSample.js | 2 +- .../samples/v9/javascript/securityPoliciesPatchSample.js | 2 +- sdk/cdn/arm-cdn/samples/v9/typescript/package.json | 2 +- .../samples/v9/typescript/src/policiesCreateOrUpdateSample.ts | 2 +- 77 files changed, 79 insertions(+), 79 deletions(-) diff --git a/sdk/cdn/arm-cdn/samples-dev/policiesCreateOrUpdateSample.ts b/sdk/cdn/arm-cdn/samples-dev/policiesCreateOrUpdateSample.ts index c37a057840f5..612b8697eadc 100644 --- a/sdk/cdn/arm-cdn/samples-dev/policiesCreateOrUpdateSample.ts +++ b/sdk/cdn/arm-cdn/samples-dev/policiesCreateOrUpdateSample.ts @@ -64,7 +64,7 @@ async function createsSpecificPolicy() { } ] }, - location: "WestUs", + location: "global", managedRules: { managedRuleSets: [ { diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsCreateSample.js index f4037492de4f..993362f34b73 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsCreateSample.js @@ -37,7 +37,7 @@ async function afdCustomDomainsCreate() { resourceGroupName, profileName, customDomainName, - customDomain + customDomain, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsDeleteSample.js index 217f18de32ed..cdaa50faab30 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsDeleteSample.js @@ -28,7 +28,7 @@ async function afdCustomDomainsDelete() { const result = await client.afdCustomDomains.beginDeleteAndWait( resourceGroupName, profileName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsGetSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsGetSample.js index b84c994167eb..8de49d2775e5 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsGetSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsGetSample.js @@ -28,7 +28,7 @@ async function afdCustomDomainsGet() { const result = await client.afdCustomDomains.get( resourceGroupName, profileName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsRefreshValidationTokenSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsRefreshValidationTokenSample.js index 845cdf3c396c..4061a7f2e06c 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsRefreshValidationTokenSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsRefreshValidationTokenSample.js @@ -28,7 +28,7 @@ async function afdCustomDomainsDelete() { const result = await client.afdCustomDomains.beginRefreshValidationTokenAndWait( resourceGroupName, profileName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsUpdateSample.js index 3c668db0c8ee..88e42ecd6cb2 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdCustomDomainsUpdateSample.js @@ -36,7 +36,7 @@ async function afdCustomDomainsUpdate() { resourceGroupName, profileName, customDomainName, - customDomainUpdateProperties + customDomainUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsCreateSample.js index a5cd6158e365..1d37108566b2 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsCreateSample.js @@ -35,7 +35,7 @@ async function afdEndpointsCreate() { resourceGroupName, profileName, endpointName, - endpoint + endpoint, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsDeleteSample.js index d08f87bf996d..afd48dbf1f15 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsDeleteSample.js @@ -28,7 +28,7 @@ async function afdEndpointsDelete() { const result = await client.afdEndpoints.beginDeleteAndWait( resourceGroupName, profileName, - endpointName + endpointName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsListResourceUsageSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsListResourceUsageSample.js index f694320a7ebe..100529d4bd5b 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsListResourceUsageSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsListResourceUsageSample.js @@ -29,7 +29,7 @@ async function afdEndpointsListResourceUsage() { for await (let item of client.afdEndpoints.listResourceUsage( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsPurgeContentSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsPurgeContentSample.js index 376e936f637f..fcb6abcac702 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsPurgeContentSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsPurgeContentSample.js @@ -33,7 +33,7 @@ async function afdEndpointsPurgeContent() { resourceGroupName, profileName, endpointName, - contents + contents, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsUpdateSample.js index 7341db18e9ec..d1f49d5960de 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsUpdateSample.js @@ -33,7 +33,7 @@ async function afdEndpointsUpdate() { resourceGroupName, profileName, endpointName, - endpointUpdateProperties + endpointUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsValidateCustomDomainSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsValidateCustomDomainSample.js index a4a2259b52cd..e02e69add1e5 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsValidateCustomDomainSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdEndpointsValidateCustomDomainSample.js @@ -32,7 +32,7 @@ async function endpointsValidateCustomDomain() { resourceGroupName, profileName, endpointName, - customDomainProperties + customDomainProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsCreateSample.js index c91c860e81b1..33fb055b2c07 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsCreateSample.js @@ -43,7 +43,7 @@ async function afdOriginGroupsCreate() { resourceGroupName, profileName, originGroupName, - originGroup + originGroup, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsDeleteSample.js index 1c9deb7f0edc..a220b4b8e7ad 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsDeleteSample.js @@ -28,7 +28,7 @@ async function afdOriginGroupsDelete() { const result = await client.afdOriginGroups.beginDeleteAndWait( resourceGroupName, profileName, - originGroupName + originGroupName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsListResourceUsageSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsListResourceUsageSample.js index 509e3920ab4d..0a2de614458b 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsListResourceUsageSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsListResourceUsageSample.js @@ -29,7 +29,7 @@ async function afdOriginGroupsListResourceUsage() { for await (let item of client.afdOriginGroups.listResourceUsage( resourceGroupName, profileName, - originGroupName + originGroupName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsUpdateSample.js index d228bb4ea263..a23353a8bff4 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginGroupsUpdateSample.js @@ -43,7 +43,7 @@ async function afdOriginGroupsUpdate() { resourceGroupName, profileName, originGroupName, - originGroupUpdateProperties + originGroupUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsCreateSample.js index f5971dec4d1e..6c0120c7d420 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsCreateSample.js @@ -38,7 +38,7 @@ async function afdOriginsCreate() { profileName, originGroupName, originName, - origin + origin, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsDeleteSample.js index e10a05e70fd2..54f745ebc7b0 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsDeleteSample.js @@ -30,7 +30,7 @@ async function afdOriginsDelete() { resourceGroupName, profileName, originGroupName, - originName + originName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsGetSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsGetSample.js index 325b8b3fea36..8af4fe00da2b 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsGetSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsGetSample.js @@ -30,7 +30,7 @@ async function afdOriginsGet() { resourceGroupName, profileName, originGroupName, - originName + originName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsListByOriginGroupSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsListByOriginGroupSample.js index e4dd852b4e26..70b28dee2f00 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsListByOriginGroupSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsListByOriginGroupSample.js @@ -29,7 +29,7 @@ async function afdOriginsListByOriginGroup() { for await (let item of client.afdOrigins.listByOriginGroup( resourceGroupName, profileName, - originGroupName + originGroupName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsUpdateSample.js index da4dfe479852..698b229b7c36 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdOriginsUpdateSample.js @@ -37,7 +37,7 @@ async function afdOriginsUpdate() { profileName, originGroupName, originName, - originUpdateProperties + originUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckEndpointNameAvailabilitySample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckEndpointNameAvailabilitySample.js index 049a51222c08..2fa6f6dfc83d 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckEndpointNameAvailabilitySample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckEndpointNameAvailabilitySample.js @@ -32,7 +32,7 @@ async function checkEndpointNameAvailability() { const result = await client.afdProfiles.checkEndpointNameAvailability( resourceGroupName, profileName, - checkEndpointNameAvailabilityInput + checkEndpointNameAvailabilityInput, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckHostNameAvailabilitySample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckHostNameAvailabilitySample.js index c340831b6b82..f9f371d74d46 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckHostNameAvailabilitySample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesCheckHostNameAvailabilitySample.js @@ -30,7 +30,7 @@ async function afdProfilesCheckHostNameAvailability() { const result = await client.afdProfiles.checkHostNameAvailability( resourceGroupName, profileName, - checkHostNameAvailabilityInput + checkHostNameAvailabilityInput, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesUpgradeSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesUpgradeSample.js index fcdb311cb957..71cefaad602a 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesUpgradeSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesUpgradeSample.js @@ -37,7 +37,7 @@ async function afdProfilesUpgrade() { const result = await client.afdProfiles.beginUpgradeAndWait( resourceGroupName, profileName, - profileUpgradeParameters + profileUpgradeParameters, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesValidateSecretSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesValidateSecretSample.js index 181d7277bea8..ce8b1c277125 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesValidateSecretSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/afdProfilesValidateSecretSample.js @@ -33,7 +33,7 @@ async function validateSecret() { const result = await client.afdProfiles.validateSecret( resourceGroupName, profileName, - validateSecretInput + validateSecretInput, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/checkEndpointNameAvailabilitySample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/checkEndpointNameAvailabilitySample.js index ec625fb0a369..c3c9418354e6 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/checkEndpointNameAvailabilitySample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/checkEndpointNameAvailabilitySample.js @@ -30,7 +30,7 @@ async function checkEndpointNameAvailability() { const client = new CdnManagementClient(credential, subscriptionId); const result = await client.checkEndpointNameAvailability( resourceGroupName, - checkEndpointNameAvailabilityInput + checkEndpointNameAvailabilityInput, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsCreateSample.js index e95c94b9607d..02ab50c78944 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsCreateSample.js @@ -34,7 +34,7 @@ async function customDomainsCreate() { profileName, endpointName, customDomainName, - customDomainProperties + customDomainProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDeleteSample.js index b685afd9e80d..8f61585f2a24 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDeleteSample.js @@ -30,7 +30,7 @@ async function customDomainsDelete() { resourceGroupName, profileName, endpointName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDisableCustomHttpsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDisableCustomHttpsSample.js index ba52bf640fd3..5140a78ded21 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDisableCustomHttpsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsDisableCustomHttpsSample.js @@ -30,7 +30,7 @@ async function customDomainsDisableCustomHttps() { resourceGroupName, profileName, endpointName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsEnableCustomHttpsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsEnableCustomHttpsSample.js index 6cda5c25cc0b..e08713690364 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsEnableCustomHttpsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsEnableCustomHttpsSample.js @@ -30,7 +30,7 @@ async function customDomainsEnableCustomHttpsUsingCdnManagedCertificate() { resourceGroupName, profileName, endpointName, - customDomainName + customDomainName, ); console.log(result); } @@ -53,7 +53,7 @@ async function customDomainsEnableCustomHttpsUsingYourOwnCertificate() { resourceGroupName, profileName, endpointName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsGetSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsGetSample.js index 86121b35a012..ec7587fbce16 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsGetSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsGetSample.js @@ -30,7 +30,7 @@ async function customDomainsGet() { resourceGroupName, profileName, endpointName, - customDomainName + customDomainName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsListByEndpointSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsListByEndpointSample.js index 864b1ab8cfb2..158f2c0a4a51 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsListByEndpointSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/customDomainsListByEndpointSample.js @@ -29,7 +29,7 @@ async function customDomainsListByEndpoint() { for await (let item of client.customDomains.listByEndpoint( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsCreateSample.js index 92c085b11102..ba67dd128bfe 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsCreateSample.js @@ -137,7 +137,7 @@ async function endpointsCreate() { resourceGroupName, profileName, endpointName, - endpoint + endpoint, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsDeleteSample.js index 660db8f83c79..d7c7d79208f3 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsDeleteSample.js @@ -28,7 +28,7 @@ async function endpointsDelete() { const result = await client.endpoints.beginDeleteAndWait( resourceGroupName, profileName, - endpointName + endpointName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsListResourceUsageSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsListResourceUsageSample.js index 80c0353ad51c..ecb2642bf301 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsListResourceUsageSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsListResourceUsageSample.js @@ -29,7 +29,7 @@ async function endpointsListResourceUsage() { for await (let item of client.endpoints.listResourceUsage( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsLoadContentSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsLoadContentSample.js index 7214f969befa..4a9cb81492b1 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsLoadContentSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsLoadContentSample.js @@ -30,7 +30,7 @@ async function endpointsLoadContent() { resourceGroupName, profileName, endpointName, - contentFilePaths + contentFilePaths, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsPurgeContentSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsPurgeContentSample.js index a6157da06c08..48529ef6fcda 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsPurgeContentSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsPurgeContentSample.js @@ -30,7 +30,7 @@ async function endpointsPurgeContent() { resourceGroupName, profileName, endpointName, - contentFilePaths + contentFilePaths, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStartSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStartSample.js index 46db743e446e..f15175813447 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStartSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStartSample.js @@ -28,7 +28,7 @@ async function endpointsStart() { const result = await client.endpoints.beginStartAndWait( resourceGroupName, profileName, - endpointName + endpointName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStopSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStopSample.js index 473fa71405b9..8d14b252a459 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStopSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsStopSample.js @@ -28,7 +28,7 @@ async function endpointsStop() { const result = await client.endpoints.beginStopAndWait( resourceGroupName, profileName, - endpointName + endpointName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsUpdateSample.js index 4d0b4760b97d..55a560655ce9 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsUpdateSample.js @@ -32,7 +32,7 @@ async function endpointsUpdate() { resourceGroupName, profileName, endpointName, - endpointUpdateProperties + endpointUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsValidateCustomDomainSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsValidateCustomDomainSample.js index 45a7c16096ec..48b7d30262b0 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsValidateCustomDomainSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/endpointsValidateCustomDomainSample.js @@ -32,7 +32,7 @@ async function endpointsValidateCustomDomain() { resourceGroupName, profileName, endpointName, - customDomainProperties + customDomainProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsMetricsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsMetricsSample.js index 079e8a9a925e..51fb6d942f66 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsMetricsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsMetricsSample.js @@ -41,7 +41,7 @@ async function logAnalyticsGetLogAnalyticsMetrics() { granularity, customDomains, protocols, - options + options, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsRankingsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsRankingsSample.js index 700ca21d52e4..b0f4b911404b 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsRankingsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetLogAnalyticsRankingsSample.js @@ -36,7 +36,7 @@ async function logAnalyticsGetLogAnalyticsRankings() { metrics, maxRanking, dateTimeBegin, - dateTimeEnd + dateTimeEnd, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsMetricsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsMetricsSample.js index b996ca7eaee6..53d96e2d14ab 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsMetricsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsMetricsSample.js @@ -39,7 +39,7 @@ async function logAnalyticsGetWafLogAnalyticsMetrics() { dateTimeBegin, dateTimeEnd, granularity, - options + options, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsRankingsSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsRankingsSample.js index 10608cbe9aea..791298600b9f 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsRankingsSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/logAnalyticsGetWafLogAnalyticsRankingsSample.js @@ -36,7 +36,7 @@ async function logAnalyticsGetWafLogAnalyticsRankings() { dateTimeBegin, dateTimeEnd, maxRanking, - rankings + rankings, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsCreateSample.js index b3026c3fc530..a88aa0db6e0c 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsCreateSample.js @@ -48,7 +48,7 @@ async function originGroupsCreate() { profileName, endpointName, originGroupName, - originGroup + originGroup, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsDeleteSample.js index 17ac2befa9a8..f4e51b68313c 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsDeleteSample.js @@ -30,7 +30,7 @@ async function originGroupsDelete() { resourceGroupName, profileName, endpointName, - originGroupName + originGroupName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsGetSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsGetSample.js index b0317f4d5a10..eba911bd69c6 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsGetSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsGetSample.js @@ -30,7 +30,7 @@ async function originGroupsGet() { resourceGroupName, profileName, endpointName, - originGroupName + originGroupName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsListByEndpointSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsListByEndpointSample.js index 1c862f28c632..ab783e029e7e 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsListByEndpointSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsListByEndpointSample.js @@ -29,7 +29,7 @@ async function originsGroupsListByEndpoint() { for await (let item of client.originGroups.listByEndpoint( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsUpdateSample.js index e0e7fe8b40dd..dd8beabc3664 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originGroupsUpdateSample.js @@ -44,7 +44,7 @@ async function originGroupsUpdate() { profileName, endpointName, originGroupName, - originGroupUpdateProperties + originGroupUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originsCreateSample.js index 84c26ccdf566..a66954d7d35e 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originsCreateSample.js @@ -44,7 +44,7 @@ async function originsCreate() { profileName, endpointName, originName, - origin + origin, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originsDeleteSample.js index 651efb352188..bc857afc689a 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originsDeleteSample.js @@ -30,7 +30,7 @@ async function originsDelete() { resourceGroupName, profileName, endpointName, - originName + originName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originsListByEndpointSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originsListByEndpointSample.js index a7ef63c71af7..5d0810bccad4 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originsListByEndpointSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originsListByEndpointSample.js @@ -29,7 +29,7 @@ async function originsListByEndpoint() { for await (let item of client.origins.listByEndpoint( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/originsUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/originsUpdateSample.js index 2eb17129409b..1852a38a3df8 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/originsUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/originsUpdateSample.js @@ -41,7 +41,7 @@ async function originsUpdate() { profileName, endpointName, originName, - originUpdateProperties + originUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/package.json b/sdk/cdn/arm-cdn/samples/v9/javascript/package.json index 935aed11eeef..8e13f32dc41e 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/package.json +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-cdn": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" } } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/policiesCreateOrUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/policiesCreateOrUpdateSample.js index 439b34fcac7e..82baca854021 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/policiesCreateOrUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/policiesCreateOrUpdateSample.js @@ -59,7 +59,7 @@ async function createsSpecificPolicy() { }, ], }, - location: "WestUs", + location: "global", managedRules: { managedRuleSets: [ { @@ -116,7 +116,7 @@ async function createsSpecificPolicy() { const result = await client.policies.beginCreateOrUpdateAndWait( resourceGroupName, policyName, - cdnWebApplicationFirewallPolicy + cdnWebApplicationFirewallPolicy, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/policiesUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/policiesUpdateSample.js index 5ccd5af5299b..d3e9e7211d86 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/policiesUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/policiesUpdateSample.js @@ -30,7 +30,7 @@ async function createsSpecificPolicy() { const result = await client.policies.beginUpdateAndWait( resourceGroupName, policyName, - cdnWebApplicationFirewallPolicyPatchParameters + cdnWebApplicationFirewallPolicyPatchParameters, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesCanMigrateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesCanMigrateSample.js index 79b2e9f7ff4a..9e7b94675ee3 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesCanMigrateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesCanMigrateSample.js @@ -30,7 +30,7 @@ async function profilesCanMigrate() { const client = new CdnManagementClient(credential, subscriptionId); const result = await client.profiles.beginCanMigrateAndWait( resourceGroupName, - canMigrateParameters + canMigrateParameters, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesListSupportedOptimizationTypesSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesListSupportedOptimizationTypesSample.js index 95a37ae58e8c..9f843270e3ff 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesListSupportedOptimizationTypesSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesListSupportedOptimizationTypesSample.js @@ -26,7 +26,7 @@ async function profilesListSupportedOptimizationTypes() { const client = new CdnManagementClient(credential, subscriptionId); const result = await client.profiles.listSupportedOptimizationTypes( resourceGroupName, - profileName + profileName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesUpdateSample.js index 3a6497ec5aff..70ad1d648251 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/profilesUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/profilesUpdateSample.js @@ -30,7 +30,7 @@ async function profilesUpdate() { const result = await client.profiles.beginUpdateAndWait( resourceGroupName, profileName, - profileUpdateParameters + profileUpdateParameters, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/routesCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/routesCreateSample.js index dbfd50cb9e3f..ef28c7fadcaa 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/routesCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/routesCreateSample.js @@ -61,7 +61,7 @@ async function routesCreate() { profileName, endpointName, routeName, - route + route, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/routesDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/routesDeleteSample.js index 5aa0a46d000f..ab6a36aa0776 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/routesDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/routesDeleteSample.js @@ -30,7 +30,7 @@ async function routesDelete() { resourceGroupName, profileName, endpointName, - routeName + routeName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/routesListByEndpointSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/routesListByEndpointSample.js index 643df5087353..df3d43291c9a 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/routesListByEndpointSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/routesListByEndpointSample.js @@ -29,7 +29,7 @@ async function routesListByEndpoint() { for await (let item of client.routes.listByEndpoint( resourceGroupName, profileName, - endpointName + endpointName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/routesUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/routesUpdateSample.js index cbb996dbc19e..8c4f63aea79b 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/routesUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/routesUpdateSample.js @@ -60,7 +60,7 @@ async function routesUpdate() { profileName, endpointName, routeName, - routeUpdateProperties + routeUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsDeleteSample.js index d2849744681e..f17fe7cfa93f 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsDeleteSample.js @@ -28,7 +28,7 @@ async function ruleSetsDelete() { const result = await client.ruleSets.beginDeleteAndWait( resourceGroupName, profileName, - ruleSetName + ruleSetName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsListResourceUsageSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsListResourceUsageSample.js index b4cd376c3866..ef12d5574977 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsListResourceUsageSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/ruleSetsListResourceUsageSample.js @@ -29,7 +29,7 @@ async function ruleSetsListResourceUsage() { for await (let item of client.ruleSets.listResourceUsage( resourceGroupName, profileName, - ruleSetName + ruleSetName, )) { resArray.push(item); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesCreateSample.js index a711d1d8df54..171741f620b7 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesCreateSample.js @@ -56,7 +56,7 @@ async function rulesCreate() { profileName, ruleSetName, ruleName, - rule + rule, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesDeleteSample.js index b9d711c906d2..3e32034d0f8e 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesDeleteSample.js @@ -30,7 +30,7 @@ async function rulesDelete() { resourceGroupName, profileName, ruleSetName, - ruleName + ruleName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesUpdateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesUpdateSample.js index efee53117615..4e75d8356982 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/rulesUpdateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/rulesUpdateSample.js @@ -45,7 +45,7 @@ async function rulesUpdate() { profileName, ruleSetName, ruleName, - ruleUpdateProperties + ruleUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/secretsCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/secretsCreateSample.js index 4c82cd975836..68523be05a5d 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/secretsCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/secretsCreateSample.js @@ -39,7 +39,7 @@ async function secretsCreate() { resourceGroupName, profileName, secretName, - secret + secret, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/secretsDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/secretsDeleteSample.js index 5108e04a4a43..7c921ab90879 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/secretsDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/secretsDeleteSample.js @@ -28,7 +28,7 @@ async function secretsDelete() { const result = await client.secrets.beginDeleteAndWait( resourceGroupName, profileName, - secretName + secretName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesCreateSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesCreateSample.js index 4e357fbee9a0..cc1e8e526c01 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesCreateSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesCreateSample.js @@ -50,7 +50,7 @@ async function securityPoliciesCreate() { resourceGroupName, profileName, securityPolicyName, - securityPolicy + securityPolicy, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesDeleteSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesDeleteSample.js index d6cd44b9eca9..04c3a2551f5e 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesDeleteSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesDeleteSample.js @@ -28,7 +28,7 @@ async function securityPoliciesDelete() { const result = await client.securityPolicies.beginDeleteAndWait( resourceGroupName, profileName, - securityPolicyName + securityPolicyName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesGetSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesGetSample.js index 1e08a6ad4e8f..c2e14a3cd8a8 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesGetSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesGetSample.js @@ -28,7 +28,7 @@ async function securityPoliciesGet() { const result = await client.securityPolicies.get( resourceGroupName, profileName, - securityPolicyName + securityPolicyName, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesPatchSample.js b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesPatchSample.js index 62ba89293ef3..ca532aa932f1 100644 --- a/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesPatchSample.js +++ b/sdk/cdn/arm-cdn/samples/v9/javascript/securityPoliciesPatchSample.js @@ -50,7 +50,7 @@ async function securityPoliciesPatch() { resourceGroupName, profileName, securityPolicyName, - securityPolicyUpdateProperties + securityPolicyUpdateProperties, ); console.log(result); } diff --git a/sdk/cdn/arm-cdn/samples/v9/typescript/package.json b/sdk/cdn/arm-cdn/samples/v9/typescript/package.json index df8d1902a105..a6602ffd9803 100644 --- a/sdk/cdn/arm-cdn/samples/v9/typescript/package.json +++ b/sdk/cdn/arm-cdn/samples/v9/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-cdn": "latest", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/cdn/arm-cdn/samples/v9/typescript/src/policiesCreateOrUpdateSample.ts b/sdk/cdn/arm-cdn/samples/v9/typescript/src/policiesCreateOrUpdateSample.ts index c37a057840f5..612b8697eadc 100644 --- a/sdk/cdn/arm-cdn/samples/v9/typescript/src/policiesCreateOrUpdateSample.ts +++ b/sdk/cdn/arm-cdn/samples/v9/typescript/src/policiesCreateOrUpdateSample.ts @@ -64,7 +64,7 @@ async function createsSpecificPolicy() { } ] }, - location: "WestUs", + location: "global", managedRules: { managedRuleSets: [ { From a41d042c2b82a5d1a54470b8e79deb23d9c60942 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:35:05 +0800 Subject: [PATCH 05/16] update --- ...bilityStatusesListByResourceGroupSample.js | 2 +- ...ailsBySubscriptionIdAndTrackingIdSample.js | 5 +- ...tGetBySubscriptionIdAndTrackingIdSample.js | 2 +- .../impactedResourcesGetByTenantIdSample.js | 2 +- ...cesListBySubscriptionIdAndEventIdSample.js | 2 +- ...ResourcesListByTenantIdAndEventIdSample.js | 2 +- .../samples/v4-beta/javascript/package.json | 2 +- ...cesListBySubscriptionIdAndEventIdSample.js | 2 +- ...ResourcesListByTenantIdAndEventIdSample.js | 2 +- .../samples/v4-beta/typescript/package.json | 2 +- .../samples/v4/javascript/README.md | 98 ---------------- ...availabilityStatusesGetByResourceSample.js | 37 ------ ...bilityStatusesListByResourceGroupSample.js | 44 ------- ...ilityStatusesListBySubscriptionIdSample.js | 40 ------- .../availabilityStatusesListSample.js | 38 ------ ...AvailabilityStatusesGetByResourceSample.js | 40 ------- .../childAvailabilityStatusesListSample.js | 39 ------ .../v4/javascript/childResourcesListSample.js | 38 ------ .../v4/javascript/emergingIssuesGetSample.js | 35 ------ .../v4/javascript/emergingIssuesListSample.js | 37 ------ ...ailsBySubscriptionIdAndTrackingIdSample.js | 36 ------ ...tchDetailsByTenantIdAndTrackingIdSample.js | 35 ------ ...tGetBySubscriptionIdAndTrackingIdSample.js | 43 ------- .../eventGetByTenantIdAndTrackingIdSample.js | 41 ------- .../eventsListBySingleResourceSample.js | 39 ------ .../eventsListBySubscriptionIdSample.js | 42 ------- .../javascript/eventsListByTenantIdSample.js | 43 ------- .../impactedResourcesGetByTenantIdSample.js | 39 ------ .../javascript/impactedResourcesGetSample.js | 35 ------ ...cesListBySubscriptionIdAndEventIdSample.js | 44 ------- ...ResourcesListByTenantIdAndEventIdSample.js | 45 ------- .../v4/javascript/metadataGetEntitySample.js | 35 ------ .../v4/javascript/metadataListSample.js | 37 ------ .../v4/javascript/operationsListSample.js | 34 ------ .../samples/v4/javascript/package.json | 32 ----- .../samples/v4/javascript/sample.env | 4 - ...cesListBySubscriptionIdAndEventIdSample.js | 39 ------ ...ResourcesListByTenantIdAndEventIdSample.js | 40 ------- .../samples/v4/typescript/README.md | 111 ------------------ .../samples/v4/typescript/package.json | 41 ------- .../samples/v4/typescript/sample.env | 4 - ...availabilityStatusesGetByResourceSample.ts | 46 -------- ...bilityStatusesListByResourceGroupSample.ts | 51 -------- ...ilityStatusesListBySubscriptionIdSample.ts | 48 -------- .../src/availabilityStatusesListSample.ts | 41 ------- ...AvailabilityStatusesGetByResourceSample.ts | 49 -------- .../childAvailabilityStatusesListSample.ts | 42 ------- .../src/childResourcesListSample.ts | 41 ------- .../typescript/src/emergingIssuesGetSample.ts | 38 ------ .../src/emergingIssuesListSample.ts | 40 ------- ...ailsBySubscriptionIdAndTrackingIdSample.ts | 39 ------ ...tchDetailsByTenantIdAndTrackingIdSample.ts | 40 ------- ...tGetBySubscriptionIdAndTrackingIdSample.ts | 49 -------- .../eventGetByTenantIdAndTrackingIdSample.ts | 50 -------- .../src/eventsListBySingleResourceSample.ts | 44 ------- .../src/eventsListBySubscriptionIdSample.ts | 50 -------- .../src/eventsListByTenantIdSample.ts | 49 -------- .../impactedResourcesGetByTenantIdSample.ts | 42 ------- .../src/impactedResourcesGetSample.ts | 41 ------- ...cesListBySubscriptionIdAndEventIdSample.ts | 50 -------- ...ResourcesListByTenantIdAndEventIdSample.ts | 51 -------- .../typescript/src/metadataGetEntitySample.ts | 38 ------ .../v4/typescript/src/metadataListSample.ts | 40 ------- .../v4/typescript/src/operationsListSample.ts | 37 ------ ...cesListBySubscriptionIdAndEventIdSample.ts | 42 ------- ...ResourcesListByTenantIdAndEventIdSample.ts | 43 ------- .../samples/v4/typescript/tsconfig.json | 17 --- .../resourcehealth_operations_test.spec.ts | 12 ++ 68 files changed, 23 insertions(+), 2395 deletions(-) delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts delete mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js index 67251f37028d..ae113d37384b 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js @@ -30,7 +30,7 @@ async function listByResourceGroup() { const resArray = new Array(); for await (let item of client.availabilityStatuses.listByResourceGroup( resourceGroupName, - options + options, )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js index 1467797c16f6..1da883bbd8dc 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js @@ -23,9 +23,8 @@ async function eventDetailsBySubscriptionIdAndTrackingId() { const eventTrackingId = "eventTrackingId"; const credential = new DefaultAzureCredential(); const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( - eventTrackingId - ); + const result = + await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId(eventTrackingId); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js index b66d475d5d31..939b7c8c173a 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js @@ -31,7 +31,7 @@ async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { const client = new MicrosoftResourceHealth(credential, subscriptionId); const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( eventTrackingId, - options + options, ); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js index e2ab4ef51d28..960da4317cbe 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js @@ -25,7 +25,7 @@ async function impactedResourcesGet() { const client = new MicrosoftResourceHealth(credential); const result = await client.impactedResources.getByTenantId( eventTrackingId, - impactedResourceName + impactedResourceName, ); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js index 70e9caf8bc58..7e7b1065fdba 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -30,7 +30,7 @@ async function listImpactedResourcesBySubscriptionId() { const resArray = new Array(); for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( eventTrackingId, - options + options, )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js index 03d7af521b8b..8da04034e3ec 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js @@ -29,7 +29,7 @@ async function listEventsByTenantId() { const resArray = new Array(); for await (let item of client.impactedResources.listByTenantIdAndEventId( eventTrackingId, - options + options, )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json index 44974222df78..9bf832fff446 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-resourcehealth": "next", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" } } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js index 374b9db44cf8..2b9eb1273e02 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -25,7 +25,7 @@ async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { const client = new MicrosoftResourceHealth(credential, subscriptionId); const resArray = new Array(); for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( - eventTrackingId + eventTrackingId, )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js index 1617ad91ab86..dc4081e18d10 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js @@ -24,7 +24,7 @@ async function listSecurityAdvisoryImpactedResourcesByTenantId() { const client = new MicrosoftResourceHealth(credential); const resArray = new Array(); for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( - eventTrackingId + eventTrackingId, )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json index 863bad702612..40d39a89ed4a 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-resourcehealth": "next", "dotenv": "latest", - "@azure/identity": "^2.0.1" + "@azure/identity": "^3.3.0" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md deleted file mode 100644 index b1757a56da37..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md +++ /dev/null @@ -1,98 +0,0 @@ -# client library samples for JavaScript - -These sample programs show how to use the JavaScript client libraries for in some common scenarios. - -| **File Name** | **Description** | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [availabilityStatusesGetByResourceSample.js][availabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json | -| [availabilityStatusesListByResourceGroupSample.js][availabilitystatuseslistbyresourcegroupsample] | Lists the current availability status for all the resources in the resource group. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json | -| [availabilityStatusesListBySubscriptionIdSample.js][availabilitystatuseslistbysubscriptionidsample] | Lists the current availability status for all the resources in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json | -| [availabilityStatusesListSample.js][availabilitystatuseslistsample] | Lists all historical availability transitions and impacting events for a single resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json | -| [childAvailabilityStatusesGetByResourceSample.js][childavailabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json | -| [childAvailabilityStatusesListSample.js][childavailabilitystatuseslistsample] | Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json | -| [childResourcesListSample.js][childresourceslistsample] | Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json | -| [emergingIssuesGetSample.js][emergingissuesgetsample] | Gets Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json | -| [emergingIssuesListSample.js][emergingissueslistsample] | Lists Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json | -| [eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js][eventfetchdetailsbysubscriptionidandtrackingidsample] | Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json | -| [eventFetchDetailsByTenantIdAndTrackingIdSample.js][eventfetchdetailsbytenantidandtrackingidsample] | Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json | -| [eventGetBySubscriptionIdAndTrackingIdSample.js][eventgetbysubscriptionidandtrackingidsample] | Service health event in the subscription by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json | -| [eventGetByTenantIdAndTrackingIdSample.js][eventgetbytenantidandtrackingidsample] | Service health event in the tenant by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json | -| [eventsListBySingleResourceSample.js][eventslistbysingleresourcesample] | Lists current service health events for given resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json | -| [eventsListBySubscriptionIdSample.js][eventslistbysubscriptionidsample] | Lists service health events in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json | -| [eventsListByTenantIdSample.js][eventslistbytenantidsample] | Lists current service health events in the tenant. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json | -| [impactedResourcesGetByTenantIdSample.js][impactedresourcesgetbytenantidsample] | Gets the specific impacted resource in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json | -| [impactedResourcesGetSample.js][impactedresourcesgetsample] | Gets the specific impacted resource in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json | -| [impactedResourcesListBySubscriptionIdAndEventIdSample.js][impactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json | -| [impactedResourcesListByTenantIdAndEventIdSample.js][impactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json | -| [metadataGetEntitySample.js][metadatagetentitysample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json | -| [metadataListSample.js][metadatalistsample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json | -| [operationsListSample.js][operationslistsample] | Lists available operations for the resourcehealth resource provider x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json | -| [securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js][securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json | -| [securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js][securityadvisoryimpactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json | - -## Prerequisites - -The sample programs are compatible with [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). - -You need [an Azure subscription][freesub] to run these sample programs. - -Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. - -Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. - -## Setup - -To run the samples using the published version of the package: - -1. Install the dependencies using `npm`: - -```bash -npm install -``` - -2. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. - -3. Run whichever samples you like (note that some samples may require additional setup, see the table above): - -```bash -node availabilityStatusesGetByResourceSample.js -``` - -Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): - -```bash -npx cross-env RESOURCEHEALTH_SUBSCRIPTION_ID="" node availabilityStatusesGetByResourceSample.js -``` - -## Next Steps - -Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. - -[availabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js -[availabilitystatuseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js -[availabilitystatuseslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js -[availabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js -[childavailabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js -[childavailabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js -[childresourceslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js -[emergingissuesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js -[emergingissueslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js -[eventfetchdetailsbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js -[eventfetchdetailsbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js -[eventgetbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js -[eventgetbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js -[eventslistbysingleresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js -[eventslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js -[eventslistbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js -[impactedresourcesgetbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js -[impactedresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js -[impactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js -[impactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js -[metadatagetentitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js -[metadatalistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js -[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js -[securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js -[securityadvisoryimpactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js -[apiref]: https://docs.microsoft.com/javascript/api/@azure/arm-resourcehealth?view=azure-node-preview -[freesub]: https://azure.microsoft.com/free/ -[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth/README.md diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js deleted file mode 100644 index e3a727ae0233..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets current availability status for a single resource - * - * @summary Gets current availability status for a single resource - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json - */ -async function getCurrentHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const expand = "recommendedactions"; - const options = { expand }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.availabilityStatuses.getByResource(resourceUri, options); - console.log(result); -} - -async function main() { - getCurrentHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js deleted file mode 100644 index d5e1c15602b2..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists the current availability status for all the resources in the resource group. - * - * @summary Lists the current availability status for all the resources in the resource group. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json - */ -async function listByResourceGroup() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const resourceGroupName = process.env["RESOURCEHEALTH_RESOURCE_GROUP"] || "resourceGroupName"; - const expand = "recommendedactions"; - const options = { - expand, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.listByResourceGroup( - resourceGroupName, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listByResourceGroup(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js deleted file mode 100644 index 92d8a33f4fe9..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists the current availability status for all the resources in the subscription. - * - * @summary Lists the current availability status for all the resources in the subscription. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json - */ -async function listHealthBySubscriptionId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const expand = "recommendedactions"; - const options = { - expand, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.listBySubscriptionId(options)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listHealthBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js deleted file mode 100644 index 84c63053bea5..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists all historical availability transitions and impacting events for a single resource. - * - * @summary Lists all historical availability transitions and impacting events for a single resource. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json - */ -async function getHealthHistoryByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getHealthHistoryByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js deleted file mode 100644 index 77c96f22121f..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets current availability status for a single resource - * - * @summary Gets current availability status for a single resource - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json - */ -async function getChildCurrentHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; - const expand = "recommendedactions"; - const options = { - expand, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.childAvailabilityStatuses.getByResource(resourceUri, options); - console.log(result); -} - -async function main() { - getChildCurrentHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js deleted file mode 100644 index f5707da3ddb3..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status - * - * @summary Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json - */ -async function getChildHealthHistoryByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.childAvailabilityStatuses.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getChildHealthHistoryByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js deleted file mode 100644 index 908e49274398..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health - * - * @summary Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json - */ -async function getCurrentChildHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.childResources.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getCurrentChildHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js deleted file mode 100644 index a66f42052c2b..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets Azure services' emerging issues. - * - * @summary Gets Azure services' emerging issues. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json - */ -async function getEmergingIssues() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const issueName = "default"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.emergingIssues.get(issueName); - console.log(result); -} - -async function main() { - getEmergingIssues(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js deleted file mode 100644 index 41d8a6836a70..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists Azure services' emerging issues. - * - * @summary Lists Azure services' emerging issues. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json - */ -async function getEmergingIssues() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.emergingIssues.list()) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getEmergingIssues(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js deleted file mode 100644 index 762d1f763fa0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js +++ /dev/null @@ -1,36 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * - * @summary Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json - */ -async function eventDetailsBySubscriptionIdAndTrackingId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "eventTrackingId"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( - eventTrackingId - ); - console.log(result); -} - -async function main() { - eventDetailsBySubscriptionIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js deleted file mode 100644 index 8c32fea051f0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * - * @summary Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json - */ -async function eventDetailsByTenantIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "eventTrackingId"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.fetchDetailsByTenantIdAndTrackingId(eventTrackingId); - console.log(result); -} - -async function main() { - eventDetailsByTenantIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js deleted file mode 100644 index bf77daecc17a..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Service health event in the subscription by event tracking id - * - * @summary Service health event in the subscription by event tracking id - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json - */ -async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const filter = "properties/status eq 'Active'"; - const queryStartTime = "7/10/2022"; - const eventTrackingId = "eventTrackingId"; - const options = { - filter, - queryStartTime, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( - eventTrackingId, - options - ); - console.log(result); -} - -async function main() { - securityAdvisoriesEventBySubscriptionIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js deleted file mode 100644 index c6ecb51ccccb..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Service health event in the tenant by event tracking id - * - * @summary Service health event in the tenant by event tracking id - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json - */ -async function eventByTenantIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const filter = "properties/status eq 'Active'"; - const queryStartTime = "7/10/2022"; - const eventTrackingId = "eventTrackingId"; - const options = { - filter, - queryStartTime, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.getByTenantIdAndTrackingId(eventTrackingId, options); - console.log(result); -} - -async function main() { - eventByTenantIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js deleted file mode 100644 index 19aeba5cb147..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists current service health events for given resource. - * - * @summary Lists current service health events for given resource. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json - */ -async function listEventsBySingleResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.Compute/virtualMachines/rhctestenvV1PI"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listBySingleResource(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsBySingleResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js deleted file mode 100644 index f04b1250bcb1..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists service health events in the subscription. - * - * @summary Lists service health events in the subscription. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json - */ -async function listEventsBySubscriptionId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const filter = "service eq 'Virtual Machines' or region eq 'West US'"; - const queryStartTime = "7/24/2020"; - const options = { - filter, - queryStartTime, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listBySubscriptionId(options)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js deleted file mode 100644 index f7e27e718483..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists current service health events in the tenant. - * - * @summary Lists current service health events in the tenant. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json - */ -async function listEventsByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const filter = "service eq 'Virtual Machines' or region eq 'West US'"; - const queryStartTime = "7/24/2020"; - const options = { - filter, - queryStartTime, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listByTenantId(options)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js deleted file mode 100644 index 42d602b8cd6e..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets the specific impacted resource in the tenant by an event. - * - * @summary Gets the specific impacted resource in the tenant by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json - */ -async function impactedResourcesGet() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const impactedResourceName = "abc-123-ghj-456"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.impactedResources.getByTenantId( - eventTrackingId, - impactedResourceName - ); - console.log(result); -} - -async function main() { - impactedResourcesGet(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js deleted file mode 100644 index bed1f7b3dbeb..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets the specific impacted resource in the subscription by an event. - * - * @summary Gets the specific impacted resource in the subscription by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json - */ -async function impactedResourcesGet() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const impactedResourceName = "abc-123-ghj-456"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.impactedResources.get(eventTrackingId, impactedResourceName); - console.log(result); -} - -async function main() { - impactedResourcesGet(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js deleted file mode 100644 index 123c648dd0e9..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists impacted resources in the subscription by an event. - * - * @summary Lists impacted resources in the subscription by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json - */ -async function listImpactedResourcesBySubscriptionId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const filter = "targetRegion eq 'westus'"; - const options = { - filter, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( - eventTrackingId, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listImpactedResourcesBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js deleted file mode 100644 index 3cf4caf63913..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js +++ /dev/null @@ -1,45 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists impacted resources in the tenant by an event. - * - * @summary Lists impacted resources in the tenant by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json - */ -async function listEventsByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const filter = "targetRegion eq 'westus'"; - const options = { - filter, - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.impactedResources.listByTenantIdAndEventId( - eventTrackingId, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js deleted file mode 100644 index 1962de0cf4b6..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets the list of metadata entities. - * - * @summary Gets the list of metadata entities. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json - */ -async function getMetadata() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const name = "status"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.metadata.getEntity(name); - console.log(result); -} - -async function main() { - getMetadata(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js deleted file mode 100644 index 77427004bae8..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Gets the list of metadata entities. - * - * @summary Gets the list of metadata entities. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json - */ -async function getMetadata() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.metadata.list()) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getMetadata(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js deleted file mode 100644 index 978dda376541..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists available operations for the resourcehealth resource provider - * - * @summary Lists available operations for the resourcehealth resource provider - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json - */ -async function getOperationsList() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.operations.list(); - console.log(result); -} - -async function main() { - getOperationsList(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json deleted file mode 100644 index 62460d6f3725..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "@azure-samples/arm-resourcehealth-js", - "private": true, - "version": "1.0.0", - "description": " client library samples for JavaScript", - "engines": { - "node": ">=18.0.0" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Azure/azure-sdk-for-js.git", - "directory": "sdk/resourcehealth/arm-resourcehealth" - }, - "keywords": [ - "node", - "azure", - "typescript", - "browser", - "isomorphic" - ], - "author": "Microsoft Corporation", - "license": "MIT", - "bugs": { - "url": "https://github.com/Azure/azure-sdk-for-js/issues" - }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth", - "dependencies": { - "@azure/arm-resourcehealth": "latest", - "dotenv": "latest", - "@azure/identity": "^2.0.1" - } -} diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env deleted file mode 100644 index 672847a3fea0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env +++ /dev/null @@ -1,4 +0,0 @@ -# App registration secret for AAD authentication -AZURE_CLIENT_SECRET= -AZURE_CLIENT_ID= -AZURE_TENANT_ID= \ No newline at end of file diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js deleted file mode 100644 index 1339c45eea50..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists impacted resources in the subscription by an event (Security Advisory). - * - * @summary Lists impacted resources in the subscription by an event (Security Advisory). - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json - */ -async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { - const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( - eventTrackingId - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listSecurityAdvisoryImpactedResourcesBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js deleted file mode 100644 index 06f94eac00b4..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); -const { DefaultAzureCredential } = require("@azure/identity"); -require("dotenv").config(); - -/** - * This sample demonstrates how to Lists impacted resources in the tenant by an event (Security Advisory). - * - * @summary Lists impacted resources in the tenant by an event (Security Advisory). - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json - */ -async function listSecurityAdvisoryImpactedResourcesByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( - eventTrackingId - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listSecurityAdvisoryImpactedResourcesByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md deleted file mode 100644 index 80fef1b56a62..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md +++ /dev/null @@ -1,111 +0,0 @@ -# client library samples for TypeScript - -These sample programs show how to use the TypeScript client libraries for in some common scenarios. - -| **File Name** | **Description** | -| ------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [availabilityStatusesGetByResourceSample.ts][availabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json | -| [availabilityStatusesListByResourceGroupSample.ts][availabilitystatuseslistbyresourcegroupsample] | Lists the current availability status for all the resources in the resource group. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json | -| [availabilityStatusesListBySubscriptionIdSample.ts][availabilitystatuseslistbysubscriptionidsample] | Lists the current availability status for all the resources in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json | -| [availabilityStatusesListSample.ts][availabilitystatuseslistsample] | Lists all historical availability transitions and impacting events for a single resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json | -| [childAvailabilityStatusesGetByResourceSample.ts][childavailabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json | -| [childAvailabilityStatusesListSample.ts][childavailabilitystatuseslistsample] | Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json | -| [childResourcesListSample.ts][childresourceslistsample] | Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json | -| [emergingIssuesGetSample.ts][emergingissuesgetsample] | Gets Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json | -| [emergingIssuesListSample.ts][emergingissueslistsample] | Lists Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json | -| [eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts][eventfetchdetailsbysubscriptionidandtrackingidsample] | Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json | -| [eventFetchDetailsByTenantIdAndTrackingIdSample.ts][eventfetchdetailsbytenantidandtrackingidsample] | Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json | -| [eventGetBySubscriptionIdAndTrackingIdSample.ts][eventgetbysubscriptionidandtrackingidsample] | Service health event in the subscription by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json | -| [eventGetByTenantIdAndTrackingIdSample.ts][eventgetbytenantidandtrackingidsample] | Service health event in the tenant by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json | -| [eventsListBySingleResourceSample.ts][eventslistbysingleresourcesample] | Lists current service health events for given resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json | -| [eventsListBySubscriptionIdSample.ts][eventslistbysubscriptionidsample] | Lists service health events in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json | -| [eventsListByTenantIdSample.ts][eventslistbytenantidsample] | Lists current service health events in the tenant. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json | -| [impactedResourcesGetByTenantIdSample.ts][impactedresourcesgetbytenantidsample] | Gets the specific impacted resource in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json | -| [impactedResourcesGetSample.ts][impactedresourcesgetsample] | Gets the specific impacted resource in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json | -| [impactedResourcesListBySubscriptionIdAndEventIdSample.ts][impactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json | -| [impactedResourcesListByTenantIdAndEventIdSample.ts][impactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json | -| [metadataGetEntitySample.ts][metadatagetentitysample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json | -| [metadataListSample.ts][metadatalistsample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json | -| [operationsListSample.ts][operationslistsample] | Lists available operations for the resourcehealth resource provider x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json | -| [securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts][securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json | -| [securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts][securityadvisoryimpactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json | - -## Prerequisites - -The sample programs are compatible with [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). - -Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using: - -```bash -npm install -g typescript -``` - -You need [an Azure subscription][freesub] to run these sample programs. - -Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. - -Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. - -## Setup - -To run the samples using the published version of the package: - -1. Install the dependencies using `npm`: - -```bash -npm install -``` - -2. Compile the samples: - -```bash -npm run build -``` - -3. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. - -4. Run whichever samples you like (note that some samples may require additional setup, see the table above): - -```bash -node dist/availabilityStatusesGetByResourceSample.js -``` - -Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): - -```bash -npx cross-env RESOURCEHEALTH_SUBSCRIPTION_ID="" node dist/availabilityStatusesGetByResourceSample.js -``` - -## Next Steps - -Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. - -[availabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts -[availabilitystatuseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts -[availabilitystatuseslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts -[availabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts -[childavailabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts -[childavailabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts -[childresourceslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts -[emergingissuesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts -[emergingissueslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts -[eventfetchdetailsbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts -[eventfetchdetailsbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts -[eventgetbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts -[eventgetbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts -[eventslistbysingleresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts -[eventslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts -[eventslistbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts -[impactedresourcesgetbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts -[impactedresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts -[impactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts -[impactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts -[metadatagetentitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts -[metadatalistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts -[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts -[securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts -[securityadvisoryimpactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts -[apiref]: https://docs.microsoft.com/javascript/api/@azure/arm-resourcehealth?view=azure-node-preview -[freesub]: https://azure.microsoft.com/free/ -[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth/README.md -[typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json deleted file mode 100644 index ea329f62f1c6..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "name": "@azure-samples/arm-resourcehealth-ts", - "private": true, - "version": "1.0.0", - "description": " client library samples for TypeScript", - "engines": { - "node": ">=18.0.0" - }, - "scripts": { - "build": "tsc", - "prebuild": "rimraf dist/" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/Azure/azure-sdk-for-js.git", - "directory": "sdk/resourcehealth/arm-resourcehealth" - }, - "keywords": [ - "node", - "azure", - "typescript", - "browser", - "isomorphic" - ], - "author": "Microsoft Corporation", - "license": "MIT", - "bugs": { - "url": "https://github.com/Azure/azure-sdk-for-js/issues" - }, - "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth", - "dependencies": { - "@azure/arm-resourcehealth": "latest", - "dotenv": "latest", - "@azure/identity": "^2.0.1" - }, - "devDependencies": { - "@types/node": "^18.0.0", - "typescript": "~5.2.0", - "rimraf": "latest" - } -} diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env deleted file mode 100644 index 672847a3fea0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env +++ /dev/null @@ -1,4 +0,0 @@ -# App registration secret for AAD authentication -AZURE_CLIENT_SECRET= -AZURE_CLIENT_ID= -AZURE_TENANT_ID= \ No newline at end of file diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts deleted file mode 100644 index 9a6de7d115dc..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts +++ /dev/null @@ -1,46 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - AvailabilityStatusesGetByResourceOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets current availability status for a single resource - * - * @summary Gets current availability status for a single resource - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json - */ -async function getCurrentHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const expand = "recommendedactions"; - const options: AvailabilityStatusesGetByResourceOptionalParams = { expand }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.availabilityStatuses.getByResource( - resourceUri, - options - ); - console.log(result); -} - -async function main() { - getCurrentHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts deleted file mode 100644 index 288966705df0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - AvailabilityStatusesListByResourceGroupOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists the current availability status for all the resources in the resource group. - * - * @summary Lists the current availability status for all the resources in the resource group. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json - */ -async function listByResourceGroup() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const resourceGroupName = - process.env["RESOURCEHEALTH_RESOURCE_GROUP"] || "resourceGroupName"; - const expand = "recommendedactions"; - const options: AvailabilityStatusesListByResourceGroupOptionalParams = { - expand - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.listByResourceGroup( - resourceGroupName, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listByResourceGroup(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts deleted file mode 100644 index c1204ae9a395..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - AvailabilityStatusesListBySubscriptionIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists the current availability status for all the resources in the subscription. - * - * @summary Lists the current availability status for all the resources in the subscription. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json - */ -async function listHealthBySubscriptionId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const expand = "recommendedactions"; - const options: AvailabilityStatusesListBySubscriptionIdOptionalParams = { - expand - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.listBySubscriptionId( - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listHealthBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts deleted file mode 100644 index ad9f65f07576..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists all historical availability transitions and impacting events for a single resource. - * - * @summary Lists all historical availability transitions and impacting events for a single resource. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json - */ -async function getHealthHistoryByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.availabilityStatuses.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getHealthHistoryByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts deleted file mode 100644 index 8035a19dab11..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - ChildAvailabilityStatusesGetByResourceOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets current availability status for a single resource - * - * @summary Gets current availability status for a single resource - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json - */ -async function getChildCurrentHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; - const expand = "recommendedactions"; - const options: ChildAvailabilityStatusesGetByResourceOptionalParams = { - expand - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.childAvailabilityStatuses.getByResource( - resourceUri, - options - ); - console.log(result); -} - -async function main() { - getChildCurrentHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts deleted file mode 100644 index fd1848deeebc..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status - * - * @summary Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json - */ -async function getChildHealthHistoryByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.childAvailabilityStatuses.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getChildHealthHistoryByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts deleted file mode 100644 index 13d61813cefd..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health - * - * @summary Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json - */ -async function getCurrentChildHealthByResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = "resourceUri"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.childResources.list(resourceUri)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getCurrentChildHealthByResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts deleted file mode 100644 index f0cf74e7709f..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets Azure services' emerging issues. - * - * @summary Gets Azure services' emerging issues. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json - */ -async function getEmergingIssues() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const issueName = "default"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.emergingIssues.get(issueName); - console.log(result); -} - -async function main() { - getEmergingIssues(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts deleted file mode 100644 index 2f08ecfd9d1a..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists Azure services' emerging issues. - * - * @summary Lists Azure services' emerging issues. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json - */ -async function getEmergingIssues() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.emergingIssues.list()) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getEmergingIssues(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts deleted file mode 100644 index cedf5af120da..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts +++ /dev/null @@ -1,39 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * - * @summary Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json - */ -async function eventDetailsBySubscriptionIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "eventTrackingId"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( - eventTrackingId - ); - console.log(result); -} - -async function main() { - eventDetailsBySubscriptionIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts deleted file mode 100644 index e4919b6e45a3..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * - * @summary Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json - */ -async function eventDetailsByTenantIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "eventTrackingId"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.fetchDetailsByTenantIdAndTrackingId( - eventTrackingId - ); - console.log(result); -} - -async function main() { - eventDetailsByTenantIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts deleted file mode 100644 index 8cf525bf28e1..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - EventGetBySubscriptionIdAndTrackingIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Service health event in the subscription by event tracking id - * - * @summary Service health event in the subscription by event tracking id - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json - */ -async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const filter = "properties/status eq 'Active'"; - const queryStartTime = "7/10/2022"; - const eventTrackingId = "eventTrackingId"; - const options: EventGetBySubscriptionIdAndTrackingIdOptionalParams = { - filter, - queryStartTime - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( - eventTrackingId, - options - ); - console.log(result); -} - -async function main() { - securityAdvisoriesEventBySubscriptionIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts deleted file mode 100644 index 9c4a716d5811..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - EventGetByTenantIdAndTrackingIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Service health event in the tenant by event tracking id - * - * @summary Service health event in the tenant by event tracking id - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json - */ -async function eventByTenantIdAndTrackingId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const filter = "properties/status eq 'Active'"; - const queryStartTime = "7/10/2022"; - const eventTrackingId = "eventTrackingId"; - const options: EventGetByTenantIdAndTrackingIdOptionalParams = { - filter, - queryStartTime - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.eventOperations.getByTenantIdAndTrackingId( - eventTrackingId, - options - ); - console.log(result); -} - -async function main() { - eventByTenantIdAndTrackingId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts deleted file mode 100644 index c9a08f17d13c..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts +++ /dev/null @@ -1,44 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists current service health events for given resource. - * - * @summary Lists current service health events for given resource. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json - */ -async function listEventsBySingleResource() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const resourceUri = - "subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.Compute/virtualMachines/rhctestenvV1PI"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listBySingleResource( - resourceUri - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsBySingleResource(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts deleted file mode 100644 index 28ef72dd8ef9..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - EventsListBySubscriptionIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists service health events in the subscription. - * - * @summary Lists service health events in the subscription. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json - */ -async function listEventsBySubscriptionId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const filter = "service eq 'Virtual Machines' or region eq 'West US'"; - const queryStartTime = "7/24/2020"; - const options: EventsListBySubscriptionIdOptionalParams = { - filter, - queryStartTime - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listBySubscriptionId( - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts deleted file mode 100644 index 6833ec9649ae..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts +++ /dev/null @@ -1,49 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - EventsListByTenantIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists current service health events in the tenant. - * - * @summary Lists current service health events in the tenant. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json - */ -async function listEventsByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const filter = "service eq 'Virtual Machines' or region eq 'West US'"; - const queryStartTime = "7/24/2020"; - const options: EventsListByTenantIdOptionalParams = { - filter, - queryStartTime - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.eventsOperations.listByTenantId(options)) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts deleted file mode 100644 index fbd589c8e92a..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets the specific impacted resource in the tenant by an event. - * - * @summary Gets the specific impacted resource in the tenant by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json - */ -async function impactedResourcesGet() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const impactedResourceName = "abc-123-ghj-456"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.impactedResources.getByTenantId( - eventTrackingId, - impactedResourceName - ); - console.log(result); -} - -async function main() { - impactedResourcesGet(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts deleted file mode 100644 index 778d79451772..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets the specific impacted resource in the subscription by an event. - * - * @summary Gets the specific impacted resource in the subscription by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json - */ -async function impactedResourcesGet() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const impactedResourceName = "abc-123-ghj-456"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.impactedResources.get( - eventTrackingId, - impactedResourceName - ); - console.log(result); -} - -async function main() { - impactedResourcesGet(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts deleted file mode 100644 index f585b4d5c6e0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts +++ /dev/null @@ -1,50 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - ImpactedResourcesListBySubscriptionIdAndEventIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists impacted resources in the subscription by an event. - * - * @summary Lists impacted resources in the subscription by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json - */ -async function listImpactedResourcesBySubscriptionId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const filter = "targetRegion eq 'westus'"; - const options: ImpactedResourcesListBySubscriptionIdAndEventIdOptionalParams = { - filter - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( - eventTrackingId, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listImpactedResourcesBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts deleted file mode 100644 index 2279172bac12..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { - ImpactedResourcesListByTenantIdAndEventIdOptionalParams, - MicrosoftResourceHealth -} from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists impacted resources in the tenant by an event. - * - * @summary Lists impacted resources in the tenant by an event. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json - */ -async function listEventsByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const filter = "targetRegion eq 'westus'"; - const options: ImpactedResourcesListByTenantIdAndEventIdOptionalParams = { - filter - }; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.impactedResources.listByTenantIdAndEventId( - eventTrackingId, - options - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listEventsByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts deleted file mode 100644 index c0573dd1005e..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets the list of metadata entities. - * - * @summary Gets the list of metadata entities. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json - */ -async function getMetadata() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const name = "status"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.metadata.getEntity(name); - console.log(result); -} - -async function main() { - getMetadata(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts deleted file mode 100644 index c49556f29013..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Gets the list of metadata entities. - * - * @summary Gets the list of metadata entities. - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json - */ -async function getMetadata() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.metadata.list()) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - getMetadata(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts deleted file mode 100644 index 2cfe89f643c0..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts +++ /dev/null @@ -1,37 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists available operations for the resourcehealth resource provider - * - * @summary Lists available operations for the resourcehealth resource provider - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json - */ -async function getOperationsList() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = await client.operations.list(); - console.log(result); -} - -async function main() { - getOperationsList(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts deleted file mode 100644 index f33bee0fde45..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts +++ /dev/null @@ -1,42 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists impacted resources in the subscription by an event (Security Advisory). - * - * @summary Lists impacted resources in the subscription by an event (Security Advisory). - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json - */ -async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; - const eventTrackingId = "BC_1-FXZ"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( - eventTrackingId - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listSecurityAdvisoryImpactedResourcesBySubscriptionId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts deleted file mode 100644 index 5100e4156d50..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. -import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; -import { DefaultAzureCredential } from "@azure/identity"; -import * as dotenv from "dotenv"; - -dotenv.config(); - -/** - * This sample demonstrates how to Lists impacted resources in the tenant by an event (Security Advisory). - * - * @summary Lists impacted resources in the tenant by an event (Security Advisory). - * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json - */ -async function listSecurityAdvisoryImpactedResourcesByTenantId() { - const subscriptionId = - process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || - "00000000-0000-0000-0000-000000000000"; - const eventTrackingId = "BC_1-FXZ"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftResourceHealth(credential, subscriptionId); - const resArray = new Array(); - for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( - eventTrackingId - )) { - resArray.push(item); - } - console.log(resArray); -} - -async function main() { - listSecurityAdvisoryImpactedResourcesByTenantId(); -} - -main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json deleted file mode 100644 index e26ce2a6d8f7..000000000000 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "module": "commonjs", - "moduleResolution": "node", - "resolveJsonModule": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "strict": true, - "alwaysStrict": true, - "outDir": "dist", - "rootDir": "src" - }, - "include": [ - "src/**.ts" - ] -} diff --git a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts index 4f1b897e8cd0..80ae24e6bdf5 100644 --- a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts +++ b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts @@ -62,4 +62,16 @@ describe("ResourceHealth test", () => { const res = await client.operations.list(); console.log(res); }); + + it("availabilityStatuses listBySubscriptionId test", async function () { + const resArray = new Array(); + for await (let item of client.availabilityStatuses.listBySubscriptionId( + { + expand: "recommendedactions" + } + )) { + resArray.push(item); + } + console.log(resArray); + }); }) From 4677f1abbb51d365bc29216cbeb67ab0a0af78f4 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 30 Nov 2023 09:51:56 +0800 Subject: [PATCH 06/16] update --- sdk/resourcehealth/arm-resourcehealth/assets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcehealth/arm-resourcehealth/assets.json b/sdk/resourcehealth/arm-resourcehealth/assets.json index ca5d561eeae6..c0de5fb55ee3 100644 --- a/sdk/resourcehealth/arm-resourcehealth/assets.json +++ b/sdk/resourcehealth/arm-resourcehealth/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/resourcehealth/arm-resourcehealth", - "Tag": "js/resourcehealth/arm-resourcehealth_3fc276eaec" + "Tag": "js/resourcehealth/arm-resourcehealth_eaa7fd4494" } From 4801e3b3ad3f172bac5d8cf6d312cb45bdc52593 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 30 Nov 2023 10:07:35 +0800 Subject: [PATCH 07/16] update --- sdk/resourcehealth/arm-resourcehealth/assets.json | 2 +- .../test/resourcehealth_operations_test.spec.ts | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/sdk/resourcehealth/arm-resourcehealth/assets.json b/sdk/resourcehealth/arm-resourcehealth/assets.json index c0de5fb55ee3..bf21bd986b3e 100644 --- a/sdk/resourcehealth/arm-resourcehealth/assets.json +++ b/sdk/resourcehealth/arm-resourcehealth/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/resourcehealth/arm-resourcehealth", - "Tag": "js/resourcehealth/arm-resourcehealth_eaa7fd4494" + "Tag": "js/resourcehealth/arm-resourcehealth_7290fb6286" } diff --git a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts index 80ae24e6bdf5..eab60dc17ffe 100644 --- a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts +++ b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts @@ -17,6 +17,7 @@ import { createTestCredential } from "@azure-tools/test-credential"; import { assert } from "chai"; import { Context } from "mocha"; import { MicrosoftResourceHealth } from "../src/microsoftResourceHealth"; +import { AvailabilityStatusesListBySubscriptionIdOptionalParams } from "../src/models"; const replaceableVariables: Record = { AZURE_CLIENT_ID: "azure_client_id", @@ -63,12 +64,14 @@ describe("ResourceHealth test", () => { console.log(res); }); - it("availabilityStatuses listBySubscriptionId test", async function () { + it.only("availabilityStatuses listBySubscriptionId test", async function () { + const expand = "recommendedactions"; + const options: AvailabilityStatusesListBySubscriptionIdOptionalParams = { + expand + }; const resArray = new Array(); for await (let item of client.availabilityStatuses.listBySubscriptionId( - { - expand: "recommendedactions" - } + options )) { resArray.push(item); } From c6f958294ca36f97818e74124378f7e55766d852 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 30 Nov 2023 10:36:24 +0800 Subject: [PATCH 08/16] update --- .../test/resourcehealth_operations_test.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts index eab60dc17ffe..74645d7c5a9b 100644 --- a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts +++ b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts @@ -64,7 +64,7 @@ describe("ResourceHealth test", () => { console.log(res); }); - it.only("availabilityStatuses listBySubscriptionId test", async function () { + it("availabilityStatuses listBySubscriptionId test", async function () { const expand = "recommendedactions"; const options: AvailabilityStatusesListBySubscriptionIdOptionalParams = { expand From 363d7283daa3c7cffe334b9a1d5db66ed6f6692a Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Fri, 1 Dec 2023 13:43:32 +0800 Subject: [PATCH 09/16] update --- .../arm-resourcehealth/assets.json | 2 +- ...bilityStatusesListByResourceGroupSample.js | 2 +- ...ailsBySubscriptionIdAndTrackingIdSample.js | 5 +- ...tGetBySubscriptionIdAndTrackingIdSample.js | 2 +- .../impactedResourcesGetByTenantIdSample.js | 2 +- ...cesListBySubscriptionIdAndEventIdSample.js | 2 +- ...ResourcesListByTenantIdAndEventIdSample.js | 2 +- .../samples/v4-beta/javascript/package.json | 2 +- ...cesListBySubscriptionIdAndEventIdSample.js | 2 +- ...ResourcesListByTenantIdAndEventIdSample.js | 2 +- .../samples/v4-beta/typescript/package.json | 2 +- .../samples/v4/javascript/README.md | 98 ++++++++++++++++ ...availabilityStatusesGetByResourceSample.js | 37 ++++++ ...bilityStatusesListByResourceGroupSample.js | 44 +++++++ ...ilityStatusesListBySubscriptionIdSample.js | 40 +++++++ .../availabilityStatusesListSample.js | 38 ++++++ ...AvailabilityStatusesGetByResourceSample.js | 40 +++++++ .../childAvailabilityStatusesListSample.js | 39 ++++++ .../v4/javascript/childResourcesListSample.js | 38 ++++++ .../v4/javascript/emergingIssuesGetSample.js | 35 ++++++ .../v4/javascript/emergingIssuesListSample.js | 37 ++++++ ...ailsBySubscriptionIdAndTrackingIdSample.js | 36 ++++++ ...tchDetailsByTenantIdAndTrackingIdSample.js | 35 ++++++ ...tGetBySubscriptionIdAndTrackingIdSample.js | 43 +++++++ .../eventGetByTenantIdAndTrackingIdSample.js | 41 +++++++ .../eventsListBySingleResourceSample.js | 39 ++++++ .../eventsListBySubscriptionIdSample.js | 42 +++++++ .../javascript/eventsListByTenantIdSample.js | 43 +++++++ .../impactedResourcesGetByTenantIdSample.js | 39 ++++++ .../javascript/impactedResourcesGetSample.js | 35 ++++++ ...cesListBySubscriptionIdAndEventIdSample.js | 44 +++++++ ...ResourcesListByTenantIdAndEventIdSample.js | 45 +++++++ .../v4/javascript/metadataGetEntitySample.js | 35 ++++++ .../v4/javascript/metadataListSample.js | 37 ++++++ .../v4/javascript/operationsListSample.js | 34 ++++++ .../samples/v4/javascript/package.json | 32 +++++ .../samples/v4/javascript/sample.env | 4 + ...cesListBySubscriptionIdAndEventIdSample.js | 39 ++++++ ...ResourcesListByTenantIdAndEventIdSample.js | 40 +++++++ .../samples/v4/typescript/README.md | 111 ++++++++++++++++++ .../samples/v4/typescript/package.json | 41 +++++++ .../samples/v4/typescript/sample.env | 4 + ...availabilityStatusesGetByResourceSample.ts | 46 ++++++++ ...bilityStatusesListByResourceGroupSample.ts | 51 ++++++++ ...ilityStatusesListBySubscriptionIdSample.ts | 48 ++++++++ .../src/availabilityStatusesListSample.ts | 41 +++++++ ...AvailabilityStatusesGetByResourceSample.ts | 49 ++++++++ .../childAvailabilityStatusesListSample.ts | 42 +++++++ .../src/childResourcesListSample.ts | 41 +++++++ .../typescript/src/emergingIssuesGetSample.ts | 38 ++++++ .../src/emergingIssuesListSample.ts | 40 +++++++ ...ailsBySubscriptionIdAndTrackingIdSample.ts | 39 ++++++ ...tchDetailsByTenantIdAndTrackingIdSample.ts | 40 +++++++ ...tGetBySubscriptionIdAndTrackingIdSample.ts | 49 ++++++++ .../eventGetByTenantIdAndTrackingIdSample.ts | 50 ++++++++ .../src/eventsListBySingleResourceSample.ts | 44 +++++++ .../src/eventsListBySubscriptionIdSample.ts | 50 ++++++++ .../src/eventsListByTenantIdSample.ts | 49 ++++++++ .../impactedResourcesGetByTenantIdSample.ts | 42 +++++++ .../src/impactedResourcesGetSample.ts | 41 +++++++ ...cesListBySubscriptionIdAndEventIdSample.ts | 50 ++++++++ ...ResourcesListByTenantIdAndEventIdSample.ts | 51 ++++++++ .../typescript/src/metadataGetEntitySample.ts | 38 ++++++ .../v4/typescript/src/metadataListSample.ts | 40 +++++++ .../v4/typescript/src/operationsListSample.ts | 37 ++++++ ...cesListBySubscriptionIdAndEventIdSample.ts | 42 +++++++ ...ResourcesListByTenantIdAndEventIdSample.ts | 43 +++++++ .../samples/v4/typescript/tsconfig.json | 17 +++ .../resourcehealth_operations_test.spec.ts | 15 --- 69 files changed, 2396 insertions(+), 27 deletions(-) create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts create mode 100644 sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json diff --git a/sdk/resourcehealth/arm-resourcehealth/assets.json b/sdk/resourcehealth/arm-resourcehealth/assets.json index bf21bd986b3e..ca5d561eeae6 100644 --- a/sdk/resourcehealth/arm-resourcehealth/assets.json +++ b/sdk/resourcehealth/arm-resourcehealth/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/resourcehealth/arm-resourcehealth", - "Tag": "js/resourcehealth/arm-resourcehealth_7290fb6286" + "Tag": "js/resourcehealth/arm-resourcehealth_3fc276eaec" } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js index ae113d37384b..67251f37028d 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/availabilityStatusesListByResourceGroupSample.js @@ -30,7 +30,7 @@ async function listByResourceGroup() { const resArray = new Array(); for await (let item of client.availabilityStatuses.listByResourceGroup( resourceGroupName, - options, + options )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js index 1da883bbd8dc..1467797c16f6 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js @@ -23,8 +23,9 @@ async function eventDetailsBySubscriptionIdAndTrackingId() { const eventTrackingId = "eventTrackingId"; const credential = new DefaultAzureCredential(); const client = new MicrosoftResourceHealth(credential, subscriptionId); - const result = - await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId(eventTrackingId); + const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( + eventTrackingId + ); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js index 939b7c8c173a..b66d475d5d31 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js @@ -31,7 +31,7 @@ async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { const client = new MicrosoftResourceHealth(credential, subscriptionId); const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( eventTrackingId, - options, + options ); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js index 960da4317cbe..e2ab4ef51d28 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesGetByTenantIdSample.js @@ -25,7 +25,7 @@ async function impactedResourcesGet() { const client = new MicrosoftResourceHealth(credential); const result = await client.impactedResources.getByTenantId( eventTrackingId, - impactedResourceName, + impactedResourceName ); console.log(result); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js index 7e7b1065fdba..70e9caf8bc58 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -30,7 +30,7 @@ async function listImpactedResourcesBySubscriptionId() { const resArray = new Array(); for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( eventTrackingId, - options, + options )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js index 8da04034e3ec..03d7af521b8b 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/impactedResourcesListByTenantIdAndEventIdSample.js @@ -29,7 +29,7 @@ async function listEventsByTenantId() { const resArray = new Array(); for await (let item of client.impactedResources.listByTenantIdAndEventId( eventTrackingId, - options, + options )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json index 9bf832fff446..44974222df78 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-resourcehealth": "next", "dotenv": "latest", - "@azure/identity": "^3.3.0" + "@azure/identity": "^2.0.1" } } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js index 2b9eb1273e02..374b9db44cf8 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -25,7 +25,7 @@ async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { const client = new MicrosoftResourceHealth(credential, subscriptionId); const resArray = new Array(); for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( - eventTrackingId, + eventTrackingId )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js index dc4081e18d10..1617ad91ab86 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js @@ -24,7 +24,7 @@ async function listSecurityAdvisoryImpactedResourcesByTenantId() { const client = new MicrosoftResourceHealth(credential); const resArray = new Array(); for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( - eventTrackingId, + eventTrackingId )) { resArray.push(item); } diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json index 40d39a89ed4a..863bad702612 100644 --- a/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4-beta/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-resourcehealth": "next", "dotenv": "latest", - "@azure/identity": "^3.3.0" + "@azure/identity": "^2.0.1" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md new file mode 100644 index 000000000000..b1757a56da37 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/README.md @@ -0,0 +1,98 @@ +# client library samples for JavaScript + +These sample programs show how to use the JavaScript client libraries for in some common scenarios. + +| **File Name** | **Description** | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [availabilityStatusesGetByResourceSample.js][availabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json | +| [availabilityStatusesListByResourceGroupSample.js][availabilitystatuseslistbyresourcegroupsample] | Lists the current availability status for all the resources in the resource group. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json | +| [availabilityStatusesListBySubscriptionIdSample.js][availabilitystatuseslistbysubscriptionidsample] | Lists the current availability status for all the resources in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json | +| [availabilityStatusesListSample.js][availabilitystatuseslistsample] | Lists all historical availability transitions and impacting events for a single resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json | +| [childAvailabilityStatusesGetByResourceSample.js][childavailabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json | +| [childAvailabilityStatusesListSample.js][childavailabilitystatuseslistsample] | Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json | +| [childResourcesListSample.js][childresourceslistsample] | Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json | +| [emergingIssuesGetSample.js][emergingissuesgetsample] | Gets Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json | +| [emergingIssuesListSample.js][emergingissueslistsample] | Lists Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json | +| [eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js][eventfetchdetailsbysubscriptionidandtrackingidsample] | Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json | +| [eventFetchDetailsByTenantIdAndTrackingIdSample.js][eventfetchdetailsbytenantidandtrackingidsample] | Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json | +| [eventGetBySubscriptionIdAndTrackingIdSample.js][eventgetbysubscriptionidandtrackingidsample] | Service health event in the subscription by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json | +| [eventGetByTenantIdAndTrackingIdSample.js][eventgetbytenantidandtrackingidsample] | Service health event in the tenant by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json | +| [eventsListBySingleResourceSample.js][eventslistbysingleresourcesample] | Lists current service health events for given resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json | +| [eventsListBySubscriptionIdSample.js][eventslistbysubscriptionidsample] | Lists service health events in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json | +| [eventsListByTenantIdSample.js][eventslistbytenantidsample] | Lists current service health events in the tenant. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json | +| [impactedResourcesGetByTenantIdSample.js][impactedresourcesgetbytenantidsample] | Gets the specific impacted resource in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json | +| [impactedResourcesGetSample.js][impactedresourcesgetsample] | Gets the specific impacted resource in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json | +| [impactedResourcesListBySubscriptionIdAndEventIdSample.js][impactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json | +| [impactedResourcesListByTenantIdAndEventIdSample.js][impactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json | +| [metadataGetEntitySample.js][metadatagetentitysample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json | +| [metadataListSample.js][metadatalistsample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json | +| [operationsListSample.js][operationslistsample] | Lists available operations for the resourcehealth resource provider x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json | +| [securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js][securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json | +| [securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js][securityadvisoryimpactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json | + +## Prerequisites + +The sample programs are compatible with [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). + +You need [an Azure subscription][freesub] to run these sample programs. + +Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. + +Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. + +3. Run whichever samples you like (note that some samples may require additional setup, see the table above): + +```bash +node availabilityStatusesGetByResourceSample.js +``` + +Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): + +```bash +npx cross-env RESOURCEHEALTH_SUBSCRIPTION_ID="" node availabilityStatusesGetByResourceSample.js +``` + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[availabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js +[availabilitystatuseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js +[availabilitystatuseslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js +[availabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js +[childavailabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js +[childavailabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js +[childresourceslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js +[emergingissuesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js +[emergingissueslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js +[eventfetchdetailsbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js +[eventfetchdetailsbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js +[eventgetbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js +[eventgetbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js +[eventslistbysingleresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js +[eventslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js +[eventslistbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js +[impactedresourcesgetbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js +[impactedresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js +[impactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js +[impactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js +[metadatagetentitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js +[metadatalistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js +[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js +[securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js +[securityadvisoryimpactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js +[apiref]: https://docs.microsoft.com/javascript/api/@azure/arm-resourcehealth?view=azure-node-preview +[freesub]: https://azure.microsoft.com/free/ +[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth/README.md diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js new file mode 100644 index 000000000000..e3a727ae0233 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesGetByResourceSample.js @@ -0,0 +1,37 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets current availability status for a single resource + * + * @summary Gets current availability status for a single resource + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json + */ +async function getCurrentHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const expand = "recommendedactions"; + const options = { expand }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.availabilityStatuses.getByResource(resourceUri, options); + console.log(result); +} + +async function main() { + getCurrentHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js new file mode 100644 index 000000000000..d5e1c15602b2 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListByResourceGroupSample.js @@ -0,0 +1,44 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists the current availability status for all the resources in the resource group. + * + * @summary Lists the current availability status for all the resources in the resource group. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json + */ +async function listByResourceGroup() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const resourceGroupName = process.env["RESOURCEHEALTH_RESOURCE_GROUP"] || "resourceGroupName"; + const expand = "recommendedactions"; + const options = { + expand, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.listByResourceGroup( + resourceGroupName, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listByResourceGroup(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js new file mode 100644 index 000000000000..92d8a33f4fe9 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListBySubscriptionIdSample.js @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists the current availability status for all the resources in the subscription. + * + * @summary Lists the current availability status for all the resources in the subscription. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json + */ +async function listHealthBySubscriptionId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const expand = "recommendedactions"; + const options = { + expand, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.listBySubscriptionId(options)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listHealthBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js new file mode 100644 index 000000000000..84c63053bea5 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/availabilityStatusesListSample.js @@ -0,0 +1,38 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists all historical availability transitions and impacting events for a single resource. + * + * @summary Lists all historical availability transitions and impacting events for a single resource. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json + */ +async function getHealthHistoryByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getHealthHistoryByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js new file mode 100644 index 000000000000..77c96f22121f --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesGetByResourceSample.js @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets current availability status for a single resource + * + * @summary Gets current availability status for a single resource + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json + */ +async function getChildCurrentHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; + const expand = "recommendedactions"; + const options = { + expand, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.childAvailabilityStatuses.getByResource(resourceUri, options); + console.log(result); +} + +async function main() { + getChildCurrentHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js new file mode 100644 index 000000000000..f5707da3ddb3 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childAvailabilityStatusesListSample.js @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status + * + * @summary Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json + */ +async function getChildHealthHistoryByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.childAvailabilityStatuses.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getChildHealthHistoryByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js new file mode 100644 index 000000000000..908e49274398 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/childResourcesListSample.js @@ -0,0 +1,38 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health + * + * @summary Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json + */ +async function getCurrentChildHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.childResources.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getCurrentChildHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js new file mode 100644 index 000000000000..a66f42052c2b --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesGetSample.js @@ -0,0 +1,35 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets Azure services' emerging issues. + * + * @summary Gets Azure services' emerging issues. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json + */ +async function getEmergingIssues() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const issueName = "default"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.emergingIssues.get(issueName); + console.log(result); +} + +async function main() { + getEmergingIssues(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js new file mode 100644 index 000000000000..41d8a6836a70 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/emergingIssuesListSample.js @@ -0,0 +1,37 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists Azure services' emerging issues. + * + * @summary Lists Azure services' emerging issues. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json + */ +async function getEmergingIssues() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.emergingIssues.list()) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getEmergingIssues(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js new file mode 100644 index 000000000000..762d1f763fa0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.js @@ -0,0 +1,36 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * + * @summary Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json + */ +async function eventDetailsBySubscriptionIdAndTrackingId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "eventTrackingId"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( + eventTrackingId + ); + console.log(result); +} + +async function main() { + eventDetailsBySubscriptionIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js new file mode 100644 index 000000000000..8c32fea051f0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventFetchDetailsByTenantIdAndTrackingIdSample.js @@ -0,0 +1,35 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * + * @summary Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json + */ +async function eventDetailsByTenantIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "eventTrackingId"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.fetchDetailsByTenantIdAndTrackingId(eventTrackingId); + console.log(result); +} + +async function main() { + eventDetailsByTenantIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js new file mode 100644 index 000000000000..bf77daecc17a --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetBySubscriptionIdAndTrackingIdSample.js @@ -0,0 +1,43 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Service health event in the subscription by event tracking id + * + * @summary Service health event in the subscription by event tracking id + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json + */ +async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const filter = "properties/status eq 'Active'"; + const queryStartTime = "7/10/2022"; + const eventTrackingId = "eventTrackingId"; + const options = { + filter, + queryStartTime, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( + eventTrackingId, + options + ); + console.log(result); +} + +async function main() { + securityAdvisoriesEventBySubscriptionIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js new file mode 100644 index 000000000000..c6ecb51ccccb --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventGetByTenantIdAndTrackingIdSample.js @@ -0,0 +1,41 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Service health event in the tenant by event tracking id + * + * @summary Service health event in the tenant by event tracking id + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json + */ +async function eventByTenantIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const filter = "properties/status eq 'Active'"; + const queryStartTime = "7/10/2022"; + const eventTrackingId = "eventTrackingId"; + const options = { + filter, + queryStartTime, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.getByTenantIdAndTrackingId(eventTrackingId, options); + console.log(result); +} + +async function main() { + eventByTenantIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js new file mode 100644 index 000000000000..19aeba5cb147 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySingleResourceSample.js @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists current service health events for given resource. + * + * @summary Lists current service health events for given resource. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json + */ +async function listEventsBySingleResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.Compute/virtualMachines/rhctestenvV1PI"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listBySingleResource(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsBySingleResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js new file mode 100644 index 000000000000..f04b1250bcb1 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListBySubscriptionIdSample.js @@ -0,0 +1,42 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists service health events in the subscription. + * + * @summary Lists service health events in the subscription. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json + */ +async function listEventsBySubscriptionId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const filter = "service eq 'Virtual Machines' or region eq 'West US'"; + const queryStartTime = "7/24/2020"; + const options = { + filter, + queryStartTime, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listBySubscriptionId(options)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js new file mode 100644 index 000000000000..f7e27e718483 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/eventsListByTenantIdSample.js @@ -0,0 +1,43 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists current service health events in the tenant. + * + * @summary Lists current service health events in the tenant. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json + */ +async function listEventsByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const filter = "service eq 'Virtual Machines' or region eq 'West US'"; + const queryStartTime = "7/24/2020"; + const options = { + filter, + queryStartTime, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listByTenantId(options)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js new file mode 100644 index 000000000000..42d602b8cd6e --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetByTenantIdSample.js @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets the specific impacted resource in the tenant by an event. + * + * @summary Gets the specific impacted resource in the tenant by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json + */ +async function impactedResourcesGet() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const impactedResourceName = "abc-123-ghj-456"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.impactedResources.getByTenantId( + eventTrackingId, + impactedResourceName + ); + console.log(result); +} + +async function main() { + impactedResourcesGet(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js new file mode 100644 index 000000000000..bed1f7b3dbeb --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesGetSample.js @@ -0,0 +1,35 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets the specific impacted resource in the subscription by an event. + * + * @summary Gets the specific impacted resource in the subscription by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json + */ +async function impactedResourcesGet() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const impactedResourceName = "abc-123-ghj-456"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.impactedResources.get(eventTrackingId, impactedResourceName); + console.log(result); +} + +async function main() { + impactedResourcesGet(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js new file mode 100644 index 000000000000..123c648dd0e9 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -0,0 +1,44 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists impacted resources in the subscription by an event. + * + * @summary Lists impacted resources in the subscription by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json + */ +async function listImpactedResourcesBySubscriptionId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const filter = "targetRegion eq 'westus'"; + const options = { + filter, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( + eventTrackingId, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listImpactedResourcesBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js new file mode 100644 index 000000000000..3cf4caf63913 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/impactedResourcesListByTenantIdAndEventIdSample.js @@ -0,0 +1,45 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists impacted resources in the tenant by an event. + * + * @summary Lists impacted resources in the tenant by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json + */ +async function listEventsByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const filter = "targetRegion eq 'westus'"; + const options = { + filter, + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.impactedResources.listByTenantIdAndEventId( + eventTrackingId, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js new file mode 100644 index 000000000000..1962de0cf4b6 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataGetEntitySample.js @@ -0,0 +1,35 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets the list of metadata entities. + * + * @summary Gets the list of metadata entities. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json + */ +async function getMetadata() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const name = "status"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.metadata.getEntity(name); + console.log(result); +} + +async function main() { + getMetadata(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js new file mode 100644 index 000000000000..77427004bae8 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/metadataListSample.js @@ -0,0 +1,37 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Gets the list of metadata entities. + * + * @summary Gets the list of metadata entities. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json + */ +async function getMetadata() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.metadata.list()) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getMetadata(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js new file mode 100644 index 000000000000..978dda376541 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/operationsListSample.js @@ -0,0 +1,34 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists available operations for the resourcehealth resource provider + * + * @summary Lists available operations for the resourcehealth resource provider + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json + */ +async function getOperationsList() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.operations.list(); + console.log(result); +} + +async function main() { + getOperationsList(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json new file mode 100644 index 000000000000..62460d6f3725 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/package.json @@ -0,0 +1,32 @@ +{ + "name": "@azure-samples/arm-resourcehealth-js", + "private": true, + "version": "1.0.0", + "description": " client library samples for JavaScript", + "engines": { + "node": ">=18.0.0" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Azure/azure-sdk-for-js.git", + "directory": "sdk/resourcehealth/arm-resourcehealth" + }, + "keywords": [ + "node", + "azure", + "typescript", + "browser", + "isomorphic" + ], + "author": "Microsoft Corporation", + "license": "MIT", + "bugs": { + "url": "https://github.com/Azure/azure-sdk-for-js/issues" + }, + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth", + "dependencies": { + "@azure/arm-resourcehealth": "latest", + "dotenv": "latest", + "@azure/identity": "^2.0.1" + } +} diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env new file mode 100644 index 000000000000..672847a3fea0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/sample.env @@ -0,0 +1,4 @@ +# App registration secret for AAD authentication +AZURE_CLIENT_SECRET= +AZURE_CLIENT_ID= +AZURE_TENANT_ID= \ No newline at end of file diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js new file mode 100644 index 000000000000..1339c45eea50 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.js @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists impacted resources in the subscription by an event (Security Advisory). + * + * @summary Lists impacted resources in the subscription by an event (Security Advisory). + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json + */ +async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { + const subscriptionId = process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( + eventTrackingId + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listSecurityAdvisoryImpactedResourcesBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js new file mode 100644 index 000000000000..06f94eac00b4 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/javascript/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.js @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +const { MicrosoftResourceHealth } = require("@azure/arm-resourcehealth"); +const { DefaultAzureCredential } = require("@azure/identity"); +require("dotenv").config(); + +/** + * This sample demonstrates how to Lists impacted resources in the tenant by an event (Security Advisory). + * + * @summary Lists impacted resources in the tenant by an event (Security Advisory). + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json + */ +async function listSecurityAdvisoryImpactedResourcesByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( + eventTrackingId + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listSecurityAdvisoryImpactedResourcesByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md new file mode 100644 index 000000000000..80fef1b56a62 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/README.md @@ -0,0 +1,111 @@ +# client library samples for TypeScript + +These sample programs show how to use the TypeScript client libraries for in some common scenarios. + +| **File Name** | **Description** | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| [availabilityStatusesGetByResourceSample.ts][availabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json | +| [availabilityStatusesListByResourceGroupSample.ts][availabilitystatuseslistbyresourcegroupsample] | Lists the current availability status for all the resources in the resource group. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json | +| [availabilityStatusesListBySubscriptionIdSample.ts][availabilitystatuseslistbysubscriptionidsample] | Lists the current availability status for all the resources in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json | +| [availabilityStatusesListSample.ts][availabilitystatuseslistsample] | Lists all historical availability transitions and impacting events for a single resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json | +| [childAvailabilityStatusesGetByResourceSample.ts][childavailabilitystatusesgetbyresourcesample] | Gets current availability status for a single resource x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json | +| [childAvailabilityStatusesListSample.ts][childavailabilitystatuseslistsample] | Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json | +| [childResourcesListSample.ts][childresourceslistsample] | Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json | +| [emergingIssuesGetSample.ts][emergingissuesgetsample] | Gets Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json | +| [emergingIssuesListSample.ts][emergingissueslistsample] | Lists Azure services' emerging issues. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json | +| [eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts][eventfetchdetailsbysubscriptionidandtrackingidsample] | Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json | +| [eventFetchDetailsByTenantIdAndTrackingIdSample.ts][eventfetchdetailsbytenantidandtrackingidsample] | Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json | +| [eventGetBySubscriptionIdAndTrackingIdSample.ts][eventgetbysubscriptionidandtrackingidsample] | Service health event in the subscription by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json | +| [eventGetByTenantIdAndTrackingIdSample.ts][eventgetbytenantidandtrackingidsample] | Service health event in the tenant by event tracking id x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json | +| [eventsListBySingleResourceSample.ts][eventslistbysingleresourcesample] | Lists current service health events for given resource. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json | +| [eventsListBySubscriptionIdSample.ts][eventslistbysubscriptionidsample] | Lists service health events in the subscription. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json | +| [eventsListByTenantIdSample.ts][eventslistbytenantidsample] | Lists current service health events in the tenant. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json | +| [impactedResourcesGetByTenantIdSample.ts][impactedresourcesgetbytenantidsample] | Gets the specific impacted resource in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json | +| [impactedResourcesGetSample.ts][impactedresourcesgetsample] | Gets the specific impacted resource in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json | +| [impactedResourcesListBySubscriptionIdAndEventIdSample.ts][impactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json | +| [impactedResourcesListByTenantIdAndEventIdSample.ts][impactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json | +| [metadataGetEntitySample.ts][metadatagetentitysample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json | +| [metadataListSample.ts][metadatalistsample] | Gets the list of metadata entities. x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json | +| [operationsListSample.ts][operationslistsample] | Lists available operations for the resourcehealth resource provider x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json | +| [securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts][securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample] | Lists impacted resources in the subscription by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json | +| [securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts][securityadvisoryimpactedresourceslistbytenantidandeventidsample] | Lists impacted resources in the tenant by an event (Security Advisory). x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json | + +## Prerequisites + +The sample programs are compatible with [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule). + +Before running the samples in Node, they must be compiled to JavaScript using the TypeScript compiler. For more information on TypeScript, see the [TypeScript documentation][typescript]. Install the TypeScript compiler using: + +```bash +npm install -g typescript +``` + +You need [an Azure subscription][freesub] to run these sample programs. + +Samples retrieve credentials to access the service endpoint from environment variables. Alternatively, edit the source code to include the appropriate credentials. See each individual sample for details on which environment variables/credentials it requires to function. + +Adapting the samples to run in the browser may require some additional consideration. For details, please see the [package README][package]. + +## Setup + +To run the samples using the published version of the package: + +1. Install the dependencies using `npm`: + +```bash +npm install +``` + +2. Compile the samples: + +```bash +npm run build +``` + +3. Edit the file `sample.env`, adding the correct credentials to access the Azure service and run the samples. Then rename the file from `sample.env` to just `.env`. The sample programs will read this file automatically. + +4. Run whichever samples you like (note that some samples may require additional setup, see the table above): + +```bash +node dist/availabilityStatusesGetByResourceSample.js +``` + +Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform): + +```bash +npx cross-env RESOURCEHEALTH_SUBSCRIPTION_ID="" node dist/availabilityStatusesGetByResourceSample.js +``` + +## Next Steps + +Take a look at our [API Documentation][apiref] for more information about the APIs that are available in the clients. + +[availabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts +[availabilitystatuseslistbyresourcegroupsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts +[availabilitystatuseslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts +[availabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts +[childavailabilitystatusesgetbyresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts +[childavailabilitystatuseslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts +[childresourceslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts +[emergingissuesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts +[emergingissueslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts +[eventfetchdetailsbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts +[eventfetchdetailsbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts +[eventgetbysubscriptionidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts +[eventgetbytenantidandtrackingidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts +[eventslistbysingleresourcesample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts +[eventslistbysubscriptionidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts +[eventslistbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts +[impactedresourcesgetbytenantidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts +[impactedresourcesgetsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts +[impactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts +[impactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts +[metadatagetentitysample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts +[metadatalistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts +[operationslistsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts +[securityadvisoryimpactedresourceslistbysubscriptionidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts +[securityadvisoryimpactedresourceslistbytenantidandeventidsample]: https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts +[apiref]: https://docs.microsoft.com/javascript/api/@azure/arm-resourcehealth?view=azure-node-preview +[freesub]: https://azure.microsoft.com/free/ +[package]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth/README.md +[typescript]: https://www.typescriptlang.org/docs/home.html diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json new file mode 100644 index 000000000000..ea329f62f1c6 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/package.json @@ -0,0 +1,41 @@ +{ + "name": "@azure-samples/arm-resourcehealth-ts", + "private": true, + "version": "1.0.0", + "description": " client library samples for TypeScript", + "engines": { + "node": ">=18.0.0" + }, + "scripts": { + "build": "tsc", + "prebuild": "rimraf dist/" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/Azure/azure-sdk-for-js.git", + "directory": "sdk/resourcehealth/arm-resourcehealth" + }, + "keywords": [ + "node", + "azure", + "typescript", + "browser", + "isomorphic" + ], + "author": "Microsoft Corporation", + "license": "MIT", + "bugs": { + "url": "https://github.com/Azure/azure-sdk-for-js/issues" + }, + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/resourcehealth/arm-resourcehealth", + "dependencies": { + "@azure/arm-resourcehealth": "latest", + "dotenv": "latest", + "@azure/identity": "^2.0.1" + }, + "devDependencies": { + "@types/node": "^18.0.0", + "typescript": "~5.2.0", + "rimraf": "latest" + } +} diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env new file mode 100644 index 000000000000..672847a3fea0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/sample.env @@ -0,0 +1,4 @@ +# App registration secret for AAD authentication +AZURE_CLIENT_SECRET= +AZURE_CLIENT_ID= +AZURE_TENANT_ID= \ No newline at end of file diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts new file mode 100644 index 000000000000..9a6de7d115dc --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesGetByResourceSample.ts @@ -0,0 +1,46 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + AvailabilityStatusesGetByResourceOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets current availability status for a single resource + * + * @summary Gets current availability status for a single resource + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatus_GetByResource.json + */ +async function getCurrentHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const expand = "recommendedactions"; + const options: AvailabilityStatusesGetByResourceOptionalParams = { expand }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.availabilityStatuses.getByResource( + resourceUri, + options + ); + console.log(result); +} + +async function main() { + getCurrentHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts new file mode 100644 index 000000000000..288966705df0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListByResourceGroupSample.ts @@ -0,0 +1,51 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + AvailabilityStatusesListByResourceGroupOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists the current availability status for all the resources in the resource group. + * + * @summary Lists the current availability status for all the resources in the resource group. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListByResourceGroup.json + */ +async function listByResourceGroup() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const resourceGroupName = + process.env["RESOURCEHEALTH_RESOURCE_GROUP"] || "resourceGroupName"; + const expand = "recommendedactions"; + const options: AvailabilityStatusesListByResourceGroupOptionalParams = { + expand + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.listByResourceGroup( + resourceGroupName, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listByResourceGroup(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts new file mode 100644 index 000000000000..c1204ae9a395 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListBySubscriptionIdSample.ts @@ -0,0 +1,48 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + AvailabilityStatusesListBySubscriptionIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists the current availability status for all the resources in the subscription. + * + * @summary Lists the current availability status for all the resources in the subscription. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_ListBySubscriptionId.json + */ +async function listHealthBySubscriptionId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const expand = "recommendedactions"; + const options: AvailabilityStatusesListBySubscriptionIdOptionalParams = { + expand + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.listBySubscriptionId( + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listHealthBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts new file mode 100644 index 000000000000..ad9f65f07576 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/availabilityStatusesListSample.ts @@ -0,0 +1,41 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists all historical availability transitions and impacting events for a single resource. + * + * @summary Lists all historical availability transitions and impacting events for a single resource. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/AvailabilityStatuses_List.json + */ +async function getHealthHistoryByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.availabilityStatuses.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getHealthHistoryByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts new file mode 100644 index 000000000000..8035a19dab11 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesGetByResourceSample.ts @@ -0,0 +1,49 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + ChildAvailabilityStatusesGetByResourceOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets current availability status for a single resource + * + * @summary Gets current availability status for a single resource + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatus_GetByResource.json + */ +async function getChildCurrentHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; + const expand = "recommendedactions"; + const options: ChildAvailabilityStatusesGetByResourceOptionalParams = { + expand + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.childAvailabilityStatuses.getByResource( + resourceUri, + options + ); + console.log(result); +} + +async function main() { + getChildCurrentHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts new file mode 100644 index 000000000000..fd1848deeebc --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childAvailabilityStatusesListSample.ts @@ -0,0 +1,42 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status + * + * @summary Lists the historical availability statuses for a single child resource. Use the nextLink property in the response to get the next page of availability status + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildAvailabilityStatuses_List.json + */ +async function getChildHealthHistoryByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/227b734f-e14f-4de6-b7fc-3190c21e69f6/resourceGroups/JUHACKETRHCTEST/providers/Microsoft.Compute/virtualMachineScaleSets/rhctest/virtualMachines/4"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.childAvailabilityStatuses.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getChildHealthHistoryByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts new file mode 100644 index 000000000000..13d61813cefd --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/childResourcesListSample.ts @@ -0,0 +1,41 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health + * + * @summary Lists the all the children and its current health status for a parent resource. Use the nextLink property in the response to get the next page of children current health + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ChildResources_List.json + */ +async function getCurrentChildHealthByResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = "resourceUri"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.childResources.list(resourceUri)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getCurrentChildHealthByResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts new file mode 100644 index 000000000000..f0cf74e7709f --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesGetSample.ts @@ -0,0 +1,38 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets Azure services' emerging issues. + * + * @summary Gets Azure services' emerging issues. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_Get.json + */ +async function getEmergingIssues() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const issueName = "default"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.emergingIssues.get(issueName); + console.log(result); +} + +async function main() { + getEmergingIssues(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts new file mode 100644 index 000000000000..2f08ecfd9d1a --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/emergingIssuesListSample.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists Azure services' emerging issues. + * + * @summary Lists Azure services' emerging issues. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/EmergingIssues_List.json + */ +async function getEmergingIssues() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.emergingIssues.list()) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getEmergingIssues(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts new file mode 100644 index 000000000000..cedf5af120da --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsBySubscriptionIdAndTrackingIdSample.ts @@ -0,0 +1,39 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * + * @summary Service health event details in the subscription by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsBySubscriptionIdAndTrackingId.json + */ +async function eventDetailsBySubscriptionIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "eventTrackingId"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.fetchDetailsBySubscriptionIdAndTrackingId( + eventTrackingId + ); + console.log(result); +} + +async function main() { + eventDetailsBySubscriptionIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts new file mode 100644 index 000000000000..e4919b6e45a3 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventFetchDetailsByTenantIdAndTrackingIdSample.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * + * @summary Service health event details in the tenant by event tracking id. This can be used to fetch sensitive properties for Security Advisory events + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_fetchDetailsByTenantIdAndTrackingId.json + */ +async function eventDetailsByTenantIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "eventTrackingId"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.fetchDetailsByTenantIdAndTrackingId( + eventTrackingId + ); + console.log(result); +} + +async function main() { + eventDetailsByTenantIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts new file mode 100644 index 000000000000..8cf525bf28e1 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetBySubscriptionIdAndTrackingIdSample.ts @@ -0,0 +1,49 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + EventGetBySubscriptionIdAndTrackingIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Service health event in the subscription by event tracking id + * + * @summary Service health event in the subscription by event tracking id + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetBySubscriptionIdAndTrackingId.json + */ +async function securityAdvisoriesEventBySubscriptionIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const filter = "properties/status eq 'Active'"; + const queryStartTime = "7/10/2022"; + const eventTrackingId = "eventTrackingId"; + const options: EventGetBySubscriptionIdAndTrackingIdOptionalParams = { + filter, + queryStartTime + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.getBySubscriptionIdAndTrackingId( + eventTrackingId, + options + ); + console.log(result); +} + +async function main() { + securityAdvisoriesEventBySubscriptionIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts new file mode 100644 index 000000000000..9c4a716d5811 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventGetByTenantIdAndTrackingIdSample.ts @@ -0,0 +1,50 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + EventGetByTenantIdAndTrackingIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Service health event in the tenant by event tracking id + * + * @summary Service health event in the tenant by event tracking id + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Event_GetByTenantIdAndTrackingId.json + */ +async function eventByTenantIdAndTrackingId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const filter = "properties/status eq 'Active'"; + const queryStartTime = "7/10/2022"; + const eventTrackingId = "eventTrackingId"; + const options: EventGetByTenantIdAndTrackingIdOptionalParams = { + filter, + queryStartTime + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.eventOperations.getByTenantIdAndTrackingId( + eventTrackingId, + options + ); + console.log(result); +} + +async function main() { + eventByTenantIdAndTrackingId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts new file mode 100644 index 000000000000..c9a08f17d13c --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySingleResourceSample.ts @@ -0,0 +1,44 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists current service health events for given resource. + * + * @summary Lists current service health events for given resource. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySingleResource.json + */ +async function listEventsBySingleResource() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const resourceUri = + "subscriptions/4abcdefgh-ijkl-mnop-qrstuvwxyz/resourceGroups/rhctestenv/providers/Microsoft.Compute/virtualMachines/rhctestenvV1PI"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listBySingleResource( + resourceUri + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsBySingleResource(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts new file mode 100644 index 000000000000..28ef72dd8ef9 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListBySubscriptionIdSample.ts @@ -0,0 +1,50 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + EventsListBySubscriptionIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists service health events in the subscription. + * + * @summary Lists service health events in the subscription. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListBySubscriptionId.json + */ +async function listEventsBySubscriptionId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const filter = "service eq 'Virtual Machines' or region eq 'West US'"; + const queryStartTime = "7/24/2020"; + const options: EventsListBySubscriptionIdOptionalParams = { + filter, + queryStartTime + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listBySubscriptionId( + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts new file mode 100644 index 000000000000..6833ec9649ae --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/eventsListByTenantIdSample.ts @@ -0,0 +1,49 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + EventsListByTenantIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists current service health events in the tenant. + * + * @summary Lists current service health events in the tenant. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Events_ListByTenantId.json + */ +async function listEventsByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const filter = "service eq 'Virtual Machines' or region eq 'West US'"; + const queryStartTime = "7/24/2020"; + const options: EventsListByTenantIdOptionalParams = { + filter, + queryStartTime + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.eventsOperations.listByTenantId(options)) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts new file mode 100644 index 000000000000..fbd589c8e92a --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetByTenantIdSample.ts @@ -0,0 +1,42 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets the specific impacted resource in the tenant by an event. + * + * @summary Gets the specific impacted resource in the tenant by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_GetByTenantId.json + */ +async function impactedResourcesGet() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const impactedResourceName = "abc-123-ghj-456"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.impactedResources.getByTenantId( + eventTrackingId, + impactedResourceName + ); + console.log(result); +} + +async function main() { + impactedResourcesGet(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts new file mode 100644 index 000000000000..778d79451772 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesGetSample.ts @@ -0,0 +1,41 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets the specific impacted resource in the subscription by an event. + * + * @summary Gets the specific impacted resource in the subscription by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_Get.json + */ +async function impactedResourcesGet() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const impactedResourceName = "abc-123-ghj-456"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.impactedResources.get( + eventTrackingId, + impactedResourceName + ); + console.log(result); +} + +async function main() { + impactedResourcesGet(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts new file mode 100644 index 000000000000..f585b4d5c6e0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListBySubscriptionIdAndEventIdSample.ts @@ -0,0 +1,50 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + ImpactedResourcesListBySubscriptionIdAndEventIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists impacted resources in the subscription by an event. + * + * @summary Lists impacted resources in the subscription by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListBySubscriptionId_ListByEventId.json + */ +async function listImpactedResourcesBySubscriptionId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const filter = "targetRegion eq 'westus'"; + const options: ImpactedResourcesListBySubscriptionIdAndEventIdOptionalParams = { + filter + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.impactedResources.listBySubscriptionIdAndEventId( + eventTrackingId, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listImpactedResourcesBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts new file mode 100644 index 000000000000..2279172bac12 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/impactedResourcesListByTenantIdAndEventIdSample.ts @@ -0,0 +1,51 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { + ImpactedResourcesListByTenantIdAndEventIdOptionalParams, + MicrosoftResourceHealth +} from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists impacted resources in the tenant by an event. + * + * @summary Lists impacted resources in the tenant by an event. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/ImpactedResources_ListByTenantId_ListByEventId.json + */ +async function listEventsByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const filter = "targetRegion eq 'westus'"; + const options: ImpactedResourcesListByTenantIdAndEventIdOptionalParams = { + filter + }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.impactedResources.listByTenantIdAndEventId( + eventTrackingId, + options + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listEventsByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts new file mode 100644 index 000000000000..c0573dd1005e --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataGetEntitySample.ts @@ -0,0 +1,38 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets the list of metadata entities. + * + * @summary Gets the list of metadata entities. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_GetEntity.json + */ +async function getMetadata() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const name = "status"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.metadata.getEntity(name); + console.log(result); +} + +async function main() { + getMetadata(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts new file mode 100644 index 000000000000..c49556f29013 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/metadataListSample.ts @@ -0,0 +1,40 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Gets the list of metadata entities. + * + * @summary Gets the list of metadata entities. + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Metadata_List.json + */ +async function getMetadata() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.metadata.list()) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + getMetadata(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts new file mode 100644 index 000000000000..2cfe89f643c0 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/operationsListSample.ts @@ -0,0 +1,37 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists available operations for the resourcehealth resource provider + * + * @summary Lists available operations for the resourcehealth resource provider + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/Operations_List.json + */ +async function getOperationsList() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const result = await client.operations.list(); + console.log(result); +} + +async function main() { + getOperationsList(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts new file mode 100644 index 000000000000..f33bee0fde45 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListBySubscriptionIdAndEventIdSample.ts @@ -0,0 +1,42 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists impacted resources in the subscription by an event (Security Advisory). + * + * @summary Lists impacted resources in the subscription by an event (Security Advisory). + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListBySubscriptionId_ListByEventId.json + */ +async function listSecurityAdvisoryImpactedResourcesBySubscriptionId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || "subscriptionId"; + const eventTrackingId = "BC_1-FXZ"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.securityAdvisoryImpactedResources.listBySubscriptionIdAndEventId( + eventTrackingId + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listSecurityAdvisoryImpactedResourcesBySubscriptionId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts new file mode 100644 index 000000000000..5100e4156d50 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/src/securityAdvisoryImpactedResourcesListByTenantIdAndEventIdSample.ts @@ -0,0 +1,43 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT License. +import { MicrosoftResourceHealth } from "@azure/arm-resourcehealth"; +import { DefaultAzureCredential } from "@azure/identity"; +import * as dotenv from "dotenv"; + +dotenv.config(); + +/** + * This sample demonstrates how to Lists impacted resources in the tenant by an event (Security Advisory). + * + * @summary Lists impacted resources in the tenant by an event (Security Advisory). + * x-ms-original-file: specification/resourcehealth/resource-manager/Microsoft.ResourceHealth/stable/2022-10-01/examples/SecurityAdvisoryImpactedResources_ListByTenantId_ListByEventId.json + */ +async function listSecurityAdvisoryImpactedResourcesByTenantId() { + const subscriptionId = + process.env["RESOURCEHEALTH_SUBSCRIPTION_ID"] || + "00000000-0000-0000-0000-000000000000"; + const eventTrackingId = "BC_1-FXZ"; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftResourceHealth(credential, subscriptionId); + const resArray = new Array(); + for await (let item of client.securityAdvisoryImpactedResources.listByTenantIdAndEventId( + eventTrackingId + )) { + resArray.push(item); + } + console.log(resArray); +} + +async function main() { + listSecurityAdvisoryImpactedResourcesByTenantId(); +} + +main().catch(console.error); diff --git a/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json new file mode 100644 index 000000000000..e26ce2a6d8f7 --- /dev/null +++ b/sdk/resourcehealth/arm-resourcehealth/samples/v4/typescript/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "moduleResolution": "node", + "resolveJsonModule": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "alwaysStrict": true, + "outDir": "dist", + "rootDir": "src" + }, + "include": [ + "src/**.ts" + ] +} diff --git a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts index 74645d7c5a9b..4f1b897e8cd0 100644 --- a/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts +++ b/sdk/resourcehealth/arm-resourcehealth/test/resourcehealth_operations_test.spec.ts @@ -17,7 +17,6 @@ import { createTestCredential } from "@azure-tools/test-credential"; import { assert } from "chai"; import { Context } from "mocha"; import { MicrosoftResourceHealth } from "../src/microsoftResourceHealth"; -import { AvailabilityStatusesListBySubscriptionIdOptionalParams } from "../src/models"; const replaceableVariables: Record = { AZURE_CLIENT_ID: "azure_client_id", @@ -63,18 +62,4 @@ describe("ResourceHealth test", () => { const res = await client.operations.list(); console.log(res); }); - - it("availabilityStatuses listBySubscriptionId test", async function () { - const expand = "recommendedactions"; - const options: AvailabilityStatusesListBySubscriptionIdOptionalParams = { - expand - }; - const resArray = new Array(); - for await (let item of client.availabilityStatuses.listBySubscriptionId( - options - )) { - resArray.push(item); - } - console.log(resArray); - }); }) From 44a9d6467f17fb01ddb5e8baa80562a6b64623a0 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Fri, 1 Dec 2023 13:56:52 +0800 Subject: [PATCH 10/16] update --- sdk/netapp/arm-netapp/assets.json | 2 +- .../arm-netapp/test/netapp_examples.spec.ts | 29 ++++++++++++++++++- 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/sdk/netapp/arm-netapp/assets.json b/sdk/netapp/arm-netapp/assets.json index 7ed1397b66be..ffeb5762e3e9 100644 --- a/sdk/netapp/arm-netapp/assets.json +++ b/sdk/netapp/arm-netapp/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/netapp/arm-netapp", - "Tag": "js/netapp/arm-netapp_f1eacceda2" + "Tag": "js/netapp/arm-netapp_ea93b1ba1a" } diff --git a/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts b/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts index b3cb4c562c23..0a7483240857 100644 --- a/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts +++ b/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts @@ -62,7 +62,21 @@ describe("netapp test", () => { resourceGroup, accountName, { - location: location + location: location, + activeDirectories: [ + { + aesEncryption: true, + dns: "10.10.10.3", + domain: "10.10.10.3", + ldapOverTLS: false, + ldapSigning: false, + organizationalUnit: "OU=Engineering", + password: "ad_password", + site: "SiteName", + smbServerName: "SMBServer", + username: "ad_user_name", + }, + ], }, testPollingOptions ); @@ -90,4 +104,17 @@ describe("netapp test", () => { } assert.equal(resArray.length, 0); }); + + it("netAppResource checkNameAvailability test", async function () { + const name = "accName"; + const typeParam = "Microsoft.NetApp/netAppAccounts"; + const resourceGroup = "myRG"; + const result = await client.netAppResource.checkNameAvailability( + location, + name, + typeParam, + resourceGroup + ); + console.log(result); + }); }) From 21179d30ff397f4076b509a68b76cf4f015670ff Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Fri, 1 Dec 2023 15:35:00 +0800 Subject: [PATCH 11/16] update --- sdk/kusto/arm-kusto/test/kusto-client-test.ts | 25 ++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/sdk/kusto/arm-kusto/test/kusto-client-test.ts b/sdk/kusto/arm-kusto/test/kusto-client-test.ts index 0fa91cba6470..7d7195b968aa 100644 --- a/sdk/kusto/arm-kusto/test/kusto-client-test.ts +++ b/sdk/kusto/arm-kusto/test/kusto-client-test.ts @@ -40,6 +40,7 @@ describe("KustoManagementClient", () => { let resourceGroup: string; let clusterName_1: string; let clusterName_2: string; + let clusterName_3: string; let clusterParameters: Cluster; beforeEach(async function (this: Context) { @@ -52,6 +53,7 @@ describe("KustoManagementClient", () => { resourceGroup = "myjstest"; clusterName_1 = "mytestclustername5"; clusterName_2 = "mytestclustername6"; + clusterName_3 = "mytestclustername7"; clusterParameters = { "location": "westeurope", "sku": { @@ -69,11 +71,30 @@ describe("KustoManagementClient", () => { }); //kusto_client.clusters.beginCreateOrUpdateAndWait - it("could create clusters", async function () { + it.only("could create clusters", async function () { let res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_1, clusterParameters, testPollingOptions); assert.strictEqual(res.name, clusterName_1); res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_2, clusterParameters, testPollingOptions); assert.strictEqual(res.name, clusterName_2); + // res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_3, + // { + // location: "eastus", + // sku: { name: "Standard_L16as_v3", capacity: 2, tier: "Standard" }, + // identity: { + // type: "SystemAssigned" + // }, + // languageExtensions: { + // value: [ + // { + // languageExtensionCustomImageName: "customImage8", + // languageExtensionImageName: "PythonCustomImage", + // languageExtensionName: "PYTHON", + // }, + // { languageExtensionImageName: "R", languageExtensionName: "R" }, + // ], + // }, + // }, testPollingOptions); + // assert.strictEqual(res.name, clusterName_3); }).timeout(3600000); //kusto_client.clusters.beginUpdateAndWait @@ -112,6 +133,8 @@ describe("KustoManagementClient", () => { assert.strictEqual(res?.body?.status, "Succeeded"); res = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_2, testPollingOptions); assert.strictEqual(res?.body?.status, "Succeeded"); + // res = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_3, testPollingOptions); + // assert.strictEqual(res?.body?.status, "Succeeded"); }); }); From 9b8785cd029333f583111c5c4420708bc57a56de Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:22:07 +0800 Subject: [PATCH 12/16] update --- sdk/kusto/arm-kusto/test/kusto-client-test.ts | 72 +++++++------------ 1 file changed, 26 insertions(+), 46 deletions(-) diff --git a/sdk/kusto/arm-kusto/test/kusto-client-test.ts b/sdk/kusto/arm-kusto/test/kusto-client-test.ts index 7d7195b968aa..403ec2078ee1 100644 --- a/sdk/kusto/arm-kusto/test/kusto-client-test.ts +++ b/sdk/kusto/arm-kusto/test/kusto-client-test.ts @@ -39,9 +39,6 @@ describe("KustoManagementClient", () => { let client: KustoManagementClient; let resourceGroup: string; let clusterName_1: string; - let clusterName_2: string; - let clusterName_3: string; - let clusterParameters: Cluster; beforeEach(async function (this: Context) { recorder = new Recorder(this.currentTest); @@ -52,18 +49,6 @@ describe("KustoManagementClient", () => { client = new KustoManagementClient(credential, subscriptionId, recorder.configureClientOptions({})); resourceGroup = "myjstest"; clusterName_1 = "mytestclustername5"; - clusterName_2 = "mytestclustername6"; - clusterName_3 = "mytestclustername7"; - clusterParameters = { - "location": "westeurope", - "sku": { - "name": "Standard_L8s_v2", - "tier": "Standard" - }, - "identity": { - "type": "SystemAssigned" - }, - }; }); afterEach(async function () { @@ -71,31 +56,26 @@ describe("KustoManagementClient", () => { }); //kusto_client.clusters.beginCreateOrUpdateAndWait - it.only("could create clusters", async function () { - let res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_1, clusterParameters, testPollingOptions); + it("could create clusters", async function () { + let res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_1, + { + location: "eastus", + sku: { name: "Standard_L16as_v3", capacity: 2, tier: "Standard" }, + identity: { + type: "SystemAssigned" + }, + languageExtensions: { + value: [ + { + languageExtensionCustomImageName: "PYTHON 3.10.8", + languageExtensionImageName: "PythonCustomImage", + languageExtensionName: "PYTHON", + }, + ], + }, + }, testPollingOptions); assert.strictEqual(res.name, clusterName_1); - res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_2, clusterParameters, testPollingOptions); - assert.strictEqual(res.name, clusterName_2); - // res = await client.clusters.beginCreateOrUpdateAndWait(resourceGroup, clusterName_3, - // { - // location: "eastus", - // sku: { name: "Standard_L16as_v3", capacity: 2, tier: "Standard" }, - // identity: { - // type: "SystemAssigned" - // }, - // languageExtensions: { - // value: [ - // { - // languageExtensionCustomImageName: "customImage8", - // languageExtensionImageName: "PythonCustomImage", - // languageExtensionName: "PYTHON", - // }, - // { languageExtensionImageName: "R", languageExtensionName: "R" }, - // ], - // }, - // }, testPollingOptions); - // assert.strictEqual(res.name, clusterName_3); - }).timeout(3600000); + }).timeout(7200000); //kusto_client.clusters.beginUpdateAndWait // it("could update tags in cluster", async () => { @@ -124,17 +104,17 @@ describe("KustoManagementClient", () => { for await (const item of client.clusters.listByResourceGroup(resourceGroup)) { resArray.push(item); } - assert.ok(resArray.length >= 2); + assert.equal(resArray.length, 1); }); //kusto_client.clusters.beginDeleteAndWait it("could delete clusters", async () => { - let res: any = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_1, testPollingOptions); - assert.strictEqual(res?.body?.status, "Succeeded"); - res = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_2, testPollingOptions); - assert.strictEqual(res?.body?.status, "Succeeded"); - // res = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_3, testPollingOptions); - // assert.strictEqual(res?.body?.status, "Succeeded"); + let res = await client.clusters.beginDeleteAndWait(resourceGroup, clusterName_1, testPollingOptions); + const resArray = new Array(); + for await (const item of client.clusters.listByResourceGroup(resourceGroup)) { + resArray.push(item); + } + assert.equal(resArray.length, 0); }); }); From 03c599a58a9734ff29ff2fc0efc4d467923c3eec Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Tue, 5 Dec 2023 11:16:10 +0800 Subject: [PATCH 13/16] update --- sdk/kusto/arm-kusto/assets.json | 2 +- sdk/kusto/arm-kusto/test/kusto-client-test.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/kusto/arm-kusto/assets.json b/sdk/kusto/arm-kusto/assets.json index 2d4f68dc3e10..5e8c8a45976c 100644 --- a/sdk/kusto/arm-kusto/assets.json +++ b/sdk/kusto/arm-kusto/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/kusto/arm-kusto", - "Tag": "js/kusto/arm-kusto_6d0021cd5f" + "Tag": "js/kusto/arm-kusto_53ce299233" } diff --git a/sdk/kusto/arm-kusto/test/kusto-client-test.ts b/sdk/kusto/arm-kusto/test/kusto-client-test.ts index 403ec2078ee1..6209db7abc24 100644 --- a/sdk/kusto/arm-kusto/test/kusto-client-test.ts +++ b/sdk/kusto/arm-kusto/test/kusto-client-test.ts @@ -67,8 +67,7 @@ describe("KustoManagementClient", () => { languageExtensions: { value: [ { - languageExtensionCustomImageName: "PYTHON 3.10.8", - languageExtensionImageName: "PythonCustomImage", + languageExtensionImageName: "Python3_6_5", languageExtensionName: "PYTHON", }, ], From 285043171f6752c41c8f5878840037508cf8b7f8 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 7 Dec 2023 14:26:28 +0800 Subject: [PATCH 14/16] update --- common/config/rush/pnpm-lock.yaml | 770 +++++++++--------- sdk/datadog/arm-datadog/_meta.json | 8 +- sdk/datadog/arm-datadog/package.json | 6 +- ...rketplaceAgreementsCreateOrUpdateSample.ts | 10 +- ...itoredSubscriptionsCreateorUpdateSample.ts | 51 +- .../monitoredSubscriptionsUpdateSample.ts | 51 +- .../samples-dev/monitorsCreateSample.ts | 51 +- .../monitorsSetDefaultKeySample.ts | 11 +- .../samples-dev/monitorsUpdateSample.ts | 14 +- ...ignOnConfigurationsCreateOrUpdateSample.ts | 18 +- .../tagRulesCreateOrUpdateSample.ts | 25 +- ...rketplaceAgreementsCreateOrUpdateSample.js | 4 +- ...itoredSubscriptionsCreateorUpdateSample.js | 43 + .../monitoredSubscriptionsUpdateSample.js | 43 + .../v3/javascript/monitorsCreateSample.js | 43 +- .../javascript/monitorsSetDefaultKeySample.js | 4 +- .../v3/javascript/monitorsUpdateSample.js | 7 +- ...ignOnConfigurationsCreateOrUpdateSample.js | 10 + .../tagRulesCreateOrUpdateSample.js | 23 +- ...rketplaceAgreementsCreateOrUpdateSample.ts | 10 +- ...itoredSubscriptionsCreateorUpdateSample.ts | 51 +- .../src/monitoredSubscriptionsUpdateSample.ts | 51 +- .../v3/typescript/src/monitorsCreateSample.ts | 51 +- .../src/monitorsSetDefaultKeySample.ts | 11 +- .../v3/typescript/src/monitorsUpdateSample.ts | 14 +- ...ignOnConfigurationsCreateOrUpdateSample.ts | 18 +- .../src/tagRulesCreateOrUpdateSample.ts | 25 +- 27 files changed, 937 insertions(+), 486 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 6287bdd83620..af0185993ac4 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -4529,7 +4529,7 @@ packages: dependencies: semver: 7.5.4 shelljs: 0.8.5 - typescript: 5.4.0-dev.20231128 + typescript: 5.4.0-dev.20231206 dev: false /downlevel-dts@0.11.0: @@ -4538,7 +4538,7 @@ packages: dependencies: semver: 7.5.4 shelljs: 0.8.5 - typescript: 5.4.0-dev.20231128 + typescript: 5.4.0-dev.20231206 dev: false /eastasianwidth@0.2.0: @@ -9314,14 +9314,14 @@ packages: hasBin: true dev: false - /typescript@5.3.2: - resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==} + /typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} engines: {node: '>=14.17'} hasBin: true dev: false - /typescript@5.4.0-dev.20231128: - resolution: {integrity: sha512-9qkF438icXJz8XXZ38mDJfUTTAvVZptHGBEkwqB2QaO8p6cQuiYvghMHk5o2bZFHS5VcrAwYtpEuekd1iSTmBQ==} + /typescript@5.4.0-dev.20231206: + resolution: {integrity: sha512-bKJ5+3jwj4qTzNg7C97rCVLgyyYuzjYh/Pf0zlpOyyq9vpI3TVLO09d1gQ8jS5M+BSLONojTijei0KHmFoBezw==} engines: {node: '>=14.17'} hasBin: true dev: false @@ -9855,7 +9855,7 @@ packages: dev: false file:projects/abort-controller.tgz: - resolution: {integrity: sha512-OLqTtjWvicZS8EipiNw0w+OZxeyLYO9o6i4yNCU8HKcxfRtJDg9+MS8xDVTKbG7sVn05d4gmOpBMVrqAlYbpyQ==, tarball: file:projects/abort-controller.tgz} + resolution: {integrity: sha512-eY0ANDvF7Z5wu5uxSuIRnu/BnH+fj9pHIwFv5rVCYonP+N8tgNriyavIx9GEwxS7M4qrWOzGRs/lsd3zsmmn6w==, tarball: file:projects/abort-controller.tgz} name: '@rush-temp/abort-controller' version: 0.0.0 dependencies: @@ -9894,7 +9894,7 @@ packages: dev: false file:projects/agrifood-farming.tgz: - resolution: {integrity: sha512-aaVzFTQsc+kkxTC3GetTxDcDKDKfhPNkM+RPpXnc9SDsi6zu2qJfbA4hSFaQmzqXwFJqL0Me6DB8+ePWIZ25zw==, tarball: file:projects/agrifood-farming.tgz} + resolution: {integrity: sha512-a6lGPH/+deAbreOMHvKro3MuLWKw4qvlI/HjFU3ku3EhBS36ht9EOAGtTHW2FQx6jUFcG6fjZohsEKpg0ctWkg==, tarball: file:projects/agrifood-farming.tgz} name: '@rush-temp/agrifood-farming' version: 0.0.0 dependencies: @@ -9940,7 +9940,7 @@ packages: dev: false file:projects/ai-anomaly-detector.tgz: - resolution: {integrity: sha512-3QhJ+oA42jRAVpSMHDx7cCY/RdVrrhvpgBmo5/HHkFgRiQX3ls7jX019icrvPjBz/jEIDInzTJ5vuWpykJXgDQ==, tarball: file:projects/ai-anomaly-detector.tgz} + resolution: {integrity: sha512-Gh6xTsSoCRrtNVsKQf2JCtsUHGyhEblge7xteVj+pvssbpoZzB1XiJWZ8jTORddEGWhVibXXR/WgeHoQR76K/g==, tarball: file:projects/ai-anomaly-detector.tgz} name: '@rush-temp/ai-anomaly-detector' version: 0.0.0 dependencies: @@ -9986,7 +9986,7 @@ packages: dev: false file:projects/ai-content-safety.tgz: - resolution: {integrity: sha512-sN3EzUQXnUzw/JxCZ665p1eov+BkcPi6xQP5xJs2UWcwOjEVqkgS5FM5YIhA4D0zJ1Zud7DK/meyJaDfe4Qbng==, tarball: file:projects/ai-content-safety.tgz} + resolution: {integrity: sha512-qqPFJY5IU8A9qk+Z99N4QyvsGWgdvdEu6I2Wtw2X4+742A6a8BNfk3C2yR3zwPh7VdVx4qF87mu9olXxuy5pww==, tarball: file:projects/ai-content-safety.tgz} name: '@rush-temp/ai-content-safety' version: 0.0.0 dependencies: @@ -10018,7 +10018,7 @@ packages: prettier: 2.8.8 rimraf: 5.0.5 source-map-support: 0.5.21 - ts-node: 10.9.1(@types/node@18.18.13)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@18.18.9)(typescript@5.2.2) tslib: 2.6.2 typescript: 5.2.2 transitivePeerDependencies: @@ -10031,7 +10031,7 @@ packages: dev: false file:projects/ai-document-intelligence.tgz: - resolution: {integrity: sha512-Qs9epDNNxDRI2Ev+9mXhldjZtuxu80fhX6ZrPf54udK+yVmrsrUHTpXi/v30YP9X0/58+IvgOq79HWlhbcW39w==, tarball: file:projects/ai-document-intelligence.tgz} + resolution: {integrity: sha512-mJakXLQdplo7TFG0DAbyRk5wBLrGAt8Y/1Pia2iJ66yK+UYnRUGGVO/fIwY7nvIVAD0ynxIb6n+w8ELAj0fCxQ==, tarball: file:projects/ai-document-intelligence.tgz} name: '@rush-temp/ai-document-intelligence' version: 0.0.0 dependencies: @@ -10076,7 +10076,7 @@ packages: dev: false file:projects/ai-document-translator.tgz: - resolution: {integrity: sha512-cRdyJLKq2E9Ru/00Gg40qro4VudDSN7oGJ6fziGwRA55Ho/lTH1Dq0KNBMQYuflA5mSJEUtThiNZaOZ1Qv7lOg==, tarball: file:projects/ai-document-translator.tgz} + resolution: {integrity: sha512-NbwhF30mlK7vwKNF1vC/DePhTGGMExoZTnH9J64mWN6CpswjTPuhC87HPWLWK651eRKQgC3uD94V5yYRJpuGFA==, tarball: file:projects/ai-document-translator.tgz} name: '@rush-temp/ai-document-translator' version: 0.0.0 dependencies: @@ -10121,7 +10121,7 @@ packages: dev: false file:projects/ai-form-recognizer.tgz: - resolution: {integrity: sha512-63/xed1BicoVSJnhyKo8Et4zqxO760kmB9mxnVZefWXer0kLF+sQCgyqSEKS0gP3u+09XWvAI9JxfUTsNuFdJQ==, tarball: file:projects/ai-form-recognizer.tgz} + resolution: {integrity: sha512-EK+h/8OaF0XvWPAg2JzZEUlsHloVH/z/vSgWyrF6t00LiQ2e5lR1RfXJqP0obcNuoyrwSEjJQgWHbfbhRdx+Qg==, tarball: file:projects/ai-form-recognizer.tgz} name: '@rush-temp/ai-form-recognizer' version: 0.0.0 dependencies: @@ -10169,7 +10169,7 @@ packages: dev: false file:projects/ai-language-conversations.tgz: - resolution: {integrity: sha512-p7IRpZafV008k3cRxBSak+2fNxOZwQt2MsHTXPPoYQtydNEexWCzSYGHuYi+q3Pr1nqNAKvnygVRUpHqBD3LzQ==, tarball: file:projects/ai-language-conversations.tgz} + resolution: {integrity: sha512-P19DtPbDsIFjR1OOMS11mWAaqHV0Iqh+krjJ1ST2ty83vuhV/sRDU5l/DRjjghFjgtABl//9WgLqRK0tmv1qsg==, tarball: file:projects/ai-language-conversations.tgz} name: '@rush-temp/ai-language-conversations' version: 0.0.0 dependencies: @@ -10218,7 +10218,7 @@ packages: dev: false file:projects/ai-language-text.tgz: - resolution: {integrity: sha512-16O5eijTlBOwn3EKgZZaFwriQyoy+Dy90p6ia5Fb6x6zDjSNl9U1baCML2yGA6JITsNpGh4jrmP3nJiaki2E0Q==, tarball: file:projects/ai-language-text.tgz} + resolution: {integrity: sha512-+n+UgT6z4MZfAeWvhVXl6uDK316r/AVUJlarl8p7TNRY2s6sykjHjHkuFer4XMe1ZJcLvoau7xEP9o3xgjabIw==, tarball: file:projects/ai-language-text.tgz} name: '@rush-temp/ai-language-text' version: 0.0.0 dependencies: @@ -10267,7 +10267,7 @@ packages: dev: false file:projects/ai-language-textauthoring.tgz: - resolution: {integrity: sha512-229rm3bUc6yfaecBRyW5Ylqdp6d3+udh6XDJcEP/fLITXkjGytWUIyWb0z1S/voLdVAet90Y88gBFfouJcUYGw==, tarball: file:projects/ai-language-textauthoring.tgz} + resolution: {integrity: sha512-wmR2P7LwMR8EeKM1vFVx3phMipNnF+5VriLmluJPmqjs8SZ7jZ16zd8wM+P09vcn/bCqpwMgdyA06NtzykclCQ==, tarball: file:projects/ai-language-textauthoring.tgz} name: '@rush-temp/ai-language-textauthoring' version: 0.0.0 dependencies: @@ -10292,7 +10292,7 @@ packages: dev: false file:projects/ai-metrics-advisor.tgz: - resolution: {integrity: sha512-Dt5TDVRd40a/cZSaJOrHv9zKFDLMzdjRdHYTz0G4GPd6Bvexj24+x+w68IBW6fRWGmvccIRpfJv1vOQZNyO+qw==, tarball: file:projects/ai-metrics-advisor.tgz} + resolution: {integrity: sha512-zPw1q+stwnfsC3uWN7CTW7lRJaPAUM7b86ofHDuzkAGzF21T1cmMKd1h6jK5VBQySk5dr237CtlWn6EruBCd+w==, tarball: file:projects/ai-metrics-advisor.tgz} name: '@rush-temp/ai-metrics-advisor' version: 0.0.0 dependencies: @@ -10337,7 +10337,7 @@ packages: dev: false file:projects/ai-personalizer.tgz: - resolution: {integrity: sha512-UizrYTAypADGmA92YLXUx4kbSgZamuf30LaYUY7qTy1yiLs6e1e6DSBKpCOZhtuin+UcFffiJDbnBpLVDgVBcA==, tarball: file:projects/ai-personalizer.tgz} + resolution: {integrity: sha512-0spWl1wNEzWU96JXAQ0eY2y1fIIjXB3Tn7RG7JpV45nmid0MCU7K1/F0DoWbrW+vo5xFgt4XQZYv/G0sw+gxTQ==, tarball: file:projects/ai-personalizer.tgz} name: '@rush-temp/ai-personalizer' version: 0.0.0 dependencies: @@ -10381,7 +10381,7 @@ packages: dev: false file:projects/ai-text-analytics.tgz: - resolution: {integrity: sha512-H1ZJBNjQ/eZux4E3/G++UbtOLD5o5V/iSFC1vkJuxyAF0WOZHzPLxlJRsCQgYHyJur+Fo+hY3uQkciOjBoSigw==, tarball: file:projects/ai-text-analytics.tgz} + resolution: {integrity: sha512-A5j3KjK01e9KrXMxyIFnBzakr5FiZqwZKd2vB/mVIhaMd2cMTmu2fgL5F9hyhERiXPsPyvDr2IQNkK8IzKDtag==, tarball: file:projects/ai-text-analytics.tgz} name: '@rush-temp/ai-text-analytics' version: 0.0.0 dependencies: @@ -10428,7 +10428,7 @@ packages: dev: false file:projects/ai-translation-text.tgz: - resolution: {integrity: sha512-9rg3z/jobQmchF1LtOkcxeOr+r0oiQx75poXNtdRJwGenTd9Xlv9YjeNpjJMA1c3VRxrinle9XGWi0forJHAbA==, tarball: file:projects/ai-translation-text.tgz} + resolution: {integrity: sha512-gVagqnCbjJpBWtovHkMEav3BbGTcyaKJ3sMTR2iaXk0rGU81sV/D1JuCUIxMIX0WfTe0DJ43ANQQKz4OM2pabQ==, tarball: file:projects/ai-translation-text.tgz} name: '@rush-temp/ai-translation-text' version: 0.0.0 dependencies: @@ -10473,7 +10473,7 @@ packages: dev: false file:projects/api-management-custom-widgets-scaffolder.tgz: - resolution: {integrity: sha512-8stJCBm/KzbCjsdyhhU5V8jt1m0+ng88vXVs3qv37LhXw5nQ/kINdjLv7iktUgRGgoma9QolHBeU5iNOiL7fOQ==, tarball: file:projects/api-management-custom-widgets-scaffolder.tgz} + resolution: {integrity: sha512-gayIufMdbQa7N37gGSV/RrfkwA2kJ8orf7b0aAw5Y2kYBEC+uskzCKZdYyK2/NTCbouNjRwiFkreyb1/wKtNwQ==, tarball: file:projects/api-management-custom-widgets-scaffolder.tgz} name: '@rush-temp/api-management-custom-widgets-scaffolder' version: 0.0.0 dependencies: @@ -10516,7 +10516,7 @@ packages: dev: false file:projects/api-management-custom-widgets-tools.tgz: - resolution: {integrity: sha512-Ge+ptrPXWFIDxMPrUt1o3Vbl6kgvFTKYZchpMzhF+Iog/c6zDdr/wAgrHYr6tALk+NsCHsPe/IcxoYvuJQaL5Q==, tarball: file:projects/api-management-custom-widgets-tools.tgz} + resolution: {integrity: sha512-7VjrswAqYhPLYAUBR6aQ4CuTo1NuV6l0gOnj1ADMj2c8HE37f5FV4RoMh2PpJlhZ6sXuNmzh0He1tB4VpkfItQ==, tarball: file:projects/api-management-custom-widgets-tools.tgz} name: '@rush-temp/api-management-custom-widgets-tools' version: 0.0.0 dependencies: @@ -10568,7 +10568,7 @@ packages: dev: false file:projects/app-configuration.tgz: - resolution: {integrity: sha512-Mc6izEGteikM7a9R4nOCfI42FFCBj+Xj+l15/sO2lUXOO6jCsWrIzBIPWzDsEIzKcr3Sf53zWtsIALXDmibVHw==, tarball: file:projects/app-configuration.tgz} + resolution: {integrity: sha512-RXjilpGLc0MsoFwwZrs1kSRzxSwy9qabFseKXuzCTzZvjq9hl+sqAP2WBOWAVoih/i/n3BRWt2ZMNzOuPZf+NA==, tarball: file:projects/app-configuration.tgz} name: '@rush-temp/app-configuration' version: 0.0.0 dependencies: @@ -10616,7 +10616,7 @@ packages: dev: false file:projects/arm-advisor.tgz: - resolution: {integrity: sha512-oECkAlHkzO+Bm+U1zykhRhSFcZSM/oeKVu2A3eV+SDtwbe6HDanVLjQAfSV4enj6K+K6NC3aFbPgyscFUGWm1w==, tarball: file:projects/arm-advisor.tgz} + resolution: {integrity: sha512-jTXTZ9QddKjTVOEIr24F2tiUfvixYuEeAxkq/QnyNroAvSxqLO6PiLtj4CGzB2dP2wSoBxXotbENKljzxs74Bg==, tarball: file:projects/arm-advisor.tgz} name: '@rush-temp/arm-advisor' version: 0.0.0 dependencies: @@ -10641,7 +10641,7 @@ packages: dev: false file:projects/arm-agrifood.tgz: - resolution: {integrity: sha512-dNqkb9gBfFflz+qZp5bYIXtISH5yvRGPJBNKt8z3YCR2KtjcLyeXNwWp/GRjOJDldww1xkRnarGa0vukNmXCiQ==, tarball: file:projects/arm-agrifood.tgz} + resolution: {integrity: sha512-siqI7KGmKdOwARS0+VO8LURs98Hbf+Ie8QHxpuu1dyS6dpPYMCDqgZL5tdLMD4hb2/PxI/J+Kngu1xJwUbN9GQ==, tarball: file:projects/arm-agrifood.tgz} name: '@rush-temp/arm-agrifood' version: 0.0.0 dependencies: @@ -10665,7 +10665,7 @@ packages: dev: false file:projects/arm-analysisservices.tgz: - resolution: {integrity: sha512-5QoX9AcVm2nyBI4a7MGeQfNq13pokknA/EZm//Y8SKX1er9l6MPl3TLaHLtxkjWhXmBGZ5z3imW7q70OH5BpgA==, tarball: file:projects/arm-analysisservices.tgz} + resolution: {integrity: sha512-ocRCs9kY8cAtIuDbWNUtC4Vf7D8yEog52GW90ELrewG01+dOsHZG62Zn4DEe9gRCVoJ7Idrj3QedHwUOejpYhg==, tarball: file:projects/arm-analysisservices.tgz} name: '@rush-temp/arm-analysisservices' version: 0.0.0 dependencies: @@ -10689,7 +10689,7 @@ packages: dev: false file:projects/arm-apicenter.tgz: - resolution: {integrity: sha512-uPE98WZ1lbsANbSaNM8pZeINf0kHRJsEQBurLQD/2jTsyBdc6FHi9urtmrdw3zSSlF3zEhmr9d4wn1lMo9qj1g==, tarball: file:projects/arm-apicenter.tgz} + resolution: {integrity: sha512-caqHKV/A9aCelY5zUbNmYepxDH+eb/2g5mp7LgjLMSdIZUVgPV+hmg/METzpZ4S9Moup79vpjehjKAfm81sndg==, tarball: file:projects/arm-apicenter.tgz} name: '@rush-temp/arm-apicenter' version: 0.0.0 dependencies: @@ -10711,7 +10711,7 @@ packages: dev: false file:projects/arm-apimanagement.tgz: - resolution: {integrity: sha512-6cXUC1OZ2zFoJpO6Up0Sy++3Uy3DfXdmAgqPP8NZSOEtH1bL91Tmmldh9UCRiJqaR8W94xyYzC7kivyLiTRi9Q==, tarball: file:projects/arm-apimanagement.tgz} + resolution: {integrity: sha512-47wRTEHH4DoN3bYaaMVAL1tTPGlRO/6vxJgEivzcvESD0tN5x42dDGy1m6i3GaiZSvODBTjE/DWIXj/KIYUzWw==, tarball: file:projects/arm-apimanagement.tgz} name: '@rush-temp/arm-apimanagement' version: 0.0.0 dependencies: @@ -10736,7 +10736,7 @@ packages: dev: false file:projects/arm-appcomplianceautomation.tgz: - resolution: {integrity: sha512-NbAbHuCgqHgf6PY5S4NJkWjjq+UCF0DbL7urKDROtuI0K1bp+Kj7e0b4xhFkKXJYcASQ9yC5q3tHvbbjYSRE1w==, tarball: file:projects/arm-appcomplianceautomation.tgz} + resolution: {integrity: sha512-CUqjGmv1s/M+vfD7BwFannxYNX/0Xvu0qNmn7QkG26DGQtBObeHxmqca9urMpMbEkqLN7thQoz69lvOuEuHesQ==, tarball: file:projects/arm-appcomplianceautomation.tgz} name: '@rush-temp/arm-appcomplianceautomation' version: 0.0.0 dependencies: @@ -10760,7 +10760,7 @@ packages: dev: false file:projects/arm-appconfiguration.tgz: - resolution: {integrity: sha512-06/Fg0h/M0UOpFHXyq0LhHcgXn35vFXwCywnxdlK1oKOqk/hqxoK6XfhFVq6N0rcqnb72VxNkQO6i5wffPlv/A==, tarball: file:projects/arm-appconfiguration.tgz} + resolution: {integrity: sha512-NUDJO9U6zQ7FyYhe/3ETDLVJq90VFTT6enzYyinbsYE4uECJyaROl9BLK7X+QUO2eLrvEI5ytA58b9xZ8/kVbA==, tarball: file:projects/arm-appconfiguration.tgz} name: '@rush-temp/arm-appconfiguration' version: 0.0.0 dependencies: @@ -10785,7 +10785,7 @@ packages: dev: false file:projects/arm-appcontainers.tgz: - resolution: {integrity: sha512-eTTY4B3BCdKWVQs2FB3jkI6SAnvCkKQEwFOMX1i5eBUhVHBAmA1FF26l4MlzUuwIOIxH2AmxwG8eeKu1qX+nWg==, tarball: file:projects/arm-appcontainers.tgz} + resolution: {integrity: sha512-Tm6VlvAl/VVSZO90E488dPlYiKJSK8ABKMLdGX1GV6S8KM/mC9Ma8xbmWoesYtF98sMR1fY3YIA5dnnvqUjPQA==, tarball: file:projects/arm-appcontainers.tgz} name: '@rush-temp/arm-appcontainers' version: 0.0.0 dependencies: @@ -10810,7 +10810,7 @@ packages: dev: false file:projects/arm-appinsights.tgz: - resolution: {integrity: sha512-e0Fia47IguVWf8oc9IfgjfJD1/N4pnTKi2mwoqLp1p75W7fOJa/snu13FMb0TKwCOko7R+rSp9rehMogRmx/Aw==, tarball: file:projects/arm-appinsights.tgz} + resolution: {integrity: sha512-I1VjeZb+2lHZz+zxkGmupseEMQNuwBmBbbZW1jvT29X3Yc/iK9pp5eKxnrT34p7DA2sukJdyFwA6NFG+foX6yQ==, tarball: file:projects/arm-appinsights.tgz} name: '@rush-temp/arm-appinsights' version: 0.0.0 dependencies: @@ -10834,7 +10834,7 @@ packages: dev: false file:projects/arm-appplatform.tgz: - resolution: {integrity: sha512-fJvwQqWRK1EWl5MaOXgZXpAuTZsVZw01Cixg+hJsuu+vhx6IBbprwN38eWjdHL1jdlWYig2lMWHM4Sbqwe1hmg==, tarball: file:projects/arm-appplatform.tgz} + resolution: {integrity: sha512-oFZuffM7TQBCbo2pZLraMHnXFZEs5qBb7JNYzatiXJieypgVUTSet2fsqTxLeNWyDwOqKlh5jogrQAIwPJPoaw==, tarball: file:projects/arm-appplatform.tgz} name: '@rush-temp/arm-appplatform' version: 0.0.0 dependencies: @@ -10859,7 +10859,7 @@ packages: dev: false file:projects/arm-appservice-1.tgz: - resolution: {integrity: sha512-c6VjbNT/xT34jGpR/eLuZz2npWz0qQ8MvLVGUSqfVm7+6zN4mBh/EC1JuJilKOXA/h6auN0hSoof2pV54ikpvw==, tarball: file:projects/arm-appservice-1.tgz} + resolution: {integrity: sha512-TxH/1P2vgiupSiycjvbd9fuOdyNok+R9JkOJZwoVIHIMWcQL98bRno/EoiLaEJU7afSbO9mQ3+0JBJjzHQ6GyQ==, tarball: file:projects/arm-appservice-1.tgz} name: '@rush-temp/arm-appservice-1' version: 0.0.0 dependencies: @@ -10886,7 +10886,7 @@ packages: dev: false file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-Ey1u1DdRrnnnpbUAJICUzHAvqL3thLfrrUGuLN9rs5wL2GGmI71+b3Ea2go4oKgNWMhNqUvqhQKrDIUBvXd5jQ==, tarball: file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-3Ffh4tBpe6cNA2FETOdQX4kLvgQRKv2T7ce0Nw0w3v5pGwZd9P1PP6NXBJsbjO4hIxCOugWAnsaXYw3cv2XxuQ==, tarball: file:projects/arm-appservice-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-appservice-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -10911,7 +10911,7 @@ packages: dev: false file:projects/arm-appservice.tgz: - resolution: {integrity: sha512-uXPMtAPzK9Bn3voGqlnvXfhkmdQEPnd2cS5dSlWs2rDKVAgt63RX7vK0t1i2zvl7n77VxZ/FTOhf0hZpA3fmDQ==, tarball: file:projects/arm-appservice.tgz} + resolution: {integrity: sha512-te7JSffnS6emEkQvTyVlKdl00BOP4m9l6K26kaMtKt2nPgndLluml5K5PTmmWqd1Yo08re59vtfbxbLHQc0IeA==, tarball: file:projects/arm-appservice.tgz} name: '@rush-temp/arm-appservice' version: 0.0.0 dependencies: @@ -10955,7 +10955,7 @@ packages: dev: false file:projects/arm-attestation.tgz: - resolution: {integrity: sha512-U9J5NyO7hKtGy5gsHO3S3U/I0RlM12DuFiI1R4347i9/dv1fgkFEa6c70rGv/v6ACq0OtDVVWE+wEq9EAqkqew==, tarball: file:projects/arm-attestation.tgz} + resolution: {integrity: sha512-xF7S5/rzpoPkORxGbNtW6PRyhl+P3+pOgau6ZiZHpNBpc0vv0O+kzJYsEkOJEtN3TSbRA6A86dW84ue25LDvtw==, tarball: file:projects/arm-attestation.tgz} name: '@rush-temp/arm-attestation' version: 0.0.0 dependencies: @@ -10979,7 +10979,7 @@ packages: dev: false file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-L+uwHhhrKpiwDqmIfJSIMXZwsq9qS9SoTy7dxccWOPY0OXXBweChdXi13ht6DH5N4nVAXVgD8wjU8mpkPziovw==, tarball: file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-puBhMSrcm0X8sRR0gy+YcKgnkBLzIGV77lxLIhO9gh4LvcNPBnrDwT7EXZ4Fq3uUoN0S06mjpd/sjlRF8K7w6A==, tarball: file:projects/arm-authorization-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-authorization-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -11004,7 +11004,7 @@ packages: dev: false file:projects/arm-authorization.tgz: - resolution: {integrity: sha512-nLVjh3A93IYrITlf1qCxOqypP1ZFhAzLeZrfAf/sBPVlrIQothVTxhcr+rJz6wQC3t3Wqhfv1q6FAtBF50BqsQ==, tarball: file:projects/arm-authorization.tgz} + resolution: {integrity: sha512-/teoyMTLncU7QYqcQEfdO/QW7bULeYg/VM2NMk2OnM5NkSYtOrqs8gdJU+D7/jh+Ajk0UjCyrHtf1OdEJK3sZg==, tarball: file:projects/arm-authorization.tgz} name: '@rush-temp/arm-authorization' version: 0.0.0 dependencies: @@ -11029,7 +11029,7 @@ packages: dev: false file:projects/arm-automanage.tgz: - resolution: {integrity: sha512-+2F1Kv78ZER9v49DBIb2NRtm1USM2ajypw65DeBaZtjkTrI+572TGz2X1egjsyeiadS3OEZUBqb35+cgsBXR4A==, tarball: file:projects/arm-automanage.tgz} + resolution: {integrity: sha512-zHjra+GG7SgCgFskOs/3bEqJWPGBSzlmAet3kvXiRSivT1aXmzJRG908H2itjCZH4NUnqktd/5WdLrr20W8m8Q==, tarball: file:projects/arm-automanage.tgz} name: '@rush-temp/arm-automanage' version: 0.0.0 dependencies: @@ -11054,7 +11054,7 @@ packages: dev: false file:projects/arm-automation.tgz: - resolution: {integrity: sha512-rHKBpSvBDEJwrFoAkxBiCHw8YumLk7nUvhshTwvtALMTvDS7rT8siKhri3Hu2hTOCtUhG1GCykD2d4mndFXZbQ==, tarball: file:projects/arm-automation.tgz} + resolution: {integrity: sha512-ZK0GWcuTRPvzpv0E24i8O4C6p64s4fMKTz99I2jjJymH+3yfCMkGwMEC4J0HCpLoOZvYKVy0TczBt2nUHfsN2Q==, tarball: file:projects/arm-automation.tgz} name: '@rush-temp/arm-automation' version: 0.0.0 dependencies: @@ -11079,7 +11079,7 @@ packages: dev: false file:projects/arm-avs.tgz: - resolution: {integrity: sha512-Ml706wc0TB2UP+2XgnLDO1KGXErlU5sF0HU4sIzdSTUCkyqoGdj35bcFAOEou+xlliYyRnPK+82fXO88KkBgQA==, tarball: file:projects/arm-avs.tgz} + resolution: {integrity: sha512-NDrfnSn1kUBPObEImHdWVKHwC/FjSn3eqlDicuKz+OZzNptrZYBoL7cjo07nWXiB6Zz8QO2aMzpW9voA4zuY4g==, tarball: file:projects/arm-avs.tgz} name: '@rush-temp/arm-avs' version: 0.0.0 dependencies: @@ -11104,7 +11104,7 @@ packages: dev: false file:projects/arm-azureadexternalidentities.tgz: - resolution: {integrity: sha512-3tW2AACYWAQsdcl39u4cytSBN9I6ZX8fq0+Hct6LWQDaV/k8YixKG2LkEnLQow8fewjcy7czzNGYDqAAAebnFA==, tarball: file:projects/arm-azureadexternalidentities.tgz} + resolution: {integrity: sha512-iDMDOtHZ97/MkhFgjirQ17XNtPdmDndgb2HOCjRBklsLWPsQWkjpHiCoQAwWDYBYLbTTq6knqH6VVLFDYsUL6Q==, tarball: file:projects/arm-azureadexternalidentities.tgz} name: '@rush-temp/arm-azureadexternalidentities' version: 0.0.0 dependencies: @@ -11128,7 +11128,7 @@ packages: dev: false file:projects/arm-azurestack.tgz: - resolution: {integrity: sha512-6pgruPO4BB7wTq09510NaAUKNG83O47FEYf+oatOZ1gZsKbU3cq8OZC2os1D7URwULHvweMOse8hNmdmhj/A9w==, tarball: file:projects/arm-azurestack.tgz} + resolution: {integrity: sha512-Uuxxph1zJzUOhlhhOiY1M7Jk/ZxWm5Xdd/0V5IMoIWdXx9eauNXSWAsq2A0wh9jQtJK6nDGMsuQ5wzl8JkMNJQ==, tarball: file:projects/arm-azurestack.tgz} name: '@rush-temp/arm-azurestack' version: 0.0.0 dependencies: @@ -11152,7 +11152,7 @@ packages: dev: false file:projects/arm-azurestackhci.tgz: - resolution: {integrity: sha512-mY/tK4L6k36/EprixhS3PD0RVqei1wtyQ0Ljq4J+1oNAR59P4jhqSAMHQuzerHBquFwYpLizOnCCc07+Zb/7Ew==, tarball: file:projects/arm-azurestackhci.tgz} + resolution: {integrity: sha512-M8LufT4Sfh69jIa0Jga3Nscbtwt8IRlVB8bESS1UHhHiKMriLB7A4mqYEhQ/GGpwE56s2D4DORtB/tDr0woadg==, tarball: file:projects/arm-azurestackhci.tgz} name: '@rush-temp/arm-azurestackhci' version: 0.0.0 dependencies: @@ -11177,7 +11177,7 @@ packages: dev: false file:projects/arm-baremetalinfrastructure.tgz: - resolution: {integrity: sha512-l8Zu/vH06xX96P9m6Nih2ODB4vYpTTSGkLTCOFx1hL/p8+BUOi/QeGu4WUkrH64OgzdhFYjxbPx0JwtV3wdbwg==, tarball: file:projects/arm-baremetalinfrastructure.tgz} + resolution: {integrity: sha512-EGG3W17fhAN6QzUIAH4UG/NQCctMA6PVzj6pcxdq9HOr/3WjP1HnRs5jb14lAsmqmlFNbs5ulvbm666khBdjOA==, tarball: file:projects/arm-baremetalinfrastructure.tgz} name: '@rush-temp/arm-baremetalinfrastructure' version: 0.0.0 dependencies: @@ -11204,7 +11204,7 @@ packages: dev: false file:projects/arm-batch.tgz: - resolution: {integrity: sha512-JdX8p69h996oRDKT3p6h3987ccXckSsKn9kxdLn8VmewD/s4T6yL0Q0GPtdYGelrpOD/xkqbtkIw62ZF8ivFxw==, tarball: file:projects/arm-batch.tgz} + resolution: {integrity: sha512-MNRsEc7Cdk8lkzwrdzO9NVHA/gOpZ+u56gssOrWtFq3XNq+hVOYzFfWkH2q/NS3Wozh+5wbblVwIhPDrJBhN4A==, tarball: file:projects/arm-batch.tgz} name: '@rush-temp/arm-batch' version: 0.0.0 dependencies: @@ -11229,7 +11229,7 @@ packages: dev: false file:projects/arm-billing.tgz: - resolution: {integrity: sha512-wOILBDXSaIH4KIXS7+GxelydJIGu/yH01deoZQWfnt+f3Dq9bXmRkHObIFsiP23dqxYBeMdh9YmIje7npCZk6Q==, tarball: file:projects/arm-billing.tgz} + resolution: {integrity: sha512-53HpXSUcmbqdGG5plwLVD868PGxGPSXzMbwgMlOwiQ5ZwsePMGzW+2OyAffHfpN7V4Y+t/scgSWv+W0ZBvxdSg==, tarball: file:projects/arm-billing.tgz} name: '@rush-temp/arm-billing' version: 0.0.0 dependencies: @@ -11253,7 +11253,7 @@ packages: dev: false file:projects/arm-billingbenefits.tgz: - resolution: {integrity: sha512-OEGFJ4pdIvLmuZ6a8Kd+au/nzlriHhg2GxHBBzIRuoUXcmVR0/pU7Nq49BzqYxIi4BlP16jRaz22KaJOKt5fvA==, tarball: file:projects/arm-billingbenefits.tgz} + resolution: {integrity: sha512-fxR7CsNV8f4AhuSHgCcgU6XIMV9+f6Js0N3kxOi+fDE9yPoVhXlSGSCKycXAIE+7PSY6T8Ax8UMsMzeQAA4wBg==, tarball: file:projects/arm-billingbenefits.tgz} name: '@rush-temp/arm-billingbenefits' version: 0.0.0 dependencies: @@ -11277,7 +11277,7 @@ packages: dev: false file:projects/arm-botservice.tgz: - resolution: {integrity: sha512-9wvo70rlFk0HAhFHW68RdC8gmXTFfwrEzBf7LADTrRJvoGhjADVVyPn6tzVxhCTKMfg8L3f17b8tdJJXV4xgmA==, tarball: file:projects/arm-botservice.tgz} + resolution: {integrity: sha512-W6ou7vVyMfUiEYvH0wyCpILbxXAMhi+l293WU80zPJ32LOH51pqhcfpP3E0R8J8MSfdpU2XBdAY6rzNlGySCzw==, tarball: file:projects/arm-botservice.tgz} name: '@rush-temp/arm-botservice' version: 0.0.0 dependencies: @@ -11302,7 +11302,7 @@ packages: dev: false file:projects/arm-cdn.tgz: - resolution: {integrity: sha512-Vk/t0OOehpgWfzYGEAEQNqNB+YWXGnaNrKI+txh8/Jjzr0qfKCi3+cr2vI+5if7FYpbA8Cfy+/aOM8dxpy7rIA==, tarball: file:projects/arm-cdn.tgz} + resolution: {integrity: sha512-lqNE25zilcqqcvUZ8FrPJBEPZRV/2wW30csTkKd8GHb5XtF6QahnnGAGqFzX96CLlKigaDzgw6dSYMx9RwoGFg==, tarball: file:projects/arm-cdn.tgz} name: '@rush-temp/arm-cdn' version: 0.0.0 dependencies: @@ -11327,7 +11327,7 @@ packages: dev: false file:projects/arm-changeanalysis.tgz: - resolution: {integrity: sha512-jRfa+sr+aDplyHyzn1XZcDjLyZAkJx1FHfO83ya1hsR2ZJEORi8tJoeFZ4FuREcsZxPB8NviJw7YceNjn12LJA==, tarball: file:projects/arm-changeanalysis.tgz} + resolution: {integrity: sha512-nZJ0HeewCIyJ/FbnPEUrOLNtw3PMWkH7pxSvQOfls0ZusBMrqkCZkSR2cjU05kbXhROVHg7zTop0v/HDGmNu/g==, tarball: file:projects/arm-changeanalysis.tgz} name: '@rush-temp/arm-changeanalysis' version: 0.0.0 dependencies: @@ -11351,7 +11351,7 @@ packages: dev: false file:projects/arm-changes.tgz: - resolution: {integrity: sha512-U+53YLqBl3DmErXW9glVzD+hP6pA58tpTcHqN13AL6aru5tQawBPW/utqB/usJIKGcBkZVVkVScxSU+YBSVNow==, tarball: file:projects/arm-changes.tgz} + resolution: {integrity: sha512-QwndDtZyr6sicbvuSKhDYHi264WCM+yHQReMi2aUqCQlI5qN+E5+DuZZYg+q82G8R6OPJxxwi5fwM8Wv+R/F6Q==, tarball: file:projects/arm-changes.tgz} name: '@rush-temp/arm-changes' version: 0.0.0 dependencies: @@ -11375,7 +11375,7 @@ packages: dev: false file:projects/arm-chaos.tgz: - resolution: {integrity: sha512-+hTHoCDxM1PN1CfVHn+9VDNwFkIRvaw/xtPkQLOZHkJCCtKbJQAoDTMRU5Fr0X6cEnR/rfyNN0KHw7Pz32eKIw==, tarball: file:projects/arm-chaos.tgz} + resolution: {integrity: sha512-TFPZK4djdfhFc/yewjeCr+nNf80bB+8ZHHNMBjwke7QMol8x9HoOwKkUjbuk8vGE+BGLvnEyu0r6FUI1jc/Y6A==, tarball: file:projects/arm-chaos.tgz} name: '@rush-temp/arm-chaos' version: 0.0.0 dependencies: @@ -11402,7 +11402,7 @@ packages: dev: false file:projects/arm-cognitiveservices.tgz: - resolution: {integrity: sha512-iRH0Oo39F/4mHOAq3ul++LrsFc9YWx4AiVqMcQzYZq3tyda9ood4t3JwCnuchXJBYDPh2u+u2FT6o2TIrTM71Q==, tarball: file:projects/arm-cognitiveservices.tgz} + resolution: {integrity: sha512-GhYbxkaZfxQRAhXe60u0QOcAyZ5JAYx38PteSo0Frh+c+HXPrVAXguDJNPwIJwPR8pJ+1KT3Ai6gN/ZHf/VztA==, tarball: file:projects/arm-cognitiveservices.tgz} name: '@rush-temp/arm-cognitiveservices' version: 0.0.0 dependencies: @@ -11427,7 +11427,7 @@ packages: dev: false file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-seNIv9GwC05l51THNChasmlwGyHtDHBSQi/2nDJ1oHQdZvdEENff+mrTL5AS6AkqSPWhBvRNb5nBm/qoSaL5GQ==, tarball: file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-Uy6tdZ+veC8iufCM73jYyvNxMZ4JKgz7+BshDQEXRkuDgtHBqAW50RtaMEJUZxl6G1H0GIFoL8tyr5dlL72xhA==, tarball: file:projects/arm-commerce-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-commerce-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -11452,7 +11452,7 @@ packages: dev: false file:projects/arm-commerce.tgz: - resolution: {integrity: sha512-7i8r7IU8NL7XAqtudSkQTfBgRxwEYtPDkyVWBP19DuH+m8YLU8WvsUl2WmA6cm5jMK0qK42fvgiTHoN+ecbWgw==, tarball: file:projects/arm-commerce.tgz} + resolution: {integrity: sha512-xSJ9iUa7E9TEm4ycKRn/Ed+JyMYuWRYMUns/gs1jxHYZ2b8MKtELJAJ2I4X1fpEjXgD64Vgw8BaDMnOHiW/J8A==, tarball: file:projects/arm-commerce.tgz} name: '@rush-temp/arm-commerce' version: 0.0.0 dependencies: @@ -11476,7 +11476,7 @@ packages: dev: false file:projects/arm-commitmentplans.tgz: - resolution: {integrity: sha512-DclJyNpGXpGzT1e/lNIcwf1FU/4k+vANyEEUMzJQxfF2cy17IOXS8qo1h2RUQRbLDm0UZIAd/6xjOG3pwpCJ3Q==, tarball: file:projects/arm-commitmentplans.tgz} + resolution: {integrity: sha512-L+dtsJierPzzipS7DXxzq+N4uYx9/Gx8IZM5nUyCLyt4r1fJScrTlaPbzLBZiml6uVX+SCLttfv+RvegbC2+vA==, tarball: file:projects/arm-commitmentplans.tgz} name: '@rush-temp/arm-commitmentplans' version: 0.0.0 dependencies: @@ -11500,7 +11500,7 @@ packages: dev: false file:projects/arm-communication.tgz: - resolution: {integrity: sha512-2hWJ/aTBmQIto14Ktu3qcZbTTlYFHPGerJIvWgaltcA4DidEzkJZr5G8YaRdQpZ2QFvjH4dRGefJutZHxdwVdA==, tarball: file:projects/arm-communication.tgz} + resolution: {integrity: sha512-gzQ6ikNbxOBBDo8TThS9oxAhv/XfLIk6VwP7SqdIcffjcndOq8cHHmmG+Li8+az9sera1n2jrggfwm6FNq/B5g==, tarball: file:projects/arm-communication.tgz} name: '@rush-temp/arm-communication' version: 0.0.0 dependencies: @@ -11525,7 +11525,7 @@ packages: dev: false file:projects/arm-compute-1.tgz: - resolution: {integrity: sha512-GNH6eYlcbf2q/gL3gSeFIrGTeu55MJKUeTHcFvtpwckRU5Gl7M+amBD/C3WcgxE9eiMwGdSh7fnY2u9I3kN1Cg==, tarball: file:projects/arm-compute-1.tgz} + resolution: {integrity: sha512-/fsYCj+D6c3PbALmfyGay0YVZ8oGySe2b56dqDPkrdpdxTResBg2qQMBQqESyNmfeCdXBpAfGewdvT0BuSR44Q==, tarball: file:projects/arm-compute-1.tgz} name: '@rush-temp/arm-compute-1' version: 0.0.0 dependencies: @@ -11550,7 +11550,7 @@ packages: dev: false file:projects/arm-compute-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-7tPvSdbHOo9NhM+eHOBSpbtJfxWtcS3HI5shMUriEWU1Jf5dtbLLbj4KWBaRcmBzwy7QWJJzvEVPoJbAlMa7xQ==, tarball: file:projects/arm-compute-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-n1y5GNuX5ttl49SRTAvZgLQPhrdxeZWsV/r7bf3gXuD9QPWzaI1bNqcbROpENxKKIFTAvQ1lY7COrLy2dqLo0w==, tarball: file:projects/arm-compute-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-compute-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -11575,7 +11575,7 @@ packages: dev: false file:projects/arm-compute.tgz: - resolution: {integrity: sha512-l0ZioJDcuCfgBQvrWRCtT6jnnygpKC4TkWT+M6BqOnOhOdTM8bxGaxmfcXLKUShb4Xd2zZo+FOj+0eimg3MJCw==, tarball: file:projects/arm-compute.tgz} + resolution: {integrity: sha512-kWT7yit6Lb6/P1tekHyg+GqHwtOEx4DGLGnRf3Nsn2VywfIJ4RENLFUtA52iiX6KYO3UcWc7cmWsN50Axpx+qw==, tarball: file:projects/arm-compute.tgz} name: '@rush-temp/arm-compute' version: 0.0.0 dependencies: @@ -11619,7 +11619,7 @@ packages: dev: false file:projects/arm-confidentialledger.tgz: - resolution: {integrity: sha512-sH4QiYpDqMB+wGx4obRrD941cexcAU7c85LUhOO86ShGBFXJUoHLGrazocFeeRkYMi+qnh/Ld2G397UGa4qj+A==, tarball: file:projects/arm-confidentialledger.tgz} + resolution: {integrity: sha512-NMBGN+p3i+kc2sFIcd9JK9XSr+R9WG/rXztICPBzOgiQqI0e1tome+F8i4jXSsPXltACpUDORVdyeRq6rDyLQQ==, tarball: file:projects/arm-confidentialledger.tgz} name: '@rush-temp/arm-confidentialledger' version: 0.0.0 dependencies: @@ -11644,7 +11644,7 @@ packages: dev: false file:projects/arm-confluent.tgz: - resolution: {integrity: sha512-mzRkKFGmtKWe2v5ak+NCXSj7bFjMZEYG7Iash1kRe6o0cTruWQd9R5k5l6lA8zcHYZV78CkjY/D9yZpngMtwuA==, tarball: file:projects/arm-confluent.tgz} + resolution: {integrity: sha512-bggOgfwybYLOMmoGf1HNEc/QRF2pxxcn5gnq9D06jHr5nHdFf5fuEgZCprePiLcbPuvV0x2pIPoT5B3788ou8A==, tarball: file:projects/arm-confluent.tgz} name: '@rush-temp/arm-confluent' version: 0.0.0 dependencies: @@ -11671,7 +11671,7 @@ packages: dev: false file:projects/arm-connectedvmware.tgz: - resolution: {integrity: sha512-BWHzfNnvA2ly9hwzmPRAjr59n2tNP4QKX6p1lWp4G7NCN1rvXUBSLaWeuxfjklLBY2W/Dfr1kkkoF74L54RNGw==, tarball: file:projects/arm-connectedvmware.tgz} + resolution: {integrity: sha512-55NyBuozUFie9djQ8IqqFB8Lh7IiPM/bKSa5E2IP+yE0aMT3aQJNYLcyeea0TYqcXEPu47y8Xfzu0W3oYK8QBw==, tarball: file:projects/arm-connectedvmware.tgz} name: '@rush-temp/arm-connectedvmware' version: 0.0.0 dependencies: @@ -11696,7 +11696,7 @@ packages: dev: false file:projects/arm-consumption.tgz: - resolution: {integrity: sha512-/nHNUUJxZj1+kZt3crFi/w/38VmTwG/bbqQuVzEcEodwfxTi9qFEb8c9y+bV4gPsjOjc5R+yiacMkdsQ+I39jQ==, tarball: file:projects/arm-consumption.tgz} + resolution: {integrity: sha512-5CrpppWgiGxr4X3Z7mlwVWB0n+ZwIf4VCaFjSwDE+TtR34x98CdLXTb9PttneJHQkIOe4Eaee06SaENe7mshmw==, tarball: file:projects/arm-consumption.tgz} name: '@rush-temp/arm-consumption' version: 0.0.0 dependencies: @@ -11721,7 +11721,7 @@ packages: dev: false file:projects/arm-containerinstance.tgz: - resolution: {integrity: sha512-5pEMrbgMeJhHnB0D1TROTJbZfHWMu4N8OkQY0Dw0hPWawntnq8DruNOa74fkdluri5WDyp+t33m3Rcthsdd/6g==, tarball: file:projects/arm-containerinstance.tgz} + resolution: {integrity: sha512-WSvuwm/vBUrzsRxD5PuUDRf8so1+8fZlox0b2XZf4Y5TgObzQ7+tbzI7chR20mU2+DUry7XRAcIffujkJFhHbw==, tarball: file:projects/arm-containerinstance.tgz} name: '@rush-temp/arm-containerinstance' version: 0.0.0 dependencies: @@ -11746,7 +11746,7 @@ packages: dev: false file:projects/arm-containerregistry.tgz: - resolution: {integrity: sha512-PUitgqJBr6Iaz6QiyG7/lCjCdwv7kHOaDwp/ksXh7Xyofr8QtX5W+J/qbwfETUxgp3NYKVEiLCJksplBmSndeA==, tarball: file:projects/arm-containerregistry.tgz} + resolution: {integrity: sha512-IlNtJhNxx84POEA/UUjwGivdaSwwFdpMLyymXU/tqYKXKcOQ4M1lK9XRQ4S7AhLJFZ+zAIPNIfgBiCwnUcWxug==, tarball: file:projects/arm-containerregistry.tgz} name: '@rush-temp/arm-containerregistry' version: 0.0.0 dependencies: @@ -11773,7 +11773,7 @@ packages: dev: false file:projects/arm-containerservice-1.tgz: - resolution: {integrity: sha512-bB0eUxNbv5WW3sBQ6tl9NjzYNct6zp4f7HW8QFdLwTdLAam1ril6kA6+dGgGDiwoZ6jzm99wVmPBR7JRTaraUA==, tarball: file:projects/arm-containerservice-1.tgz} + resolution: {integrity: sha512-x0VWQX7xveJVTuUgHr5+ttYEFEUUwaUlZL5TlL8QkqXKJ8r9BBw7xurxmZ3yK2ThysNnH9lnMH+YEG+tsp9sBA==, tarball: file:projects/arm-containerservice-1.tgz} name: '@rush-temp/arm-containerservice-1' version: 0.0.0 dependencies: @@ -11800,7 +11800,7 @@ packages: dev: false file:projects/arm-containerservice.tgz: - resolution: {integrity: sha512-lHKHJsxxOicFOzH2h32cxHnrE2BdDLNbiPH9w2hhzQ3j2z84vuX5OhtVda5b8WuydMqRWsVlkJt4xToeZGyklQ==, tarball: file:projects/arm-containerservice.tgz} + resolution: {integrity: sha512-oKOMccbnse3TH177/IBCYL3goJb/YHrJQTK+MAe9H6MMbXKHHiJ5hYN8pOJGTDsf2hpZE7KGEmu8gs8l/9zIGA==, tarball: file:projects/arm-containerservice.tgz} name: '@rush-temp/arm-containerservice' version: 0.0.0 dependencies: @@ -11844,7 +11844,7 @@ packages: dev: false file:projects/arm-containerservicefleet.tgz: - resolution: {integrity: sha512-ob35LS9EjLIoNi84sSQo5JDp6MomzfS0J1hXpfq9OoXav+NMJUWtSbXUKOl5tj5Drm2Ba6F732evF+KpS4f8WQ==, tarball: file:projects/arm-containerservicefleet.tgz} + resolution: {integrity: sha512-r6OT38Td0rJX7x+jjsjrRwYvdC2eoKf1C/AT9nb3QOX1/PDb/4f/siNpJhRJC06TCW9QQixklP471uUA4t32pw==, tarball: file:projects/arm-containerservicefleet.tgz} name: '@rush-temp/arm-containerservicefleet' version: 0.0.0 dependencies: @@ -11871,7 +11871,7 @@ packages: dev: false file:projects/arm-cosmosdb.tgz: - resolution: {integrity: sha512-0niv6ZwyYlOVx+ldtZ9j05NaazieXbydzF2ysNlhXKD/qG3NIFRWlo7r7z/Jl952TjX3fBKOH930LLW5cSLWsA==, tarball: file:projects/arm-cosmosdb.tgz} + resolution: {integrity: sha512-PjJZs1Efj6yKkYuri8VY5svphYGZFPRlpPT42b7F3Q1BhpkFOh81ycMbRDuJEcbYRmMSWlru+s2GDGXtwGA+wQ==, tarball: file:projects/arm-cosmosdb.tgz} name: '@rush-temp/arm-cosmosdb' version: 0.0.0 dependencies: @@ -11896,7 +11896,7 @@ packages: dev: false file:projects/arm-cosmosdbforpostgresql.tgz: - resolution: {integrity: sha512-VO0h36j1qX5o0J0AlXBshdcFWVJEOFFUqYPfLk/sLxWiRxJLnJE7rAhbMihQh7OmPd+fCMXQIEwC+cAF/ZE5ew==, tarball: file:projects/arm-cosmosdbforpostgresql.tgz} + resolution: {integrity: sha512-Mt4BWo9lV0NIcYEIlgjoKacIUhG90T+qrNfgBfVG8YaCpRl5UM8AZ42+y04vz3DzresCoY9p8mhJ+YkEX2dmRA==, tarball: file:projects/arm-cosmosdbforpostgresql.tgz} name: '@rush-temp/arm-cosmosdbforpostgresql' version: 0.0.0 dependencies: @@ -11921,7 +11921,7 @@ packages: dev: false file:projects/arm-costmanagement.tgz: - resolution: {integrity: sha512-qbC0PY1c35TR11HCN4u/wx/Ayh0uyZ/tnqOacirKHK6YuQCj2HoOVJabQnwIxL3QsmppNtccryZ9W+Wc1BniQA==, tarball: file:projects/arm-costmanagement.tgz} + resolution: {integrity: sha512-qafujtPfIZvPmbc/FJG+9pKvWvFQQlraZCojpjfxnkST09xfIzd5NsKJSf5ftsnUW61fLmueuV9HTtL8ue8Wdg==, tarball: file:projects/arm-costmanagement.tgz} name: '@rush-temp/arm-costmanagement' version: 0.0.0 dependencies: @@ -11947,7 +11947,7 @@ packages: dev: false file:projects/arm-customerinsights.tgz: - resolution: {integrity: sha512-JsaFKhh94eGo+ymMVHHtcyvtikJPO/kOxH3uB1nQEI4iFqRf90G1Cbn+O/BZMi7DPO3T5JhEvYvjjq+muII9Jw==, tarball: file:projects/arm-customerinsights.tgz} + resolution: {integrity: sha512-J2ydmXcRjUCkJQtM9b+DiSvq9LIXXHfuRlKtqD4wMyEWMx4V1pkfkurcLchDZx6txP8PTnYZUbeO4U7CS/QsWw==, tarball: file:projects/arm-customerinsights.tgz} name: '@rush-temp/arm-customerinsights' version: 0.0.0 dependencies: @@ -11971,7 +11971,7 @@ packages: dev: false file:projects/arm-dashboard.tgz: - resolution: {integrity: sha512-GlpdEu4+VTvA3XjpEyWhecD9YcY4xzTrKLe8HPljnInljUs/JHBpoEQ6EiTnIs+95hGXlZrzp3ZAAeV6kigIAQ==, tarball: file:projects/arm-dashboard.tgz} + resolution: {integrity: sha512-KvF6sIxXpnKk/26aCdeRmMabSsczYYFRsCIyV9F0fQpDx2cogagvAkXSAu4nMnYiP9RXRBZElBVQPdBPfT7ywQ==, tarball: file:projects/arm-dashboard.tgz} name: '@rush-temp/arm-dashboard' version: 0.0.0 dependencies: @@ -11998,7 +11998,7 @@ packages: dev: false file:projects/arm-databox.tgz: - resolution: {integrity: sha512-dn/m5CgorTWXxkYzEm5M73bguuJBIIeMNRWZzNr5mBFskfhlL212xBVyzV2AsEwENCE21tGYtB5KM5ym9XW5mQ==, tarball: file:projects/arm-databox.tgz} + resolution: {integrity: sha512-sCWt+vC3rjlgJC14FdS1suuj+VvOrbTAcivZDyntDh9iXt9oGy4KArtiz/dfNB2KST1bGSWSzhgg8bym3L2Gxg==, tarball: file:projects/arm-databox.tgz} name: '@rush-temp/arm-databox' version: 0.0.0 dependencies: @@ -12023,7 +12023,7 @@ packages: dev: false file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-8Xe527cWe8HZtJSsXqOO/q8Sx7HtlUGOzLGO6xli5pW5ftjCYgVwXN8EvGwKDrX7xhm/N/ceQ8HZL1355rVY3A==, tarball: file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-HurfeC799syAyJonOtD8R6rZoXXN4bVmUVwIZ69IRCBGFVeI5AJ27lBXXal9p+VWzQl8RmG8HbBojcYArWMeXQ==, tarball: file:projects/arm-databoxedge-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-databoxedge-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12048,7 +12048,7 @@ packages: dev: false file:projects/arm-databoxedge.tgz: - resolution: {integrity: sha512-LrD+CEVGHnjAHnZkNHX6VtziqeqvUBLXpyM2b7WrWaQVEXyNPNtmNlOiudeAXS+DLJLMtHWcJE3DQycLtXIzLQ==, tarball: file:projects/arm-databoxedge.tgz} + resolution: {integrity: sha512-gZYq0oMH4F0HgJbSYOIcFs7gmXEvWvFNLKf0hu0WjsjRBAejGGN2EDsicmNaPdzQnB0HYIrOBzAg/OCOkRO6Zg==, tarball: file:projects/arm-databoxedge.tgz} name: '@rush-temp/arm-databoxedge' version: 0.0.0 dependencies: @@ -12072,7 +12072,7 @@ packages: dev: false file:projects/arm-databricks.tgz: - resolution: {integrity: sha512-2+E3CIDxap6q0IVVTeRRaEazCKTUMbYOnGOf/5tWTMF2l270F/Ho+dyZ+Wpli/T43hq7qeraZXWststAh80W+A==, tarball: file:projects/arm-databricks.tgz} + resolution: {integrity: sha512-eHMNLvd3GmQrITLhUdTXIF/8NbCwHwFJwYLiLzxJIrHQI8RLkZ/7JdxN1zVWfYsbpCY+m+Vx5Y+q8ba37+d9oA==, tarball: file:projects/arm-databricks.tgz} name: '@rush-temp/arm-databricks' version: 0.0.0 dependencies: @@ -12099,7 +12099,7 @@ packages: dev: false file:projects/arm-datacatalog.tgz: - resolution: {integrity: sha512-Oxg6Tf6nvePMZyn/2muUZEQtGCVggHWh4TPJH5SxlLNdW6C0fZkxItl61KYS5bAXIqfG3m+CF7m4V/hOu5Sbqw==, tarball: file:projects/arm-datacatalog.tgz} + resolution: {integrity: sha512-9ucxaxrSU1Iss5FI4X9Gv2zlMduOW5SqKI28N6OlhzSG5YQ0i21N9YrMGzi7ChmZtWTQHu/YERqhaYhnDGj5nA==, tarball: file:projects/arm-datacatalog.tgz} name: '@rush-temp/arm-datacatalog' version: 0.0.0 dependencies: @@ -12123,18 +12123,20 @@ packages: dev: false file:projects/arm-datadog.tgz: - resolution: {integrity: sha512-ZlX/MNFKiK+uC5BiVWp+BxPfBmUpLTZgEKmkWqXGkNBpi/KCU0FpetMFeH401UjSpDOyBmHHzafHc+SxK5iKuA==, tarball: file:projects/arm-datadog.tgz} + resolution: {integrity: sha512-FyI/6AGbyNluSJHYsHZsySUrGBgjuVZKf2q8n0L69o8OrHloFBnKFW9rp53yWx/jaSb/iIQTyqraoDsPQAS6ug==, tarball: file:projects/arm-datadog.tgz} name: '@rush-temp/arm-datadog' version: 0.0.0 dependencies: '@azure/identity': 3.4.1 '@microsoft/api-extractor': 7.38.3(@types/node@18.18.9) '@types/chai': 4.3.10 + '@types/mocha': 10.0.4 '@types/node': 18.18.9 chai: 4.3.10 cross-env: 7.0.3 dotenv: 16.3.1 - mkdirp: 1.0.4 + esm: 3.2.25 + mkdirp: 2.1.6 mocha: 10.2.0 rimraf: 5.0.5 ts-node: 10.9.1(@types/node@18.18.9)(typescript@5.2.2) @@ -12148,7 +12150,7 @@ packages: dev: false file:projects/arm-datafactory.tgz: - resolution: {integrity: sha512-XOKr6opnuUaE7v+r4XvPxAm8xp8YIxnY4A56eWZ78pVHVUf9WUg+fP5DADf57LKRL49Iip9rJOV10zH0Ghgl9Q==, tarball: file:projects/arm-datafactory.tgz} + resolution: {integrity: sha512-5b6zKnjp3RxZpphD3pGhYhfUsw17KvjWBIAZ6czqXoAwX2y22xFjF+o1GPfXuVmBR7CJ3IdiWvzofbCwgNWorQ==, tarball: file:projects/arm-datafactory.tgz} name: '@rush-temp/arm-datafactory' version: 0.0.0 dependencies: @@ -12175,7 +12177,7 @@ packages: dev: false file:projects/arm-datalake-analytics.tgz: - resolution: {integrity: sha512-VpayDv9zO+8+aahoGDReAl6OObBqnSnnXx7iSO0reloIz3l9ziI0TQ4b1D+DEbtSy6Ec5r8wVuC3zye86G9sZA==, tarball: file:projects/arm-datalake-analytics.tgz} + resolution: {integrity: sha512-vVlrJX0i8aN+O87dVNu8F7JeNwHcczuovkXcl3nbmVZcpft6pk7UHU4ipajUoRX225I/2r//I50BF/23bL8Y4Q==, tarball: file:projects/arm-datalake-analytics.tgz} name: '@rush-temp/arm-datalake-analytics' version: 0.0.0 dependencies: @@ -12199,7 +12201,7 @@ packages: dev: false file:projects/arm-datamigration.tgz: - resolution: {integrity: sha512-va6dfZ11YYTvzqv/plaBBSZEt6A4suFXkzkJFcZM3xa2V6x/8hM7aa++tUDU7FAHPLAWXon9ZCiTDWg7UtL9PQ==, tarball: file:projects/arm-datamigration.tgz} + resolution: {integrity: sha512-sYu8DxRjN1eocAyVm4YjfU79LfKQmDjAtpmz5cK74b8fPnVlUkwc9dbp29kuo+53jnnOnCfEIDQPtHE6vkD8LQ==, tarball: file:projects/arm-datamigration.tgz} name: '@rush-temp/arm-datamigration' version: 0.0.0 dependencies: @@ -12223,7 +12225,7 @@ packages: dev: false file:projects/arm-dataprotection.tgz: - resolution: {integrity: sha512-fbX3LFgjnpFsuNWE875EHY/b3hwwL7EzqT/CGl/ijIFhhtr5kCRpgrovJGaceVXjLrE8H2g90M3ZPJ30FHk/Mw==, tarball: file:projects/arm-dataprotection.tgz} + resolution: {integrity: sha512-cfrQe2TV9OIxllQAiz5dvdlLmK145/eF3J2c4/760pK62eLtyfdgmr9taKXybhsIQ7e05rCUoCDPOMiyQPl+7A==, tarball: file:projects/arm-dataprotection.tgz} name: '@rush-temp/arm-dataprotection' version: 0.0.0 dependencies: @@ -12248,7 +12250,7 @@ packages: dev: false file:projects/arm-defendereasm.tgz: - resolution: {integrity: sha512-6IehsLfhqN5PvJcxd8wEco7h51BZ3zj2D6P3VLSBas9Tce2OazZcyJwe2qHmacJpC7zknD3S3mKWrShgqm8oSg==, tarball: file:projects/arm-defendereasm.tgz} + resolution: {integrity: sha512-ty2QxX+niHf+QO1KlfFAHUqfQCrMUkpJeNxwWNdIAUqONdbH+xqx5FjZ6o5jXwn3sRD/s5ah58l4FMB9wc12MQ==, tarball: file:projects/arm-defendereasm.tgz} name: '@rush-temp/arm-defendereasm' version: 0.0.0 dependencies: @@ -12273,7 +12275,7 @@ packages: dev: false file:projects/arm-deploymentmanager.tgz: - resolution: {integrity: sha512-zhAvZzjdmqUDbPdBlRoXzCDqt8UkOHAjJZ6mLvST53Nr1EVMeh0hxLJCmxJhBv6WmeuHy7j6JqIbAemNkgqhCA==, tarball: file:projects/arm-deploymentmanager.tgz} + resolution: {integrity: sha512-myNmVqEGLvogEtswoq3V1kqJB959E4+t/TJoqnlioDS9xublTiEU3S4seaoV1J75lq9/7rGNs+DIpWiZIrRAYA==, tarball: file:projects/arm-deploymentmanager.tgz} name: '@rush-temp/arm-deploymentmanager' version: 0.0.0 dependencies: @@ -12297,7 +12299,7 @@ packages: dev: false file:projects/arm-desktopvirtualization.tgz: - resolution: {integrity: sha512-PCPedV/PuxGgESNuEKTPdRHDon5WHZknD/yPvCGIuDFraL8VXe+vgjABNurZzfpYjqPbDLYoS1ollsEk3jug4g==, tarball: file:projects/arm-desktopvirtualization.tgz} + resolution: {integrity: sha512-RK6sFSTJ9c35vxEVx+caxiD+hyfUBFuiaY3Q2/ePXwrbPkmNIncKjQrynmQgg7VTi/aUaXddAj0V6Q9VlOIy7Q==, tarball: file:projects/arm-desktopvirtualization.tgz} name: '@rush-temp/arm-desktopvirtualization' version: 0.0.0 dependencies: @@ -12322,7 +12324,7 @@ packages: dev: false file:projects/arm-devcenter.tgz: - resolution: {integrity: sha512-KnOhxtbMIxzLhzg1STzXmgNbM4v9muAhM6ZXgV3Zl23MbdsvK1vE/XNZnqMuztR29e5fKzOmynun+1voTaLd8A==, tarball: file:projects/arm-devcenter.tgz} + resolution: {integrity: sha512-IiLRzQ/vBrI7ZpcNsEbOjvjtm3CgBHXMKIgpyCTQymjp0WWghatECrP7KWWRDSFPEZuBoF/udW+o1i0uCJHsDw==, tarball: file:projects/arm-devcenter.tgz} name: '@rush-temp/arm-devcenter' version: 0.0.0 dependencies: @@ -12347,7 +12349,7 @@ packages: dev: false file:projects/arm-devhub.tgz: - resolution: {integrity: sha512-bSSjS/SsVJ9fAob6y4cSpYR0VjOeb7L3RuHjuTd0fFlnhIbpFLH+Y2vttfuuHWRnzxA0yM4JnumH8JoW5lYM0w==, tarball: file:projects/arm-devhub.tgz} + resolution: {integrity: sha512-3GB+uvRGunqx8FrY6Bd1wIfOashycfMXmE9lEkecAR07dRLZ/+WTl/Y78UiHMZ8E0xIem84hlgRxL81Dg4G9SQ==, tarball: file:projects/arm-devhub.tgz} name: '@rush-temp/arm-devhub' version: 0.0.0 dependencies: @@ -12372,7 +12374,7 @@ packages: dev: false file:projects/arm-deviceprovisioningservices.tgz: - resolution: {integrity: sha512-YjN0sl/JK292G//yixUwKFZ9vEiD7jYFxWS+/2qsxR8wwXCnJvbI+7xSSMuYF+hXB/LDMrS9XudLO04U7oBDHA==, tarball: file:projects/arm-deviceprovisioningservices.tgz} + resolution: {integrity: sha512-hHgOmtTazAEwnao35VNG0VTuUyI1ILYYvfn9cRGxjA8I/z1ML1Ox1Gzh06Zy8UdIOZyWzhLkrBKzMmDUCwU2Vw==, tarball: file:projects/arm-deviceprovisioningservices.tgz} name: '@rush-temp/arm-deviceprovisioningservices' version: 0.0.0 dependencies: @@ -12397,7 +12399,7 @@ packages: dev: false file:projects/arm-deviceupdate.tgz: - resolution: {integrity: sha512-jN1+ValoE81o9tL3an8SWyvjW/rpnREWNZtEc9brokNmq5HlJbPn6v3c3AyCjqQPWmIUUTzqOGL36DokEYQrjw==, tarball: file:projects/arm-deviceupdate.tgz} + resolution: {integrity: sha512-19IC1U+UYJiagQM7ghe2YsDu0xYYYuL+QDMLIsBNbPfzVrZmNHS5KElDwfCmOjrcZ2UZWcPP6aqvJFHs/SaEGQ==, tarball: file:projects/arm-deviceupdate.tgz} name: '@rush-temp/arm-deviceupdate' version: 0.0.0 dependencies: @@ -12422,7 +12424,7 @@ packages: dev: false file:projects/arm-devspaces.tgz: - resolution: {integrity: sha512-Rg1Fs/Mf0wm6TECKrDfN6C8yVsV6whMxakBsIzpOAt7e8bY4AAE7KrCZuS09qTplcCIrp/wKFUWnr4kMJGHp5Q==, tarball: file:projects/arm-devspaces.tgz} + resolution: {integrity: sha512-50pH3OUvLxsSfo2vqt4cjvbKIZhM9jd50Ch7tEt20+4ubj9NSzAnfEG8/JNl+0nmyq93KJasTqdzJAu0CkSjNg==, tarball: file:projects/arm-devspaces.tgz} name: '@rush-temp/arm-devspaces' version: 0.0.0 dependencies: @@ -12446,7 +12448,7 @@ packages: dev: false file:projects/arm-devtestlabs.tgz: - resolution: {integrity: sha512-0AYnQLOa98MAjnGlxInlH4A2SAPkZOA4jJgKe5BI4kmVF87Il7CI6fedLRdRlDYOtbCV/ay3ZQJLsf/zypPoHQ==, tarball: file:projects/arm-devtestlabs.tgz} + resolution: {integrity: sha512-hWqDtXZxWhG4UyRu1HhrXKq1WVMNTAoiaTNKAx0VMkAz4q4C1GlTYKIKJRS3PKgs2CtzflVAwa3SvRTYHJv3zg==, tarball: file:projects/arm-devtestlabs.tgz} name: '@rush-temp/arm-devtestlabs' version: 0.0.0 dependencies: @@ -12470,7 +12472,7 @@ packages: dev: false file:projects/arm-digitaltwins.tgz: - resolution: {integrity: sha512-UA5nvlYH4a6/2UGUJcqevitjqM2lAArZh8fzIsvD3EtDvqWi8y3cF2aajfWhD1FznjosFpIBCT3360LLfFxaHQ==, tarball: file:projects/arm-digitaltwins.tgz} + resolution: {integrity: sha512-FvnZ1AEKzNHnOpDrhxpJrSPU8D0wJgTLeu7YBnvWmSvsW4Leh+idcUwBHRElPIPu8PEQ+KmPoTjmi7l9M669Fw==, tarball: file:projects/arm-digitaltwins.tgz} name: '@rush-temp/arm-digitaltwins' version: 0.0.0 dependencies: @@ -12495,7 +12497,7 @@ packages: dev: false file:projects/arm-dns-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-+6QpGVxZ4qFTixTOkOpOlNgJnwMb5PWkOYVrUV5ttQdff04Dw0uUo5Xlkeseht20naDnzGouH7vxu2McVfaddA==, tarball: file:projects/arm-dns-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-lSfAUugiGoDdwbVIS2lJxtB/rEf2cDQYSpwqR/y1RcJpWkwqfjdgvK47Josok4Y6NuXtaoosgkNFQ3AyMUWnIw==, tarball: file:projects/arm-dns-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-dns-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12520,7 +12522,7 @@ packages: dev: false file:projects/arm-dns.tgz: - resolution: {integrity: sha512-DiliIrArh682XWn4g8cer3ZcXfU2kbGF84KuK55kBThJtI8t54FQAkA5GXXQRg5FzTj86Uh7vClzQee4O/Bmxw==, tarball: file:projects/arm-dns.tgz} + resolution: {integrity: sha512-MR01Sje8p2oEOes6WKpKN8NiKP8m51G0JbaIHS5S5h1GrupaZQevwqWAEU812CEyKyoupX9Y0EIKXtwtWirAdg==, tarball: file:projects/arm-dns.tgz} name: '@rush-temp/arm-dns' version: 0.0.0 dependencies: @@ -12544,7 +12546,7 @@ packages: dev: false file:projects/arm-dnsresolver.tgz: - resolution: {integrity: sha512-2gmOhI24Dzh566GuyFHGvBZi6hhl6L7inPMQuxSxaA2Eda4GpoLAuoj5SGzZFipr3Uk3Shy9Ry/iLg442F+kvA==, tarball: file:projects/arm-dnsresolver.tgz} + resolution: {integrity: sha512-+F2MIKIUrC8FT6RzDUKIQ7/aoHO4J7myBRT7ltTsldWc9wgpmCVTFmlx63JvtonGt+i8P00S69/vIpiD2pYoPQ==, tarball: file:projects/arm-dnsresolver.tgz} name: '@rush-temp/arm-dnsresolver' version: 0.0.0 dependencies: @@ -12569,7 +12571,7 @@ packages: dev: false file:projects/arm-domainservices.tgz: - resolution: {integrity: sha512-qE5/S6G9GnahHBsa9CxAgXm+fOxa9+iYSV4o2qNK8Wov9rP8iu5MUkooricWjCFkRe/uEaJRJSN04Elu/VzJYw==, tarball: file:projects/arm-domainservices.tgz} + resolution: {integrity: sha512-JPL0wlYTKvsI38CLd5lNKIHjAAOIhN+3N7Qmn3EqFYn5RCC8u0ThCns9MIvpYk4iDkaZPozVj3B5AfRMaaaZWQ==, tarball: file:projects/arm-domainservices.tgz} name: '@rush-temp/arm-domainservices' version: 0.0.0 dependencies: @@ -12593,7 +12595,7 @@ packages: dev: false file:projects/arm-dynatrace.tgz: - resolution: {integrity: sha512-uRQXcxDca7Vhb76LwypmR5c3/djLe77+TGfQXlAvz2mvBOKNVG9S+mMuqO5pJ9NKuT7bB9Wsc5B1rHZfyaCbOQ==, tarball: file:projects/arm-dynatrace.tgz} + resolution: {integrity: sha512-DtNOPJwhrboyixoBli3jWJRFl4nl3iOQhHrkh8FETFsIP8WYq/5ZYF1PXOAQGVVbXy/6QDCVC6q65a6ShpB9hw==, tarball: file:projects/arm-dynatrace.tgz} name: '@rush-temp/arm-dynatrace' version: 0.0.0 dependencies: @@ -12618,7 +12620,7 @@ packages: dev: false file:projects/arm-education.tgz: - resolution: {integrity: sha512-uOp+Hnq0oSw1S8DXlu/Uq7a+SB29xFfNmw9Up6iU9TXj2EDpk+CqAmEZ+LEwR+q43+k9V5TaBYfwHDhdYOU8/w==, tarball: file:projects/arm-education.tgz} + resolution: {integrity: sha512-BKSAHaTn5C9R3+w1DQdlN+VfK9NyI4SrdWNPEjjtSaMU8TGnYPfHX7NLh7WKROWlAasK6afHrr0ber+yqDqFUw==, tarball: file:projects/arm-education.tgz} name: '@rush-temp/arm-education' version: 0.0.0 dependencies: @@ -12643,7 +12645,7 @@ packages: dev: false file:projects/arm-elastic.tgz: - resolution: {integrity: sha512-K7kWNwAl4dI0P0yDpqVf5BB6RE3BUUaCdbNCXVB9zy/iQPAx62l6tHm4aPAgPzpqF/BqeD7vXW8ZF9WEXxcNUw==, tarball: file:projects/arm-elastic.tgz} + resolution: {integrity: sha512-pfDEREbBX+xm8pnRKMNtVwkDcUT0lGydKyPcoWVWz2PhFvzBeCNmXF4SQjWJw7G6rYOrobh9Xizz7IoD8mkIpg==, tarball: file:projects/arm-elastic.tgz} name: '@rush-temp/arm-elastic' version: 0.0.0 dependencies: @@ -12668,7 +12670,7 @@ packages: dev: false file:projects/arm-elasticsan.tgz: - resolution: {integrity: sha512-F9tljpG/o/GZp6tqUyRZcrh69FSEB27+/qQ3LUatpIVBjBGIk5FTrfyIj3rh255l2YQ47SgQRDHt4ZpFkNv1cw==, tarball: file:projects/arm-elasticsan.tgz} + resolution: {integrity: sha512-LzlhNkrx3dfF3BEl2pUBGp5EWSZ/i5S1T6tV11Kgn0gbD9FbAKVaiJlnXajz2zyh+8J0Zt8TqnIUbfqhnLWAZQ==, tarball: file:projects/arm-elasticsan.tgz} name: '@rush-temp/arm-elasticsan' version: 0.0.0 dependencies: @@ -12693,7 +12695,7 @@ packages: dev: false file:projects/arm-eventgrid.tgz: - resolution: {integrity: sha512-XzSdqemhAJMLaTXNmxUVLhTQsdFqhQhiNkxy/nkbNIlrh3CtMxZudz1ZdRL5NymZoSvPTUgH2yhVYQdkRT3EZQ==, tarball: file:projects/arm-eventgrid.tgz} + resolution: {integrity: sha512-eOutePzB+EhqSl1kSFCC2KhPjwAWsCh6JxxG5seT6b2QPN+fPKRUf5FrGyallRfZs4p+ovU8LuOuPfKjjaIH+g==, tarball: file:projects/arm-eventgrid.tgz} name: '@rush-temp/arm-eventgrid' version: 0.0.0 dependencies: @@ -12720,7 +12722,7 @@ packages: dev: false file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-xEfFaDzQiHtYVUgDRZd223M7rRQgSUJvWBa2KRJepdGrvUPARe2HsjZIGFoyUROlMc1oO4Wb0ejJ5uwBDTXiww==, tarball: file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-vrZklKW3Ud6K18wQYDvilGf9j5KGvgEpMlf2plTq7uzIrDlYB3vKfXFrZmp3U3hfbuQ3L89dfLoOiHpBPn1tGA==, tarball: file:projects/arm-eventhub-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-eventhub-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -12745,7 +12747,7 @@ packages: dev: false file:projects/arm-eventhub.tgz: - resolution: {integrity: sha512-MfPrGJfNBWzwigKTkYZc19i+yeMfEcS2Qqv4b12H6wCup7inRqS3dpnGKQ503XzVVwaaYNzqHdCTrYZo27lo6Q==, tarball: file:projects/arm-eventhub.tgz} + resolution: {integrity: sha512-JjSl4nZwYs0ihTKBM2+U66po+cp4d1oMw1QtfwEf/5DoGBkFDGXlhz8tEElHEYwESqj5teE+c5iACT9qlUOLaA==, tarball: file:projects/arm-eventhub.tgz} name: '@rush-temp/arm-eventhub' version: 0.0.0 dependencies: @@ -12770,7 +12772,7 @@ packages: dev: false file:projects/arm-extendedlocation.tgz: - resolution: {integrity: sha512-aYV8RbZs21lLFW33C/sxUiD6e2UYTyn1E32oxuyIGyxt3ToBFw7MyyDQEKpilU/6baKQVi7judAObcbMBwBU+A==, tarball: file:projects/arm-extendedlocation.tgz} + resolution: {integrity: sha512-5/WvVLQb4eBKMsaS3BPo/fXYUXfEknoQSLa/BNK1XhMp500+CZ8khnxlNxe1flt80tEcJdbGr5QPyCilitBFQA==, tarball: file:projects/arm-extendedlocation.tgz} name: '@rush-temp/arm-extendedlocation' version: 0.0.0 dependencies: @@ -12795,7 +12797,7 @@ packages: dev: false file:projects/arm-features.tgz: - resolution: {integrity: sha512-73VI4IzvKvfyxA73Z92X5QZfVjbR7AB7d/4hHd2HnfimfCbRZYE0ymm+YzERPQ+gvCSqcrnpCXqha9JMgfUT1Q==, tarball: file:projects/arm-features.tgz} + resolution: {integrity: sha512-PsAPp/y5g4Du/xSOk7VFhonOTZ1NxI1Do/PgV+hdc9rC0GuQarRj4VOpjBiDiHS80UwOgrMFFDA7FtfQJn025Q==, tarball: file:projects/arm-features.tgz} name: '@rush-temp/arm-features' version: 0.0.0 dependencies: @@ -12819,7 +12821,7 @@ packages: dev: false file:projects/arm-fluidrelay.tgz: - resolution: {integrity: sha512-uxfhs4GkEvK0iuR1LlEFcPpmsRx8B4V2ibBfD7GbLxw9P0gC2OG5yWuuEEpTd3qH7XUkNUrMWo44xo6Yfla4nA==, tarball: file:projects/arm-fluidrelay.tgz} + resolution: {integrity: sha512-FHuTbZtwQeJu7YeXu0EVDxWOJiAy3mMUVFn7Ony9gCVTfD5N7CaT8kZop9ywpyKTbUBOc9IRRrVHbXpyxEj8DQ==, tarball: file:projects/arm-fluidrelay.tgz} name: '@rush-temp/arm-fluidrelay' version: 0.0.0 dependencies: @@ -12844,7 +12846,7 @@ packages: dev: false file:projects/arm-frontdoor.tgz: - resolution: {integrity: sha512-j9VNw4s9B0+HakLVIhNq2Bq/TN1EbbyPw2cbbzrpESaz57MnKzfxcdBEZguqq6NYH8BvZUu++N4MuMoYE27dUA==, tarball: file:projects/arm-frontdoor.tgz} + resolution: {integrity: sha512-ebxkPi/3CkXnuhbjsiAfYyvMkYJrccO86O8wa9AlAYJAdzcvDtCDmAxs3Dl7PXMCLAyFR2aFpT/cO/GG9tMjLw==, tarball: file:projects/arm-frontdoor.tgz} name: '@rush-temp/arm-frontdoor' version: 0.0.0 dependencies: @@ -12869,7 +12871,7 @@ packages: dev: false file:projects/arm-graphservices.tgz: - resolution: {integrity: sha512-/mMz3n7eckT5YTbB3GJeV26clwQiJTJ/Stvw98ricb1aZ/yctfIcbf0ENRZaWRiC/tKjoHkTTui7INGvkv6Ysw==, tarball: file:projects/arm-graphservices.tgz} + resolution: {integrity: sha512-eCVCh6CoYpafVhWJMxSuzJpxM4Yf0BK8QeC1+vg+jk/mNZz01TShwXzlKorXFLTAOVZk7d61yQEkKM83PW+b2w==, tarball: file:projects/arm-graphservices.tgz} name: '@rush-temp/arm-graphservices' version: 0.0.0 dependencies: @@ -12894,7 +12896,7 @@ packages: dev: false file:projects/arm-hanaonazure.tgz: - resolution: {integrity: sha512-Kd4qj8hErip4Nn7aqmu1J8qG+X1frgbq0pyLJVP+XqPdhnoIhxwApVUtVnvtdH/uqhi7+zjVMxdqPev1ODLd4g==, tarball: file:projects/arm-hanaonazure.tgz} + resolution: {integrity: sha512-Ifc7DpGeiMdnhyxnA7xsNRYC/RpyLbw5K6aGr73blme69OkDHp/OKaGfj1KFSsJb73kgTtyuGj1hxIVYVOhP2Q==, tarball: file:projects/arm-hanaonazure.tgz} name: '@rush-temp/arm-hanaonazure' version: 0.0.0 dependencies: @@ -12918,7 +12920,7 @@ packages: dev: false file:projects/arm-hardwaresecuritymodules.tgz: - resolution: {integrity: sha512-4NYL5ou264KwjD8+axMbg/iD/Fbix9J1QrgKHowRB6bziNPzPRIA0/xwDoIqBoMZip8NCqNvn/EuqrpXpoUJyg==, tarball: file:projects/arm-hardwaresecuritymodules.tgz} + resolution: {integrity: sha512-9CkGYTv9drv7l28Ch91vQPTddATLt0G8P/8nt+1tZFKcgN1UIKobKwT4qMnhkQoB5UI5G5UoGNwKgmG96PcOZA==, tarball: file:projects/arm-hardwaresecuritymodules.tgz} name: '@rush-temp/arm-hardwaresecuritymodules' version: 0.0.0 dependencies: @@ -12942,7 +12944,7 @@ packages: dev: false file:projects/arm-hdinsight.tgz: - resolution: {integrity: sha512-ixtzggysQv/FU5kgLpToNuJjeQYH0rkdCva0yKXgc6XsBAW5O4Rd5CwWuvAoefCwG8m4YhgEcH3GPp8aurl51Q==, tarball: file:projects/arm-hdinsight.tgz} + resolution: {integrity: sha512-wAIv7L4dACGlw/OKYHOtWtpbHukhKQqxhQNJX2y+i5o1bB1NCBWUBuAOQLn8zirBCIK+05eLHmPiaAtgC0EOYg==, tarball: file:projects/arm-hdinsight.tgz} name: '@rush-temp/arm-hdinsight' version: 0.0.0 dependencies: @@ -12967,7 +12969,7 @@ packages: dev: false file:projects/arm-hdinsightcontainers.tgz: - resolution: {integrity: sha512-nPa4wkwd8EYlQycTQ2dJg/+p+UcQrPjh8/RA1LAkUrWyXe7u2fmDb6wI6UYLSWr05L0gg+gljA9SpYavTo3Liw==, tarball: file:projects/arm-hdinsightcontainers.tgz} + resolution: {integrity: sha512-a9kkuakLeUJe3v40xWtZl7DX+PC0Mzs3wJh8Nq+3J+/rmASS0U4WSjmApnx1rPfkBSqGzvpmXAweY9Q3qSsm0Q==, tarball: file:projects/arm-hdinsightcontainers.tgz} name: '@rush-temp/arm-hdinsightcontainers' version: 0.0.0 dependencies: @@ -12992,7 +12994,7 @@ packages: dev: false file:projects/arm-healthbot.tgz: - resolution: {integrity: sha512-r12Vf/hbUwL4nMe37kYL7hzoX/YWwy3RLmqqdv9uG8Bb+G5fYeEqF/agaMnyfcF0KOMGPFlyI3OKVmjWkfeX0Q==, tarball: file:projects/arm-healthbot.tgz} + resolution: {integrity: sha512-Ka476qW9Qj2k6uZaFSqLkgLlc3UXlGOfLGejv3e6XP8hEG2kf2kIx3gkXwZaC7l/tTmd1mkHwSX4WcUtOZK8yg==, tarball: file:projects/arm-healthbot.tgz} name: '@rush-temp/arm-healthbot' version: 0.0.0 dependencies: @@ -13016,7 +13018,7 @@ packages: dev: false file:projects/arm-healthcareapis.tgz: - resolution: {integrity: sha512-39Z3FnRxvLIxyM2OL3tvvzcGGG9GRDUFkqaddU6PG2Edbr8FZp7lMRMDV1ysLaKycrgV+jY+NUXggWEqJqyaHw==, tarball: file:projects/arm-healthcareapis.tgz} + resolution: {integrity: sha512-mk1N0ogqR7ypaf4DFaXLdxHS9KJf0h4gg7Q3yaPzOpDHdcwnn6bpLNNQ73Ga6gpI6YIBXb+YVh45kl/EGpTPSw==, tarball: file:projects/arm-healthcareapis.tgz} name: '@rush-temp/arm-healthcareapis' version: 0.0.0 dependencies: @@ -13040,7 +13042,7 @@ packages: dev: false file:projects/arm-hybridcompute.tgz: - resolution: {integrity: sha512-BDVX3YE2OYDZlWMHsOj4vmLGGwum9raYsU3lBSSh0WekUDro67P+iFuuvZRUIyWzMy9y8mYGfXo8Hdbaa6Q3YA==, tarball: file:projects/arm-hybridcompute.tgz} + resolution: {integrity: sha512-T5wXb2XqcFOoxJhiKqHZYkEoOdRTgntFGm7SO2Ck/qkazMpfxMTY5YR8Xw/wzIkvM2lg1O0LCPKpLAHPRrNHVg==, tarball: file:projects/arm-hybridcompute.tgz} name: '@rush-temp/arm-hybridcompute' version: 0.0.0 dependencies: @@ -13067,7 +13069,7 @@ packages: dev: false file:projects/arm-hybridconnectivity.tgz: - resolution: {integrity: sha512-Q5EwtIhDiFExrALr0Qx3GW1vZO2T0CqjqGR1GnpPI4G3WbCElKrb2pmmYTPaJaTb1vlilAGVv0tbEPt1BzRJ6A==, tarball: file:projects/arm-hybridconnectivity.tgz} + resolution: {integrity: sha512-12uBkaEoYjECAUT8dCcrUYqg3tvuOrQ3hKbdlbA5hvw+cckEFku0JPwTGl5FXgLONPPRYPuKD1juuzHpDYTQOQ==, tarball: file:projects/arm-hybridconnectivity.tgz} name: '@rush-temp/arm-hybridconnectivity' version: 0.0.0 dependencies: @@ -13092,7 +13094,7 @@ packages: dev: false file:projects/arm-hybridcontainerservice.tgz: - resolution: {integrity: sha512-mkvAuhKp3IFPy0zDa8Gob421fTnwJrVcjOnJq99qW3bK4MIoXB2Ql9j0FjKSoY5sGommgf1QFkDXwlo05H4A4Q==, tarball: file:projects/arm-hybridcontainerservice.tgz} + resolution: {integrity: sha512-PzYPPdBeRXfsNlUN7u7Cro5oGYHKvfP+IeM2e38XjfqGjYOWHHHRORSsrv9naVKU/MjM9CREjaJrkIycEQmflg==, tarball: file:projects/arm-hybridcontainerservice.tgz} name: '@rush-temp/arm-hybridcontainerservice' version: 0.0.0 dependencies: @@ -13119,7 +13121,7 @@ packages: dev: false file:projects/arm-hybridkubernetes.tgz: - resolution: {integrity: sha512-1FD3X+vRU1it4Cmny44gwwvE4fi8+s0wSgyPHfbUTDSjuaQ1D/XWgaGik3SLJY3qs642s5IRtnw513a0JGzjXg==, tarball: file:projects/arm-hybridkubernetes.tgz} + resolution: {integrity: sha512-KVFWZbMiv/HsFl5Obz4QqsFmsOWiTVpsiXlrb3VIDZadPLwUsmSo0g8jhOy4Y/VJoWb0biSGif8SmJlKOwV3Mg==, tarball: file:projects/arm-hybridkubernetes.tgz} name: '@rush-temp/arm-hybridkubernetes' version: 0.0.0 dependencies: @@ -13143,7 +13145,7 @@ packages: dev: false file:projects/arm-imagebuilder.tgz: - resolution: {integrity: sha512-5xhT4Afs/nnEBVg0V2kJPrwtneezT8HR7rXEQ2l2e/BWDisgjRNhu0d1qfJxD9g1OsjXClmhEXqocSXGkNMhoA==, tarball: file:projects/arm-imagebuilder.tgz} + resolution: {integrity: sha512-U+TP/Q6AXq4bmKKfVoYheqBPUHGHBRbo4zI0mvoFXGfSRuKLupTvyRxmRsDa0Mzd3DRNfj8HB7JRhVDoHnAGgA==, tarball: file:projects/arm-imagebuilder.tgz} name: '@rush-temp/arm-imagebuilder' version: 0.0.0 dependencies: @@ -13168,7 +13170,7 @@ packages: dev: false file:projects/arm-iotcentral.tgz: - resolution: {integrity: sha512-tbbgo1fKyzYlshctA6FaQYkhLu9Cj3d38CYQCVt6bv6qnIMz8sB2K5mBwWJGS7UFBmfJV2lYenWRtL1nM5CFTA==, tarball: file:projects/arm-iotcentral.tgz} + resolution: {integrity: sha512-TKehVwPEfnFMaeOQAJFUKJlQCR7D4dRkpvSqnDJsGc9SMADbRmWQzltBOrTbC0lNyvJFBhBDYcmjAmq83KqinQ==, tarball: file:projects/arm-iotcentral.tgz} name: '@rush-temp/arm-iotcentral' version: 0.0.0 dependencies: @@ -13192,7 +13194,7 @@ packages: dev: false file:projects/arm-iotfirmwaredefense.tgz: - resolution: {integrity: sha512-zA7L08cWQgYZUXlgpTZFEmKBONpbsys6NjwzJRdx35JWuhbog9HSriKOtPlWvy9Q8wFltv59rVbsdk9FfETJbA==, tarball: file:projects/arm-iotfirmwaredefense.tgz} + resolution: {integrity: sha512-UlcktMtjSOho+wqkh5IP5hv/hQNgRSyTV9h6ScftyWmHwrO4HmySIzMd05engzLVVkSgZwhuLNZClbBrZLVMjA==, tarball: file:projects/arm-iotfirmwaredefense.tgz} name: '@rush-temp/arm-iotfirmwaredefense' version: 0.0.0 dependencies: @@ -13217,7 +13219,7 @@ packages: dev: false file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-9i0Av/kQEfhe0NtvnAXc1MOLVUZFAsB1XoAUlbtc306SmTuAqyJu/PmhRpySef9sHTXIGzaRSBie2UIUBFRQjg==, tarball: file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-A9lekEsuiWwTdw0S0ZwMsIkzXVITjLvpfzDsi/P7vOyMSX4zLc+7p/RVXz8EU4g0Q5lkSFNNU6URs9A8GL/E3g==, tarball: file:projects/arm-iothub-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-iothub-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13242,7 +13244,7 @@ packages: dev: false file:projects/arm-iothub.tgz: - resolution: {integrity: sha512-8qP9N1ewKGJ46/4u+lfnJE515Ua1P6imdIjzI8HogM7lj3R9rZvatPiC00iaxqsnJ99BYBd4T/xsMZXBi947uw==, tarball: file:projects/arm-iothub.tgz} + resolution: {integrity: sha512-uPGpaqiC+UPYvjEVetxxpgG5RdSHEKSkh2Nlqz871ZO/j7CqlKKlfZ8RR2JO+T6hkTy7ADe6tE65wef6iMk1rg==, tarball: file:projects/arm-iothub.tgz} name: '@rush-temp/arm-iothub' version: 0.0.0 dependencies: @@ -13267,7 +13269,7 @@ packages: dev: false file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-B88g/kGOoov8ZTsTHeOfwjjqlM2Fwe6qw343mmHvE732Xjw4udHVqNleYiwKhMhyMYIK1zp72ZlXMTavTI8f9w==, tarball: file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-UZXHzq0+55lJ87m/LgDB/hBK3aYmd1ORZl/MsYCBJSBqU9fr8uUnUG+YpwepuTWd5JUCo+VVuhKDw+spyvGTsw==, tarball: file:projects/arm-keyvault-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-keyvault-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13292,7 +13294,7 @@ packages: dev: false file:projects/arm-keyvault.tgz: - resolution: {integrity: sha512-XwLOPJr+2Cd1Qqfvxly7iuH/n0xxIWXBPhbyMoQismOv+QmUyp5mPV+uzm7yLqDoT/nt8jZ0rDuSTgdrBpxtJg==, tarball: file:projects/arm-keyvault.tgz} + resolution: {integrity: sha512-wTrETtSwJA2HaqmRuTCpKlLzLfEU9pF1X9xDjH18VW56oXUkF7Bn+wUTi5lCJXHm+zYP8nLTouUjiA2AUWjTKA==, tarball: file:projects/arm-keyvault.tgz} name: '@rush-temp/arm-keyvault' version: 0.0.0 dependencies: @@ -13319,7 +13321,7 @@ packages: dev: false file:projects/arm-kubernetesconfiguration.tgz: - resolution: {integrity: sha512-v9kpICEc8qK89fhRE0cnU7PlR1YLCQOoKW0AMdzrU36vWfSI9HzPfFCJY89s3+uGCx+xZwB7ZTdRVr7elA0dyw==, tarball: file:projects/arm-kubernetesconfiguration.tgz} + resolution: {integrity: sha512-qkOzLt4mz7Vp9VTdfKLRMnzr8vqbp4GTC0aLOoQwuZCW2ltvYnEfVC//5MNTpiBe0ucWcno4mw1kvKpO17bmxQ==, tarball: file:projects/arm-kubernetesconfiguration.tgz} name: '@rush-temp/arm-kubernetesconfiguration' version: 0.0.0 dependencies: @@ -13344,7 +13346,7 @@ packages: dev: false file:projects/arm-kusto.tgz: - resolution: {integrity: sha512-puoyfH1gmm8ThnHaeKeAoBYTI6ftiucqWdKxEyTg4f6tFVcDxV+S1Fz39rRGPI1L/o/Tr8jhV9H4wEP+wKi3fw==, tarball: file:projects/arm-kusto.tgz} + resolution: {integrity: sha512-FlnYcqqrNyy/GIoBh8w+ZE2znX4gn/ShAiJ3695s1RgggZ2WkGqd2mTui42DSvCtqRVjTC6TIDqAygYPYf1OHg==, tarball: file:projects/arm-kusto.tgz} name: '@rush-temp/arm-kusto' version: 0.0.0 dependencies: @@ -13369,7 +13371,7 @@ packages: dev: false file:projects/arm-labservices.tgz: - resolution: {integrity: sha512-6P3Vg0Us5yjTj/JyZf69ziITvMUaeU2fXHTZEd4x3qqSeo48wfw8F9fbDhn0C2LSpyDI2NBhA8MPiQ1/UxnNrA==, tarball: file:projects/arm-labservices.tgz} + resolution: {integrity: sha512-7dvEmYWTFxITmbbiLB5DdHggOfzzQ3ZPvCK+871SSse4QjaxhySj445dQDEcRvN9SjbtXQoI4ubfqUlD5+7ksw==, tarball: file:projects/arm-labservices.tgz} name: '@rush-temp/arm-labservices' version: 0.0.0 dependencies: @@ -13394,7 +13396,7 @@ packages: dev: false file:projects/arm-links.tgz: - resolution: {integrity: sha512-QnQUc0vJ/Saqt/0YmlnG1jxOfGFn4+leDjpLVE0Gnh9MKnLESwDO29wVpI4O+85u6rOgVX26vjgl/uJYaY9VYw==, tarball: file:projects/arm-links.tgz} + resolution: {integrity: sha512-VHitX3x9QP9/AVA1T1eWRiTrCN6h5qIhk1kVkLxje+WdNwPxB2AwFe4tTxxU5rkQZgu53pUNCsSLSyeTwrXQ+g==, tarball: file:projects/arm-links.tgz} name: '@rush-temp/arm-links' version: 0.0.0 dependencies: @@ -13418,7 +13420,7 @@ packages: dev: false file:projects/arm-loadtesting.tgz: - resolution: {integrity: sha512-puzgsvoCpuax6zrbuGkZLJ/idHagZIk9+a7537OZjIwrcrFP4qu64SPwkwZosb6to8tr80LjxiC92htk/AxXWQ==, tarball: file:projects/arm-loadtesting.tgz} + resolution: {integrity: sha512-0N/I94Eo1EpdrmwqNvx4SjHANuKkpI2YIQIK+bKq7SOiBE65zOXC9SVJ/I73N2f1lBcf2iAwit+yyTukuqep6w==, tarball: file:projects/arm-loadtesting.tgz} name: '@rush-temp/arm-loadtesting' version: 0.0.0 dependencies: @@ -13443,7 +13445,7 @@ packages: dev: false file:projects/arm-locks-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-ftuIIzqGxXV/RaCGPTWVULjVnq3ysER0ykkGIaf/j5eO8Oki4geQRF3XNjoTNRRzSTEpp9/JYHfG4qHNyy6Pdw==, tarball: file:projects/arm-locks-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-mLrlOfuuEAzRNkR9MES+IXiyNGGFKXcToKdGKWtgmC7pN6BVcP7FbI5XNbV0tgItkJcFEFIp2+RYGeaCgHqlZg==, tarball: file:projects/arm-locks-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-locks-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13468,7 +13470,7 @@ packages: dev: false file:projects/arm-locks.tgz: - resolution: {integrity: sha512-94xTc2vXU8VXC0dNd7kFQuGTQGuKxmkC8/v834Ls2TVSOM8IlFPzYwzDBOksNSXMo5+GHOUuNZlV7MXAZwvSNg==, tarball: file:projects/arm-locks.tgz} + resolution: {integrity: sha512-zKFE6jHeoqv5ffuURiwDgUVt9gRoOkiXl8ItIU0CfJnjDGX40DiXjX4ISpDyj2JYBHsOktNB4eueFIGjJNHW3Q==, tarball: file:projects/arm-locks.tgz} name: '@rush-temp/arm-locks' version: 0.0.0 dependencies: @@ -13492,7 +13494,7 @@ packages: dev: false file:projects/arm-logic.tgz: - resolution: {integrity: sha512-GACPAFd4xBmbu+r0D8NAS6g3lnS7xLkWGT5a/nP4Sn1Sy7isZYUSF/suNn4RMl72BtEnPyekJut+KXg5Q5floA==, tarball: file:projects/arm-logic.tgz} + resolution: {integrity: sha512-Eh6vtTue/ko5PffPwxm9iKEkJj7X+SW4C5yHZ+XaOeuiRhb2M6AI27KTz5Y18Wp7MWO9lnjsbZV0dOnF7Ymn2Q==, tarball: file:projects/arm-logic.tgz} name: '@rush-temp/arm-logic' version: 0.0.0 dependencies: @@ -13517,7 +13519,7 @@ packages: dev: false file:projects/arm-machinelearning.tgz: - resolution: {integrity: sha512-6bZ0NqSi+BovXu1NdCxyxP7+Op62WyUKg5kbH8u+QB9+1QASB+QTITOL7oV1Hx/POWc8q/PXqiKYn1VsQH8F6A==, tarball: file:projects/arm-machinelearning.tgz} + resolution: {integrity: sha512-M2nNHoCjjLm2IMeLC0EOGqCUkNaC4TGnk9UaLSXzfwN/lHPCaxMGz4ZdZV4S1Ff/+1yrpGpkOgnBdS3QabivvA==, tarball: file:projects/arm-machinelearning.tgz} name: '@rush-temp/arm-machinelearning' version: 0.0.0 dependencies: @@ -13541,7 +13543,7 @@ packages: dev: false file:projects/arm-machinelearningcompute.tgz: - resolution: {integrity: sha512-kgEnhNuzas1FDoFKg56Ucq4bi4X8rl9C3sekdUWyk9SThn1QoCv9q9Ec62yaCYJPJQMw5Cntu8ZdJFwlNFSAQw==, tarball: file:projects/arm-machinelearningcompute.tgz} + resolution: {integrity: sha512-/41bLsqsNPqA1jFwD0ZTFHbHSqO+Tf2xHOxY9ljEI4NDku2vgOsy2ScdMqEDtSCoYdln4enDVY2powvcxaYaww==, tarball: file:projects/arm-machinelearningcompute.tgz} name: '@rush-temp/arm-machinelearningcompute' version: 0.0.0 dependencies: @@ -13565,7 +13567,7 @@ packages: dev: false file:projects/arm-machinelearningexperimentation.tgz: - resolution: {integrity: sha512-cE9VKfUZR/2BqIHtctgFXFn9KRBqDlc87bSTS4CDMFnIBHHSopTvgChXe5nTHTpjV2L8LrXr88VumRDwKn63kg==, tarball: file:projects/arm-machinelearningexperimentation.tgz} + resolution: {integrity: sha512-r8VPX7auQEAs76z3qNS8Lv3m9YOiLaHG8jaT9vxjYO55Ftc57WB+h5eWwFdwuTRT1je1CVD9RDlKRUqcaLPyrA==, tarball: file:projects/arm-machinelearningexperimentation.tgz} name: '@rush-temp/arm-machinelearningexperimentation' version: 0.0.0 dependencies: @@ -13590,7 +13592,7 @@ packages: dev: false file:projects/arm-maintenance.tgz: - resolution: {integrity: sha512-hst0PH56kaRQk6ysC9l6iDPAC/UHa4rtxbeO5Z3Vh3txnJ7NUxXk2w+nvL5+Cnz6u73RDeb1r64hX8qEOvXlHA==, tarball: file:projects/arm-maintenance.tgz} + resolution: {integrity: sha512-BMKjRGXBdxxqUthI1ZYeQ96HMnzDepcFJfBcD04bkOE9J1259FDxeHICEy3GJwtQJzV3rXiOU2YpsNbt1LdV4w==, tarball: file:projects/arm-maintenance.tgz} name: '@rush-temp/arm-maintenance' version: 0.0.0 dependencies: @@ -13612,7 +13614,7 @@ packages: dev: false file:projects/arm-managedapplications.tgz: - resolution: {integrity: sha512-TXwaskNL9KGRS7hlbbePM6Cz9U+GBcfbaGIWQX/sJL26IdYy7iw3CjjQfiXb7y8bQy/37OvbcbIErPz6MNI7eA==, tarball: file:projects/arm-managedapplications.tgz} + resolution: {integrity: sha512-SMDnjgDyr5rameHs7+y2QNHBJHK3GwOgoL7Izc3opuvMWuO0S/bPxXET/tm1NgKPLVt0+3PP9+RwqTQBzH2cGA==, tarball: file:projects/arm-managedapplications.tgz} name: '@rush-temp/arm-managedapplications' version: 0.0.0 dependencies: @@ -13637,7 +13639,7 @@ packages: dev: false file:projects/arm-managednetworkfabric.tgz: - resolution: {integrity: sha512-w8FPAC9S92w00YbX7tR4vN5X1hSoA66sCzwbBy9AQwcIWaYM6MCKH/ZJ2ht54WtCb/AS+WAXkdWrPFSOqKqYzA==, tarball: file:projects/arm-managednetworkfabric.tgz} + resolution: {integrity: sha512-aa4FOS1r1/5vmIvOCmHWf5MpUj9VWpAeDATAOkXniAQoCRmvk7W/Yb12I/IgMLno0J4QruWPYh3HEsi8BYicWA==, tarball: file:projects/arm-managednetworkfabric.tgz} name: '@rush-temp/arm-managednetworkfabric' version: 0.0.0 dependencies: @@ -13662,7 +13664,7 @@ packages: dev: false file:projects/arm-managementgroups.tgz: - resolution: {integrity: sha512-RECh0IzeH4u9VGMpo7hm7C837oMvIhnwqmTIEVQNFuZAq6Wk6K86POr3wEX6lxS84o8CaUvg8LVBOYRBiGtyOg==, tarball: file:projects/arm-managementgroups.tgz} + resolution: {integrity: sha512-QIFRHIXSpwUzb2DLLwbs4r3JR+N6RlObpblDCct9xRyNij97b7IaGE964rcZmgpXpST7Pk+ekhCubxl5FGeWaQ==, tarball: file:projects/arm-managementgroups.tgz} name: '@rush-temp/arm-managementgroups' version: 0.0.0 dependencies: @@ -13686,7 +13688,7 @@ packages: dev: false file:projects/arm-managementpartner.tgz: - resolution: {integrity: sha512-T+6eJDOzXs1AyrpGjOiOtmJFCZZxRZX3xZ9/qTB2sJwps3j7jy1bRwT8vlizJsFY99TZxo4bHgCR6V6ktcE0yQ==, tarball: file:projects/arm-managementpartner.tgz} + resolution: {integrity: sha512-qdNxjRUMn3a5WvKdbvt0CzJdNEAGKppTABtgxBqlq4g2DtG4qkQ0fTppXzmG1B6qguR3BFCLEROYOYKMqzv3Mw==, tarball: file:projects/arm-managementpartner.tgz} name: '@rush-temp/arm-managementpartner' version: 0.0.0 dependencies: @@ -13711,7 +13713,7 @@ packages: dev: false file:projects/arm-maps.tgz: - resolution: {integrity: sha512-N3BPWnbKLHANDINbO6zeggn2qRXWWf+JLSwdxfOzWtWGs1Rx9qtsmpU1oRXBNDR5gxeYJ+CcvRWvdLmY0s/Y1g==, tarball: file:projects/arm-maps.tgz} + resolution: {integrity: sha512-+XlygP6gkmeLbaQS244rzfvlF0LywTr3v6VNFnLtX2laP+1aKPl7ZJBDd3ugaCgZfrdpz5vZ02NXrCrbO6Pkhg==, tarball: file:projects/arm-maps.tgz} name: '@rush-temp/arm-maps' version: 0.0.0 dependencies: @@ -13736,7 +13738,7 @@ packages: dev: false file:projects/arm-mariadb.tgz: - resolution: {integrity: sha512-azDoVfIJXtBeJh6EjRfpOv94y+ccsk5qwWMzkiDSu6hFjaAdrUps7eQmM15Zz5dg7n/wchGU8s7rKF6buvB52g==, tarball: file:projects/arm-mariadb.tgz} + resolution: {integrity: sha512-sug2XbA+ZffVFpDrHWvGdB7X1sUkjsOgRWMh01FyoEvcHW3JA+D7KhntbggVb/M8zSgiJgDZrgbmEedpbSrjkw==, tarball: file:projects/arm-mariadb.tgz} name: '@rush-temp/arm-mariadb' version: 0.0.0 dependencies: @@ -13760,7 +13762,7 @@ packages: dev: false file:projects/arm-marketplaceordering.tgz: - resolution: {integrity: sha512-7t2NIvtSmM2EF47DbnlDblA54G+V92gEHgJ2kdqw35G99e4T/MuPf8ob68NbOozE1gM1nJhOZdJF2Jj72yBxCA==, tarball: file:projects/arm-marketplaceordering.tgz} + resolution: {integrity: sha512-J7bE8QMMRJoi/6ZMZsCs8+gihw2znTl6E8fBuKTqZBujfnamGR23uaKjtSzMWuFNl5qEz56yCzli4qBiebxi3Q==, tarball: file:projects/arm-marketplaceordering.tgz} name: '@rush-temp/arm-marketplaceordering' version: 0.0.0 dependencies: @@ -13785,7 +13787,7 @@ packages: dev: false file:projects/arm-mediaservices.tgz: - resolution: {integrity: sha512-OPwyai3MfADcAaTvIibG5XdIeHEFyin90TGvNhN5ARCzfXgwFM+Lt0LYdnQNKrRXsml08mfLD9Ll1NtMMRmi3A==, tarball: file:projects/arm-mediaservices.tgz} + resolution: {integrity: sha512-QsQI3NYRwLm1c8BZzkfcqerfRJeyZAkQL/tqOYrLB0aIqelJaL+wzNmYNZNV9wbCPACYMZ8YsXvE1dXO+8qPsg==, tarball: file:projects/arm-mediaservices.tgz} name: '@rush-temp/arm-mediaservices' version: 0.0.0 dependencies: @@ -13810,7 +13812,7 @@ packages: dev: false file:projects/arm-migrate.tgz: - resolution: {integrity: sha512-ZZrIq4csKPZh4DrK5L7EzaQcTo36InofLfb6Z9idF44Hda6DqFEeM6I8+GwqUBAd3GsTbFAPORo9AJa1o38X9Q==, tarball: file:projects/arm-migrate.tgz} + resolution: {integrity: sha512-YB8tlqxYPdlmzLHTmsSkyjYtIxgOp6yxYzn3H5pQ+IQWu98rJW+q/ROxHaEgOVJseD/J5NwZ5KGkkyQyzdiSqw==, tarball: file:projects/arm-migrate.tgz} name: '@rush-temp/arm-migrate' version: 0.0.0 dependencies: @@ -13835,7 +13837,7 @@ packages: dev: false file:projects/arm-mixedreality.tgz: - resolution: {integrity: sha512-TFBvqMviLuVaFiL+41PT970i6IacVvwKbsdGdBAzcp7LCoBPfk3bsf9tkNIlohiMQhEpYlbX2rDHOfwXfp6Ogw==, tarball: file:projects/arm-mixedreality.tgz} + resolution: {integrity: sha512-qhDitBOZQJ8wZu790uxIHJFlc6lkigeYZeRIyE0ZSPLoPhbdS5HFFI5l9ZXOTwMpDvtbS9g+mcjsVZS0gslM5A==, tarball: file:projects/arm-mixedreality.tgz} name: '@rush-temp/arm-mixedreality' version: 0.0.0 dependencies: @@ -13859,7 +13861,7 @@ packages: dev: false file:projects/arm-mobilenetwork.tgz: - resolution: {integrity: sha512-33/cDgOvZg59xQ9SyYzd8xpOrjBaICoooHTui++tDuNNO5K5I5lweDqgG/EyYxYK4DD4tcta7JQKp5cLS/CePw==, tarball: file:projects/arm-mobilenetwork.tgz} + resolution: {integrity: sha512-6MZBQw9dJdg6iXMmKlq7COMUA+Yr2PFCt9KMfPUUx1mUwWegdSx5FI4Kc5iNLBbqLlDpZc7mtcrdg7Qdp2JM6w==, tarball: file:projects/arm-mobilenetwork.tgz} name: '@rush-temp/arm-mobilenetwork' version: 0.0.0 dependencies: @@ -13886,7 +13888,7 @@ packages: dev: false file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-aJXU3FuqXK0gZbzRK156P1uNQiMR9kfc3Ikcmw36VPd/af532E96mPNGyypOt3k6kkmZ6vwrDkW7VDJiMRHYLw==, tarball: file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-vkKc4uSPMNDYw6D8MphLk2bxb2j/8+CsxG0+o2NbCo6bMGwJMrCQTeak0mXjqGcI3lP88CFDYXWj/E6aM82PDQ==, tarball: file:projects/arm-monitor-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-monitor-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -13911,7 +13913,7 @@ packages: dev: false file:projects/arm-monitor.tgz: - resolution: {integrity: sha512-Y1VZukOZZynij3LPMM+/n7hJb+m/c7bh24g3s07ALYMcqAVEY8lKmb2tXl936TH+vZ0c3205V8wDBqJDK0etiA==, tarball: file:projects/arm-monitor.tgz} + resolution: {integrity: sha512-uHNqolyfYFuu3h2ClUCHrW71njwo0NEjcdBP53F+PKqXm9EGwKNWvvFe7LDTkZWmUFrUI3ia7FQ71/gonVHgYw==, tarball: file:projects/arm-monitor.tgz} name: '@rush-temp/arm-monitor' version: 0.0.0 dependencies: @@ -13936,7 +13938,7 @@ packages: dev: false file:projects/arm-msi.tgz: - resolution: {integrity: sha512-F6iSrG1k6662/uCjJpJyPqVqCec5zbC67rKcb/jtdZqPeCEMi9s+VN82ZQNKY7Q2uuGiwhlF5900+rX8HvvL/Q==, tarball: file:projects/arm-msi.tgz} + resolution: {integrity: sha512-D8r+6WD6eo5W2BJElt4lpYgGZIaxl9uXyNGm+lQSNGzxoMuFSe64u6R1CgJTRtdHResaHx7lk46AYnWTIVX6mg==, tarball: file:projects/arm-msi.tgz} name: '@rush-temp/arm-msi' version: 0.0.0 dependencies: @@ -13961,7 +13963,7 @@ packages: dev: false file:projects/arm-mysql-flexible.tgz: - resolution: {integrity: sha512-yWeTlJgl9+LeYCwY/Th08SJEMqLqmAsBRD5UYZS+N6EK/+YyVdhoFARx6Ld4kDiGXm+BIz9hDpCIZVqEFwHYvw==, tarball: file:projects/arm-mysql-flexible.tgz} + resolution: {integrity: sha512-Ljqsgq5fzUCZ5FbLFj3O0DBol9nsFaOtB2Bd92DcnBCZt6PZK3zl+UcwxD3DHLa02aalofZ1ZGP8DLa+RZltVA==, tarball: file:projects/arm-mysql-flexible.tgz} name: '@rush-temp/arm-mysql-flexible' version: 0.0.0 dependencies: @@ -13986,7 +13988,7 @@ packages: dev: false file:projects/arm-mysql.tgz: - resolution: {integrity: sha512-oRdiYLuEaw0UcufGbPiQDAJlxPQIAitdNwOiumw4pnZTRRZ1n0+GDJZWnRcHF0C5MqgqMDU+oQGPsAmdrGMH5Q==, tarball: file:projects/arm-mysql.tgz} + resolution: {integrity: sha512-E+nkN1CqaTRlY7gpcI1N9aotWzTF+9uB//xv29f7Glw1je04OMbPQAvEVw54buR4Pu1k1L+LZHUI6EX0peNBhw==, tarball: file:projects/arm-mysql.tgz} name: '@rush-temp/arm-mysql' version: 0.0.0 dependencies: @@ -14010,7 +14012,7 @@ packages: dev: false file:projects/arm-netapp.tgz: - resolution: {integrity: sha512-dDSlOw1FGiLZaY/Ecli3PmW2xRYDMRmTq11XOjKVtSufSxzf/NItMMPsvQqIu/5pY7kb0J4ESj39Toj0Knnp5Q==, tarball: file:projects/arm-netapp.tgz} + resolution: {integrity: sha512-TZ6D1v/Nv02dYjNku+uU6vdKel3xluxh7f9tBGDiuOQiYdcCkD0Egtzp4N96Utxnvel7S52MTG/Z5bMRsoSmNg==, tarball: file:projects/arm-netapp.tgz} name: '@rush-temp/arm-netapp' version: 0.0.0 dependencies: @@ -14035,7 +14037,7 @@ packages: dev: false file:projects/arm-network-1.tgz: - resolution: {integrity: sha512-k1AJlE2JlD5JBpEeGn4+wPVcHfP5xwEO/wYGWneUym/POypcrsT1bNajpqRfMXgzWByzcIQwSoBh33OoD3tQow==, tarball: file:projects/arm-network-1.tgz} + resolution: {integrity: sha512-oGiTbTAO3FPkAcJEY+Wklhn8oKmy7gPCiJgAaGFN4ItQfaHhSSs2oA4T+W31vhoTflm238KyDiO3aGklXR29dQ==, tarball: file:projects/arm-network-1.tgz} name: '@rush-temp/arm-network-1' version: 0.0.0 dependencies: @@ -14060,7 +14062,7 @@ packages: dev: false file:projects/arm-network-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-OrUie9Xr1Ea+//hi0vKEwklfdWDzxwcmwuMQd1Haykl5FF2gXboBsZCSvV5gdX8ssK+AhKqcfCl4pYIwNipDdg==, tarball: file:projects/arm-network-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-Ogh2n2HjogyMHWe38HT+OZnt3WbozJgXRex7VrMaNFy6OEusT9w3IcrG0hF1OX304F9CMwnW7YzIcShKnuiSmA==, tarball: file:projects/arm-network-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-network-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -14085,7 +14087,7 @@ packages: dev: false file:projects/arm-network.tgz: - resolution: {integrity: sha512-y46TVsPsb5qcF5ZkO5Z2l60Idnn0pF/JRHuzmJSqMd9nSrJs7+mLBi+95Y3E+lFsc9uyDjiBp8N27B6T44Nmdw==, tarball: file:projects/arm-network.tgz} + resolution: {integrity: sha512-+Yb9aIeSHW+nxvYeKSNwm3z3IBdQAR135dGgzQT9Xsvhm82Q2ZnS5rcxBeHTgJS9cGHYqrtpgmuwykxu3Qa5kw==, tarball: file:projects/arm-network.tgz} name: '@rush-temp/arm-network' version: 0.0.0 dependencies: @@ -14134,10 +14136,10 @@ packages: version: 0.0.0 dependencies: '@azure/identity': 3.4.1 - '@microsoft/api-extractor': 7.38.3(@types/node@18.18.13) - '@types/chai': 4.3.11 - '@types/mocha': 10.0.6 - '@types/node': 18.18.13 + '@microsoft/api-extractor': 7.38.3(@types/node@18.18.9) + '@types/chai': 4.3.10 + '@types/mocha': 10.0.4 + '@types/node': 18.18.9 chai: 4.3.10 cross-env: 7.0.3 dotenv: 16.3.1 @@ -14145,7 +14147,7 @@ packages: mkdirp: 2.1.6 mocha: 10.2.0 rimraf: 5.0.5 - ts-node: 10.9.1(@types/node@18.18.13)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@18.18.9)(typescript@5.2.2) tslib: 2.6.2 typescript: 5.2.2 uglify-js: 3.17.4 @@ -14156,7 +14158,7 @@ packages: dev: false file:projects/arm-networkcloud.tgz: - resolution: {integrity: sha512-9UdBpHF3HxnT78YHxD9XOQ28tiMGVxV/PxHuMQpag3Uy6PsSwyMdqyyLh8axKea1msxbeGcq4+/Dxrbzys+twA==, tarball: file:projects/arm-networkcloud.tgz} + resolution: {integrity: sha512-I6XQ88iWP6NNj4DLncSU/9GeuAywo2niDxRlxNCUBbAwy46+5VnYjZb2cVif7TpIrvitW/bCZHk9p7rFKuNWTA==, tarball: file:projects/arm-networkcloud.tgz} name: '@rush-temp/arm-networkcloud' version: 0.0.0 dependencies: @@ -14181,7 +14183,7 @@ packages: dev: false file:projects/arm-networkfunction.tgz: - resolution: {integrity: sha512-AHIMa3aD6JwCd6CCJl2kbZpzNgqeLqOFuBcbMqTcp1UsKDT+H7CFhAWzm77BwJ79fyBD7tvX5D5oqN17EXc0UQ==, tarball: file:projects/arm-networkfunction.tgz} + resolution: {integrity: sha512-Z34zqzhjMQDZk772wnk5Tf3ima0oNuSFaNmfytpGL9Anx89rGnCXwAR8BGoE+XNMa6+gfDFcnRec0La+DUTF5A==, tarball: file:projects/arm-networkfunction.tgz} name: '@rush-temp/arm-networkfunction' version: 0.0.0 dependencies: @@ -14205,7 +14207,7 @@ packages: dev: false file:projects/arm-newrelicobservability.tgz: - resolution: {integrity: sha512-UdEx4JEu/jq049v+jJ/Z/PWc8+L0Hdu0dSyUMUMBU6siWdR2TEjxiwpJlDofmme4gHfrLyn/z0gT+lYB8qk67g==, tarball: file:projects/arm-newrelicobservability.tgz} + resolution: {integrity: sha512-pR/QUYlHGYFSPUDm7DHqFKuzh+9bf3Fk+dgow060+YTa0FZIepPrFJFPDr1UWT3bRdVlEE7WJyfNNxKqyeTfjQ==, tarball: file:projects/arm-newrelicobservability.tgz} name: '@rush-temp/arm-newrelicobservability' version: 0.0.0 dependencies: @@ -14230,7 +14232,7 @@ packages: dev: false file:projects/arm-nginx.tgz: - resolution: {integrity: sha512-5sAta1oU0WGyEZ3Zv8Sw6XRP8eQBSpm6mEacmEGpy9S9RStG2/JpbRWgtyvylB3UV14FjT5sWwTUlNh2SSsj8Q==, tarball: file:projects/arm-nginx.tgz} + resolution: {integrity: sha512-eAckBXGvgp6dftp38VGX3iP8mtCNC2EJyMrpc0mRBQRx65XQ6yFZNYrx0ojwJhTQqYNnUMJ7qMjJdYJQZKbvjg==, tarball: file:projects/arm-nginx.tgz} name: '@rush-temp/arm-nginx' version: 0.0.0 dependencies: @@ -14257,7 +14259,7 @@ packages: dev: false file:projects/arm-notificationhubs.tgz: - resolution: {integrity: sha512-6L5cFCYlcqJ7twtKMV6GOmgx6RGQ8t6P5LhT/yB/ctoyhqkgwnsWngBk9ALgNAqufNWNJYK/rjFXQKthiN8Sgg==, tarball: file:projects/arm-notificationhubs.tgz} + resolution: {integrity: sha512-JHndkNpdJWl0Gnvj/3EoudQLx4FmDMV1bFVVX3dROvrdOrnNmJJa08L7E6+oPGTQMz63eMcjfImO2cHfqgQUNQ==, tarball: file:projects/arm-notificationhubs.tgz} name: '@rush-temp/arm-notificationhubs' version: 0.0.0 dependencies: @@ -14281,7 +14283,7 @@ packages: dev: false file:projects/arm-oep.tgz: - resolution: {integrity: sha512-R/eMc9R3dO7VlW5yZd/Vb64jJqyY+UFtGyDTmyCRd0DoVxQcRJ2OJ9reKeqT2vpcb9/Ol0Zgd+OJMFpWkn/Wvg==, tarball: file:projects/arm-oep.tgz} + resolution: {integrity: sha512-G4TDZHWz6ZMuNOEblWTJfqBWfETl/EJO6qFYF9W+Hq1s8+cEYN/6DmNRVS9KlbMY+zHaR1Zd/vWgq5Xo/xpNEQ==, tarball: file:projects/arm-oep.tgz} name: '@rush-temp/arm-oep' version: 0.0.0 dependencies: @@ -14305,7 +14307,7 @@ packages: dev: false file:projects/arm-operationalinsights.tgz: - resolution: {integrity: sha512-c5LiJMYxfxMLDfPMWUHTb/zcyX7Y0KxCLM5fRvg+jWJqqvxrh8d1YUI6M+/IotamTFYSZhk8O52K7iE98oVUeQ==, tarball: file:projects/arm-operationalinsights.tgz} + resolution: {integrity: sha512-nORWi4UhgNecalX8NhyDEQZpP9GGeiLNvxFhSHKhLGnPa80yyahrS6rHf8rZE/wlOE3eWTfm9gU6wIuvfiIi3Q==, tarball: file:projects/arm-operationalinsights.tgz} name: '@rush-temp/arm-operationalinsights' version: 0.0.0 dependencies: @@ -14330,7 +14332,7 @@ packages: dev: false file:projects/arm-operations.tgz: - resolution: {integrity: sha512-OqG9IymcEpx3CP54Z9ZgN+lYRyMpmdZEL2vhce9mP/tJltxnI1p/JBx+wSPX7snnHR/EnntRbPj2uhpqVuBABg==, tarball: file:projects/arm-operations.tgz} + resolution: {integrity: sha512-1W5pjnXTWQWNhOfC4Hd+8NPqBHuu6zi084KswcdefIHSvGd7Ju4VgLFHzBYGhLcK7+phH2Y7XCg7R1pVoHfrnA==, tarball: file:projects/arm-operations.tgz} name: '@rush-temp/arm-operations' version: 0.0.0 dependencies: @@ -14354,7 +14356,7 @@ packages: dev: false file:projects/arm-orbital.tgz: - resolution: {integrity: sha512-b/tDNOMmLYe2whwoJA3nfPv7H88bYjgS7V4T+jsvLhWDnEW7YK0ePPgnHna9bEhTHLKqf1t04H4LK3+43fnskw==, tarball: file:projects/arm-orbital.tgz} + resolution: {integrity: sha512-K91zHSm8CupehxeUcD1rlajwrqnMpf8TrxREcotrPBpF2X4PzxE+U40Wiks9zleaWRYT+O5VmRvtvMxsw2fLaw==, tarball: file:projects/arm-orbital.tgz} name: '@rush-temp/arm-orbital' version: 0.0.0 dependencies: @@ -14379,7 +14381,7 @@ packages: dev: false file:projects/arm-paloaltonetworksngfw.tgz: - resolution: {integrity: sha512-lsISvRWGHwxKw8TP9L7epuqo9CAf4R114g7Cwd84V7FC7YleZnCf1cpUXGTtVdiHLdlPpEkZfKvx9SVKIwlAdg==, tarball: file:projects/arm-paloaltonetworksngfw.tgz} + resolution: {integrity: sha512-+xfuIXUMEBqsA9z0i8Hk3gyA7XIJWFBbcO1E7iw6kFB+naQkW3s0dIrxtndM+Sc97YW6Hp+jIc/tvgRjilXgrw==, tarball: file:projects/arm-paloaltonetworksngfw.tgz} name: '@rush-temp/arm-paloaltonetworksngfw' version: 0.0.0 dependencies: @@ -14406,7 +14408,7 @@ packages: dev: false file:projects/arm-peering.tgz: - resolution: {integrity: sha512-ogFGSmWM/EBSvZvx6rK9QN43Wi+xtXx3fFuodfkg4SEQKBxL/XPJFHLRjenGhZOiv04mXVZQODyTshRoluExTw==, tarball: file:projects/arm-peering.tgz} + resolution: {integrity: sha512-LcXWlL8tiCMUP+WvB0q8HGvpUj/pbl8RAo6aGh2u5F9CENtY33e6BtYe3MERcuCIhBpc3GmW2glFMKEFvw4Sag==, tarball: file:projects/arm-peering.tgz} name: '@rush-temp/arm-peering' version: 0.0.0 dependencies: @@ -14430,7 +14432,7 @@ packages: dev: false file:projects/arm-playwrighttesting.tgz: - resolution: {integrity: sha512-i1ZQRVQHEyJ2YWSwpTsA8oVXN6CKHP7+LtkbSVVSDFrEMLzviL2i0tRyg0jUtp8GeMbKLP90AeTNZPku/oOQyw==, tarball: file:projects/arm-playwrighttesting.tgz} + resolution: {integrity: sha512-058WsxcPA0egbQ7qokTE3RVTskYj+8Mkk+PY93DFRMn9zuNFMLH9w5M5EvpHWV0ohRAELjqz5EVYctu3Oovc9g==, tarball: file:projects/arm-playwrighttesting.tgz} name: '@rush-temp/arm-playwrighttesting' version: 0.0.0 dependencies: @@ -14455,7 +14457,7 @@ packages: dev: false file:projects/arm-policy-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-meYae/bw8rVIhaEJ1zGS2NEkm6Bdg6DYLvurXXYPgdIFm+9hiMdFusCPoxDudkOMZlRM25/s7a+AAOjtBQshvA==, tarball: file:projects/arm-policy-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-1s+dWhl+gDeyscYhm7HryK0Atythwieh8QUZv99/tB6pseykQeM5viw1sjmKg6c5h8Q7vNXptjiVSQx8bWBOOg==, tarball: file:projects/arm-policy-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-policy-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -14480,7 +14482,7 @@ packages: dev: false file:projects/arm-policy.tgz: - resolution: {integrity: sha512-/dhmPL/hUyUFBeA/k+1Ex91Deni5MOfUdESJsLZf9oiDhsQ0V+pUve/VPCCTPsEykUDOe1gsV5MeifYikk+1Sg==, tarball: file:projects/arm-policy.tgz} + resolution: {integrity: sha512-vFsMe45uSth2du6MWCBhe8N7V6ePYDQ2NIqEkuyNU0V3OH2i1GkU6pSAOffO0o3FLA1u6D/iOBGWT/0mb3r2ww==, tarball: file:projects/arm-policy.tgz} name: '@rush-temp/arm-policy' version: 0.0.0 dependencies: @@ -14505,7 +14507,7 @@ packages: dev: false file:projects/arm-policyinsights.tgz: - resolution: {integrity: sha512-cgiP+hCi6r8Ujkn6y66WLvnPM/Mo8yac2nK8ZLkSct9mHlYFTVA9uD4P3rbhsl9Ft8wZzABCakETWK1x3KhFMw==, tarball: file:projects/arm-policyinsights.tgz} + resolution: {integrity: sha512-w5R/4fkIqx0Ftu6LWBfc810c5rXigFPNNhL6UNctPb5ASFRdAHq0zjKsE6CMCViSSwbIqkcjZeERaMjmZNnIvA==, tarball: file:projects/arm-policyinsights.tgz} name: '@rush-temp/arm-policyinsights' version: 0.0.0 dependencies: @@ -14530,7 +14532,7 @@ packages: dev: false file:projects/arm-portal.tgz: - resolution: {integrity: sha512-bWnYMtRZJNOTBJpNhppjXhsTWxIAJHur4TkgmQ7pwwMoBAkrJMcgskFwVBf3OymRgMr/fVrPwi+W+Qyf9IBaPg==, tarball: file:projects/arm-portal.tgz} + resolution: {integrity: sha512-ShC/7USX7awcEq5KW878mhIp1/D4loaXWRzguU+bpbDUzZMfVkCXKjfu1RjajBEGQ2+iTxLY+cBuKxwQT4leLQ==, tarball: file:projects/arm-portal.tgz} name: '@rush-temp/arm-portal' version: 0.0.0 dependencies: @@ -14555,7 +14557,7 @@ packages: dev: false file:projects/arm-postgresql-flexible.tgz: - resolution: {integrity: sha512-IAdWZNzt9xojICD12ecNw2zCg87H86jtz/8bIIyKkKiK+R2+U/j8SEoQMjRp/DIHu9YzMD5WSZx1kX0HLt2R4g==, tarball: file:projects/arm-postgresql-flexible.tgz} + resolution: {integrity: sha512-MhkspW3boK37WvFPDM0fm93cW139qYWGT0nf8Mnsf4Fty1RTRGp1OBdWmTVj4qIDJp48OX4xk0nzRfHNzO5MEQ==, tarball: file:projects/arm-postgresql-flexible.tgz} name: '@rush-temp/arm-postgresql-flexible' version: 0.0.0 dependencies: @@ -14582,7 +14584,7 @@ packages: dev: false file:projects/arm-postgresql.tgz: - resolution: {integrity: sha512-L6PirKq5QCtBLgt6estlmO8IwC+Kw2ypwkgd9Us80ZHwuaH7NN9CGcvkRBObH6wWSyXkN5eTcxHA48/WDs40DQ==, tarball: file:projects/arm-postgresql.tgz} + resolution: {integrity: sha512-G2qgCCJH/uLQ8H5crgnR4bYy/gCW2ks6lI9JR1KHAGBhxz0JJFJtP1AGoxCgS1paib/8uW5NjRHH1sZ7FAi6Og==, tarball: file:projects/arm-postgresql.tgz} name: '@rush-temp/arm-postgresql' version: 0.0.0 dependencies: @@ -14606,7 +14608,7 @@ packages: dev: false file:projects/arm-powerbidedicated.tgz: - resolution: {integrity: sha512-KRcXFYBftGakaidKd3nVV6OdCahebrveIqlNq6mvhRa69ZQHPaYgX+M/mCnvkzUBFdVJxdChHh+x1D4atnWu5w==, tarball: file:projects/arm-powerbidedicated.tgz} + resolution: {integrity: sha512-p6yNPIGPbl9cKfuZQyvYMrCEetivo4gx3CSKEW8Ef6ZWvIFOwT3pnZOzkinlGMWDgEy+qSo7LhhtMRNvj6wCPg==, tarball: file:projects/arm-powerbidedicated.tgz} name: '@rush-temp/arm-powerbidedicated' version: 0.0.0 dependencies: @@ -14631,7 +14633,7 @@ packages: dev: false file:projects/arm-powerbiembedded.tgz: - resolution: {integrity: sha512-2bkA7aTvzQB4cbHsMDAVn2DbDI7a2Ul1w3Hx3VOw4vP+YNdFHWUbYZhcY7la33vVtUQu0SN6SKFtoPEP5qh/Hw==, tarball: file:projects/arm-powerbiembedded.tgz} + resolution: {integrity: sha512-mUboATACwD6jHF4wAeYOZ9nuSvqPhqjM5ULxuJ41fzaS3ESX7Gy0Xqx83cP4a+IABM7gwTaM3fIdxAkDUFHyIA==, tarball: file:projects/arm-powerbiembedded.tgz} name: '@rush-temp/arm-powerbiembedded' version: 0.0.0 dependencies: @@ -14655,7 +14657,7 @@ packages: dev: false file:projects/arm-privatedns.tgz: - resolution: {integrity: sha512-uNEsrxzxx83/msDazOLwXE0Q14EY12ITRAqh860NrIUK7aFJGHdvV7OUdWaT0AmvzeTOaeDO9JdXAUxf/t13mQ==, tarball: file:projects/arm-privatedns.tgz} + resolution: {integrity: sha512-LbDRxF3hjcuxEnaZiffWAV0YyneUB4bsIgm7ACgYfcJPCohB2RD0NMZg+eC+rDZ8myghbzrJDGgeLYsFfsJ2Cw==, tarball: file:projects/arm-privatedns.tgz} name: '@rush-temp/arm-privatedns' version: 0.0.0 dependencies: @@ -14680,7 +14682,7 @@ packages: dev: false file:projects/arm-purview.tgz: - resolution: {integrity: sha512-XB+GyXmiByaOleJJatLjLSA7wV4EaArwpeJSEOwAvUJ9YBaX6zJaKKR6I7fHQO5t1QhIXXqh1Y5NUzFg3ZP40w==, tarball: file:projects/arm-purview.tgz} + resolution: {integrity: sha512-wFDmHVJchUaudPXjktbDS86GpcZ2+F9+SAPBP1OXBt6UTbJzlvGwnhEkSrX9PblCWTlwEsOKtLZBQyjiAg1DWQ==, tarball: file:projects/arm-purview.tgz} name: '@rush-temp/arm-purview' version: 0.0.0 dependencies: @@ -14704,7 +14706,7 @@ packages: dev: false file:projects/arm-quantum.tgz: - resolution: {integrity: sha512-kjYajqt0+7O7QDziNMHp0/HItU1L4wGEBzW+cCKyGNtpg7g07i6YH/ieI02R6nkVt8O80RsS9DPghL4tzoBHXA==, tarball: file:projects/arm-quantum.tgz} + resolution: {integrity: sha512-Lg7x13oeuWRLbSEjQAck65O9Eo1yQwSjh6H4VW06Bb60O7QtGEQCXKUYSNH+wuibrmUXEL1DHG1WPWpAEnrDmA==, tarball: file:projects/arm-quantum.tgz} name: '@rush-temp/arm-quantum' version: 0.0.0 dependencies: @@ -14729,7 +14731,7 @@ packages: dev: false file:projects/arm-qumulo.tgz: - resolution: {integrity: sha512-r+ZpyBLMbxRJAMIhTJXSQp86+Xf0WJQl1zbrgE+HRn6VDPkZjtsH9UGSUwlrc7tHXabI8rcWd4VuOYE2v7BQbg==, tarball: file:projects/arm-qumulo.tgz} + resolution: {integrity: sha512-306lcImA/s/lZCAy0hUrBHqJ+f25iwxsPWgIej7IU8cFdLv28lqral43e6hm+ywHUMctGz3n4SrpUyrf8LkrPA==, tarball: file:projects/arm-qumulo.tgz} name: '@rush-temp/arm-qumulo' version: 0.0.0 dependencies: @@ -14754,7 +14756,7 @@ packages: dev: false file:projects/arm-quota.tgz: - resolution: {integrity: sha512-70nAexsaTXeOhNV5rDUULQp7eaKnjywKBUNo6y0jTBLNtt24QsOU3FIStzLa8WQqir44Tkb2jYDQJvspVMuTSg==, tarball: file:projects/arm-quota.tgz} + resolution: {integrity: sha512-dlGRsk8ag0Pd0fUi3NujC38rmOiGCj0uUbPFWstkPtzskjeo7YBqyR63B6mGTrS3Eli2r2ebyQ6mHhywQDNC6A==, tarball: file:projects/arm-quota.tgz} name: '@rush-temp/arm-quota' version: 0.0.0 dependencies: @@ -14781,7 +14783,7 @@ packages: dev: false file:projects/arm-recoveryservices-siterecovery.tgz: - resolution: {integrity: sha512-HNIGWJxJ2M0BuC2cYfGYNxsQDWm/pkVosGywi+fzddIoqa2IjNiHYT+PnXh8uyE1SMAJxNIhwDQ2kdtE3uZJ+A==, tarball: file:projects/arm-recoveryservices-siterecovery.tgz} + resolution: {integrity: sha512-08qltcJMEXiXdZyYEIYxzYTM/nUFmIz5U3FHQLm6V0dx6+LJm5dhk9cv4p/nM4e3tbQUXkRnKc9v8QCxDkmkUw==, tarball: file:projects/arm-recoveryservices-siterecovery.tgz} name: '@rush-temp/arm-recoveryservices-siterecovery' version: 0.0.0 dependencies: @@ -14806,7 +14808,7 @@ packages: dev: false file:projects/arm-recoveryservices.tgz: - resolution: {integrity: sha512-UGKWR9EpkujjdL9qwb4EjZEzi695Kqo8wt6+r7ooJqsLnHKSMuHgcM4xRndQxBD64XpQ+NkyeBhmbuo3RNd4lw==, tarball: file:projects/arm-recoveryservices.tgz} + resolution: {integrity: sha512-G3kP3UhGzqH+YiMfjH9lS13bZ/VRXGPjwouwphUoGtTGDEw6GdyHbY6JSpmGZuaGBEWBaSUgs+eu5Ej0ZO/wjA==, tarball: file:projects/arm-recoveryservices.tgz} name: '@rush-temp/arm-recoveryservices' version: 0.0.0 dependencies: @@ -14831,7 +14833,7 @@ packages: dev: false file:projects/arm-recoveryservicesbackup.tgz: - resolution: {integrity: sha512-Sq6BhMxRyQHpESQs0fg8zF0n5FHWN3DeLGBSjrgUGHOHWG7RFdvTD7Ab8X3Td3weURSRbydJL9p2Dd9EdGC09w==, tarball: file:projects/arm-recoveryservicesbackup.tgz} + resolution: {integrity: sha512-ScrEDPQ/7dxRomWPb/APiq9TMIRnPOwBxd+MRMd3YIsrxCUJkrwBtINMzPYmdd0XZcNDUsshuuqcraZUBWbyYA==, tarball: file:projects/arm-recoveryservicesbackup.tgz} name: '@rush-temp/arm-recoveryservicesbackup' version: 0.0.0 dependencies: @@ -14858,7 +14860,7 @@ packages: dev: false file:projects/arm-recoveryservicesdatareplication.tgz: - resolution: {integrity: sha512-bRCfhhFLoJarbjLwm/pz+xwYGphF5fsQOTkXoA3wQX6yhPgzj+Uwb2zxq4W7exwqHY9s5Gh9wPm046REZUy01w==, tarball: file:projects/arm-recoveryservicesdatareplication.tgz} + resolution: {integrity: sha512-mxeU85pSQ6hl42oeCOPNtCYVkBbrDQy/5ZHAZYQfk3VfPOtGRHiR28a9ldmRvYxrZgbVsRqYgx8sgLo/DyW+1w==, tarball: file:projects/arm-recoveryservicesdatareplication.tgz} name: '@rush-temp/arm-recoveryservicesdatareplication' version: 0.0.0 dependencies: @@ -14883,7 +14885,7 @@ packages: dev: false file:projects/arm-rediscache.tgz: - resolution: {integrity: sha512-tXv/RXh41XXxV30jK7/85qDP9tzB13GtuDBvAr6RuqLXwgE+MOtPc43LaS/Y3WyUl/bCxBh8AKK/oltopZuYcg==, tarball: file:projects/arm-rediscache.tgz} + resolution: {integrity: sha512-0o1UFqEsetX3g5ACd3P9VFUH9WpUs4pZebO7Z7EpyQh3rstkl90EXFcJEzw/dVHxQQIUKjAWfp6r82OBhVRDhw==, tarball: file:projects/arm-rediscache.tgz} name: '@rush-temp/arm-rediscache' version: 0.0.0 dependencies: @@ -14908,7 +14910,7 @@ packages: dev: false file:projects/arm-redisenterprisecache.tgz: - resolution: {integrity: sha512-ND5BhXf7m1Ykmf84/oju27rULelqMnXlV99b/2SoFvyL25+DvzGfaTAQyRUu3H9tZ99vDlR9+PQJEw+Mz0iowA==, tarball: file:projects/arm-redisenterprisecache.tgz} + resolution: {integrity: sha512-eYjL3and3MyXXubGQ6Y4sCvv2jfNK3kwsrBCAorG3AbBdf2fzsZjnrXun1pg6my0ALORTw4qC1dnpTqxMGJeFQ==, tarball: file:projects/arm-redisenterprisecache.tgz} name: '@rush-temp/arm-redisenterprisecache' version: 0.0.0 dependencies: @@ -14933,7 +14935,7 @@ packages: dev: false file:projects/arm-relay.tgz: - resolution: {integrity: sha512-+4swRJ4OHvAbdFY741PHAZIO9eLaPHYhYYthAXsQ0EZ0pZ6kX4npE1cS0lj7ko5y7YOI+25W9IXPo/+c+R40+g==, tarball: file:projects/arm-relay.tgz} + resolution: {integrity: sha512-L94Ff+BNvEIsLserehWRb8eI7IDr7IferxUXSxs07677ZLPFT4+yevPfZAamzbo/xWH/CJZiXz8JMzibuFkIdw==, tarball: file:projects/arm-relay.tgz} name: '@rush-temp/arm-relay' version: 0.0.0 dependencies: @@ -14958,7 +14960,7 @@ packages: dev: false file:projects/arm-reservations.tgz: - resolution: {integrity: sha512-fVKfLxGzyjgfo9F7ikrHk3E2AMDQFTQEbkc0gKdLBIN78uxVyrkr/v1LsVuzJpQQVEpBOOxVZVWuLvM8Fnf8BA==, tarball: file:projects/arm-reservations.tgz} + resolution: {integrity: sha512-AbgdS4UFcd/eB7RNh2wDZsmYDlnq4EIdvwJ9G+TgwUwKAk6CPdmmNWjwx/SJKmsNDbxQVlaLF2QGzrcNYO8OWw==, tarball: file:projects/arm-reservations.tgz} name: '@rush-temp/arm-reservations' version: 0.0.0 dependencies: @@ -14983,7 +14985,7 @@ packages: dev: false file:projects/arm-resourceconnector.tgz: - resolution: {integrity: sha512-p5ADf/WixmWp49rQR8agb4Ijb+t8Op5EKGULMLw7OGjQMdEL3kfZv9cnilamlScru8PeNXTRzu9v+S8AUTS2zg==, tarball: file:projects/arm-resourceconnector.tgz} + resolution: {integrity: sha512-LoLgWSbwiPt1S7dP1ngRWKyiYYnf/7vT6XgDpm/QvM1vOnaGtqAuKDrZ/LTVZ4wxNPUOfp2Ebu+acRR46KzoDA==, tarball: file:projects/arm-resourceconnector.tgz} name: '@rush-temp/arm-resourceconnector' version: 0.0.0 dependencies: @@ -15008,7 +15010,7 @@ packages: dev: false file:projects/arm-resourcegraph.tgz: - resolution: {integrity: sha512-Bsj7QzDP1vkWQZ93YhxXaDL3n8LGC7wGna/uQOYmVECuwouW0d3jCQRhyW9DugRT1SL4vjExBzuYQXhwTj9hSA==, tarball: file:projects/arm-resourcegraph.tgz} + resolution: {integrity: sha512-OKP7IQ88SYbxUcSuxY8ncy207KKtVwANKYrNQVZdA3uimF0ePRRv7F2nroHiW15YigixQsXMAIrxjgEljN0coQ==, tarball: file:projects/arm-resourcegraph.tgz} name: '@rush-temp/arm-resourcegraph' version: 0.0.0 dependencies: @@ -15032,7 +15034,7 @@ packages: dev: false file:projects/arm-resourcehealth.tgz: - resolution: {integrity: sha512-6nq35xNqfof98SC3mTZrMS9zl0H1pnbhmtPniBPEyj2x/OFNtgj0qB+THpKWhJnCJCszzHGU6NjwgjAXvCV0mw==, tarball: file:projects/arm-resourcehealth.tgz} + resolution: {integrity: sha512-g2a2JOXuAwL/uAll63XhZSeDIrrlc5GJSe22faXjd+9u6NkgasScu0w38NTiuFE4v+I+FBNrEGet43GzUN1n4g==, tarball: file:projects/arm-resourcehealth.tgz} name: '@rush-temp/arm-resourcehealth' version: 0.0.0 dependencies: @@ -15057,7 +15059,7 @@ packages: dev: false file:projects/arm-resourcemover.tgz: - resolution: {integrity: sha512-V7w//C5RrcaLKZ3pe9SENsOlEeLVAjgWROtxw+TISquRWI4/3kB9Gh4Zg14Ln/1aE83TL3MRlg2OPlbz4TRfzg==, tarball: file:projects/arm-resourcemover.tgz} + resolution: {integrity: sha512-q8ID/qQUYqYSJ1pZWZ/+LKQu11+aapPkiegQcn8lHvkCd/EACzOC9bHZ8N4fU4YlZhe5cWVtGcwDFSKnwHzeww==, tarball: file:projects/arm-resourcemover.tgz} name: '@rush-temp/arm-resourcemover' version: 0.0.0 dependencies: @@ -15082,7 +15084,7 @@ packages: dev: false file:projects/arm-resources-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-1MKPvdl2/am0fUbz9Y4t9EtCyNt9W5dVC0UBH6KY5h2Dj8hWSqpU1RDKKYLxijlO+tiV51URL7Hx/joKnutenw==, tarball: file:projects/arm-resources-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-AfgbEwcZrG9JhI0pp201xzPZxP2ligl6HPcQ/111tGcA7BondnhG3hF/gBtonBYxdlGa7/YrqSOKuZQ+expENw==, tarball: file:projects/arm-resources-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-resources-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15107,7 +15109,7 @@ packages: dev: false file:projects/arm-resources-subscriptions.tgz: - resolution: {integrity: sha512-YHy6SVysSN0aGFDukP9Qs6+gPgHGP7TTMm/XukH5QfSb1zC5qfXL+jzHCHHfIsooTiJcRk9aYHHFxpoBqhnZ8w==, tarball: file:projects/arm-resources-subscriptions.tgz} + resolution: {integrity: sha512-VAiAewgE06DsuSDC/BLNIuoKYQurFi+3F0kK4j1f6euWFis8eWBzprc47kZ8J4KqAYKqeHFmHj9FiMbGOx7gxg==, tarball: file:projects/arm-resources-subscriptions.tgz} name: '@rush-temp/arm-resources-subscriptions' version: 0.0.0 dependencies: @@ -15132,7 +15134,7 @@ packages: dev: false file:projects/arm-resources.tgz: - resolution: {integrity: sha512-ws2q0Vy1XQtuQ49TTUZflbpF8KzNPc4ZmsXkPSSt74DGobaMJeW9dSrU3TwjtxDJ5hiKVYpe4SXVujDYmckHvg==, tarball: file:projects/arm-resources.tgz} + resolution: {integrity: sha512-4iLlGNSL2+WuAtJ31DfDxsWs1Bcy0Xw7faFJssejzRMo0M1NW9DgYhX0VESprvNRCeuNhft87Yex+8ZNfgBQ8g==, tarball: file:projects/arm-resources.tgz} name: '@rush-temp/arm-resources' version: 0.0.0 dependencies: @@ -15157,7 +15159,7 @@ packages: dev: false file:projects/arm-resourcesdeploymentstacks.tgz: - resolution: {integrity: sha512-1pm3KCBbcTfcbJTfT+OKYrRukPel73nq5xx7hsWKmckhG3rNC0N8vcidlkqcM40KZxRva8SlbEB1WyveGVg6zA==, tarball: file:projects/arm-resourcesdeploymentstacks.tgz} + resolution: {integrity: sha512-poyL/MzZRUHGkAQJq7AVM8Scr2RMXtfBteombjj/SQknjJFOebLyaaACV3H1qlZBCSpemEWTcuhW35on03wMOw==, tarball: file:projects/arm-resourcesdeploymentstacks.tgz} name: '@rush-temp/arm-resourcesdeploymentstacks' version: 0.0.0 dependencies: @@ -15182,7 +15184,7 @@ packages: dev: false file:projects/arm-scvmm.tgz: - resolution: {integrity: sha512-cQim5x6GXRouIel0uB0s4e78yvMZ/iUyDH5B+Gm2TxtogaSrTKfZDd45uaw1QpZ63fAyDPymZMguHNWGLNrSYw==, tarball: file:projects/arm-scvmm.tgz} + resolution: {integrity: sha512-qbthjiOrwJZL+IZV6u+un37ythmM+hmnlWgqd36Vhtu73/8qyfUN3RE2P/uWiBmR8H+OmAuuM0kuZx0hYg1scw==, tarball: file:projects/arm-scvmm.tgz} name: '@rush-temp/arm-scvmm' version: 0.0.0 dependencies: @@ -15207,7 +15209,7 @@ packages: dev: false file:projects/arm-search.tgz: - resolution: {integrity: sha512-qlG5It2Lcu+sdzlcO09rN1BvcqSsEb1/eoN0sE8LeibnG+XxC4Weuze6V1Gv02rIRrXqwCAQdED1nNmWZINzFQ==, tarball: file:projects/arm-search.tgz} + resolution: {integrity: sha512-YRYr55MYRWq8GAk7k8kQVJoRIGqxCsQYXPwdG3pYL+MkokE67u0OZpkBevsTHL3i+db2hbgRGYOJm2KoS743ug==, tarball: file:projects/arm-search.tgz} name: '@rush-temp/arm-search' version: 0.0.0 dependencies: @@ -15232,7 +15234,7 @@ packages: dev: false file:projects/arm-security.tgz: - resolution: {integrity: sha512-lLw8O1dpdJ4CKd51UlTWBOLl47c8MfxuN1CN6xglprWSM8nXwDjrmErm2RfFgB0Fr0MdRIN90ny5PPE+fsNt4g==, tarball: file:projects/arm-security.tgz} + resolution: {integrity: sha512-pW6fYDtWlWHwc2rweBXjFS9Rv7cOPIJVSqxmzVf2ah6LOCtWFtW7DHdnFpF7vuWYdQMR7R5Ic5rmKJQNUfvyOA==, tarball: file:projects/arm-security.tgz} name: '@rush-temp/arm-security' version: 0.0.0 dependencies: @@ -15257,7 +15259,7 @@ packages: dev: false file:projects/arm-securitydevops.tgz: - resolution: {integrity: sha512-V920NF0srbNMd3LFvbMknZ9KiSGNOD8NC39XzUBeq1JLoGjXEc1NM7oVKVbmm5QZzR3WGIzgYqXDuGFQmiDDxA==, tarball: file:projects/arm-securitydevops.tgz} + resolution: {integrity: sha512-OCQ47FxOtvRQ5QXi6f3Rj30OT3TKctUaAn3V1HosycpeBhOPA50c7oYozYD9O2I+ZzQykLFoQ+bnN4S66OAunQ==, tarball: file:projects/arm-securitydevops.tgz} name: '@rush-temp/arm-securitydevops' version: 0.0.0 dependencies: @@ -15282,7 +15284,7 @@ packages: dev: false file:projects/arm-securityinsight.tgz: - resolution: {integrity: sha512-1FyfSR8kmvpGujopA6EsQTA9RrjYCwT0e/clVBzDis5llxO/TTxbcOdIhDe3SgMa90SmiSrXVvSVSQZVvbqGEg==, tarball: file:projects/arm-securityinsight.tgz} + resolution: {integrity: sha512-lomrFohkNyCoBPelGsqfpu4ckb4uh7G+AX7rbEkQKFGBaAxTJtCsUdUZDRmPgSvopF6WsNLuGxJct+oH9UOXIA==, tarball: file:projects/arm-securityinsight.tgz} name: '@rush-temp/arm-securityinsight' version: 0.0.0 dependencies: @@ -15307,7 +15309,7 @@ packages: dev: false file:projects/arm-selfhelp.tgz: - resolution: {integrity: sha512-WxQ32/J5wfe+N6+OegGnRDloMBscs8RpYAYl6bAW7H2FRzaw1LDJT3YjG4xDOkbWNEXiqM37dQkSE7msCWIAHA==, tarball: file:projects/arm-selfhelp.tgz} + resolution: {integrity: sha512-euDGo4XtcvJGfyIUEGNXebKlzlYTnBttle0pk8AtYft7zxTyuioAZ77TLrHkfkHEBzhEE3O527sRlNgpSqnSEA==, tarball: file:projects/arm-selfhelp.tgz} name: '@rush-temp/arm-selfhelp' version: 0.0.0 dependencies: @@ -15332,7 +15334,7 @@ packages: dev: false file:projects/arm-serialconsole.tgz: - resolution: {integrity: sha512-Wbiep63a3vt83Gz+baTKtwpLGaBlJTOoN3eM6kAy7/f1vG35GfUIWSJd0N+8o0L+swo+snap7GaRh1MNB6Ur7Q==, tarball: file:projects/arm-serialconsole.tgz} + resolution: {integrity: sha512-4M6uaBlOPuBSHWz0B34+BP+Vc9DRxaCOuEB0IGqLo+61m4PsFFGVrkBSE94xXgWtQADE1jLA+lIkEL+4vxVC2w==, tarball: file:projects/arm-serialconsole.tgz} name: '@rush-temp/arm-serialconsole' version: 0.0.0 dependencies: @@ -15356,7 +15358,7 @@ packages: dev: false file:projects/arm-servicebus.tgz: - resolution: {integrity: sha512-tRKEW56Bh/YMfG6pKtOyPYKddIDq1KexHPLM/dDoVrwqYSsN7xq2v9hBCh6KYOKPJjVczFf4b4dNMRxmQlCPlA==, tarball: file:projects/arm-servicebus.tgz} + resolution: {integrity: sha512-kR28D85jYYRFqkFQ8i7Am8ScuMxX6DRdGg1bXPblEDA+a2VvBoi0FrfriyYIflzKGY0+DmW/sqtdK5HVf0wsnQ==, tarball: file:projects/arm-servicebus.tgz} name: '@rush-temp/arm-servicebus' version: 0.0.0 dependencies: @@ -15381,7 +15383,7 @@ packages: dev: false file:projects/arm-servicefabric-1.tgz: - resolution: {integrity: sha512-XbawmwTxZcwsA7eUSFaw0U5MhcKVN8XwnB4vdgcc4/a9JYKrjgkzM+B7aX5r7/rbwqPwkIOh0sRZrG9/xxqTYw==, tarball: file:projects/arm-servicefabric-1.tgz} + resolution: {integrity: sha512-PeWR+rN1C/NOQ5QS9I0oM5775EHeSWLSzayeMuhqm5B2Eu0WJKEn/bEXyYlFyt9s00BGby4ykw19Va+yfWLiuQ==, tarball: file:projects/arm-servicefabric-1.tgz} name: '@rush-temp/arm-servicefabric-1' version: 0.0.0 dependencies: @@ -15405,7 +15407,7 @@ packages: dev: false file:projects/arm-servicefabric.tgz: - resolution: {integrity: sha512-NWzzEpp+dbqGCnlPMLzflMcstOV3hTfAWOfcN1GyWMRU0uUxDTjQRgT6pv7o34P6VDX/8jKJ8+T/YyDf55SPcw==, tarball: file:projects/arm-servicefabric.tgz} + resolution: {integrity: sha512-s4f9x4CPlnPFMuEliG4lgThfASYrKKI8avGFVWfaMvdWA63TzqJpVMHZhVkLTM5m0vGcG7aX30XkSkC2cGTydw==, tarball: file:projects/arm-servicefabric.tgz} name: '@rush-temp/arm-servicefabric' version: 0.0.0 dependencies: @@ -15449,7 +15451,7 @@ packages: dev: false file:projects/arm-servicefabricmesh.tgz: - resolution: {integrity: sha512-OBZ94g/eIbQOP5xv2ezCbvgh2W8r+5VPcXklmMJwUeAepSJe+ENk/KnSIOG9A4VYxzNqQsnOnzRjjBoyI6xh9g==, tarball: file:projects/arm-servicefabricmesh.tgz} + resolution: {integrity: sha512-BRpgxLJXiItpVwSjHuvXfpz+QJFX+KFeBdOwM6uoo2o0vTIsF8BCIUNU/rx4anzmP3L31lypwv7LsipHOoUGJQ==, tarball: file:projects/arm-servicefabricmesh.tgz} name: '@rush-temp/arm-servicefabricmesh' version: 0.0.0 dependencies: @@ -15474,7 +15476,7 @@ packages: dev: false file:projects/arm-servicelinker.tgz: - resolution: {integrity: sha512-udECqWC7AR8a+LQyDFyjHN/2bdy4xCXgJNElaRUKiLajilsr5yoVpdjaKA2f6+BRuOKMSKtZD1wvGmOFJ1gviA==, tarball: file:projects/arm-servicelinker.tgz} + resolution: {integrity: sha512-ssuLky4GbJ/hzsRtuGZHs/P8mENEVOJ9OKjP3wKQM/lkbmGf6PSJFfnLjQ9gDtyTizh/C3gX5IyWdTIUSMWj9w==, tarball: file:projects/arm-servicelinker.tgz} name: '@rush-temp/arm-servicelinker' version: 0.0.0 dependencies: @@ -15499,7 +15501,7 @@ packages: dev: false file:projects/arm-servicemap.tgz: - resolution: {integrity: sha512-VtcN3N9nq96VaTS7f6nB/41Fqh192s/6dcXwxJxC9P7odhsl17+QUbjswpmhzuIiW15T4cylshX+TCm+Xn34iw==, tarball: file:projects/arm-servicemap.tgz} + resolution: {integrity: sha512-dWoxE2cOzAF2t8ofcBG4FZPyxQF4MFTIi+8ELyn8LQmItXT97/eyHx7iAE6tE5YjoASeW8yH6Q2C38q/voXSAQ==, tarball: file:projects/arm-servicemap.tgz} name: '@rush-temp/arm-servicemap' version: 0.0.0 dependencies: @@ -15524,7 +15526,7 @@ packages: dev: false file:projects/arm-servicenetworking.tgz: - resolution: {integrity: sha512-vTFPsHzNKU5ZbtFNpuply+ieAsIYH9FvyyYSaKPFBKc3YJQ05FHF6i8RC+4Wv79AXQNOYDzXh4pL9qdV62XR7g==, tarball: file:projects/arm-servicenetworking.tgz} + resolution: {integrity: sha512-3mfPCDS4q+Vu/weUKq+JlBfySBomkhF/aByXQTNoS4tAi48/qcPEZQRlDAXcQX7wxuba7o/Hj7vCDoA/ETL7Hw==, tarball: file:projects/arm-servicenetworking.tgz} name: '@rush-temp/arm-servicenetworking' version: 0.0.0 dependencies: @@ -15551,7 +15553,7 @@ packages: dev: false file:projects/arm-signalr.tgz: - resolution: {integrity: sha512-sd098Hylgwx0MEw6sphmzNtr4bDUw+G9pEHbzbqoKL47BEHb2Y33DPt7QK2nlFgptijGjgWa8cEgABKt1HcMdA==, tarball: file:projects/arm-signalr.tgz} + resolution: {integrity: sha512-dgjcxzILbO3JSqP+6jbLDE5GB/L3xGdFdrO4UZJ8CS0dA/E44LWtWzVjn2w0B2A4VuLyz+6QLGZ+9JbJIx2sKg==, tarball: file:projects/arm-signalr.tgz} name: '@rush-temp/arm-signalr' version: 0.0.0 dependencies: @@ -15576,7 +15578,7 @@ packages: dev: false file:projects/arm-sphere.tgz: - resolution: {integrity: sha512-pVbLG2HhS9OvTeDPpS4AGq4LNAbcWzyD8BSYJA7rC8CjPSSIWcnlU9JCUDCZGKufCi0ECSW+QPsKQJr3GlUrUA==, tarball: file:projects/arm-sphere.tgz} + resolution: {integrity: sha512-M1irXI6xWsbb71lwYty06YJb4c4oiwH0U18aSCVv7L/NxEKTfnZW9mQiZAww1QvVulRa8KapuKKeGZiFjNCahg==, tarball: file:projects/arm-sphere.tgz} name: '@rush-temp/arm-sphere' version: 0.0.0 dependencies: @@ -15601,7 +15603,7 @@ packages: dev: false file:projects/arm-sql.tgz: - resolution: {integrity: sha512-0MYK1EjJEHPI1KPd/eZ8Gm9oW0nVx5GFMSRS1B7i5YQu3QuSukJq+OQKcWLgbT3WFVYfmRCas+Krh4yCiiVDfw==, tarball: file:projects/arm-sql.tgz} + resolution: {integrity: sha512-7XJa7E8AmDNs3Z6QOcK5Q+vRfZcoAHqUTZRSOuLfmndTTS8s9/6ufWm6tKNJ5rmCPMrlh3eyiTwb8zbKaKqVKQ==, tarball: file:projects/arm-sql.tgz} name: '@rush-temp/arm-sql' version: 0.0.0 dependencies: @@ -15626,7 +15628,7 @@ packages: dev: false file:projects/arm-sqlvirtualmachine.tgz: - resolution: {integrity: sha512-t+oN8Kv/RM4u3j0EN/OmQvUUFD19jQdYeaygIImq1n5PbAOTQyCQwcYsKRfAgLotQjjmFTIwNcsEeIbB5gbXNA==, tarball: file:projects/arm-sqlvirtualmachine.tgz} + resolution: {integrity: sha512-I5iVFNmGoW4zxjRITcTQeCnOdgvDeXbvDQny7UKZDILpe2NQYdiXvwTDj1o6wKtMumOS6gFG8qIfcqOWJ8RTBA==, tarball: file:projects/arm-sqlvirtualmachine.tgz} name: '@rush-temp/arm-sqlvirtualmachine' version: 0.0.0 dependencies: @@ -15651,7 +15653,7 @@ packages: dev: false file:projects/arm-storage-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-2kCM0F1/gLy5A55/xqlNZwqdo5k1bcWhJPiKtXp7/8k/3EMO3DknTGaQHwg+5MKyDLEQEwdCg8pXhF0sIVA/5w==, tarball: file:projects/arm-storage-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-M5R93oKLLp8afS2Bb61ORddMBfRkz02DB8WwRvveoLMVidMslsTkJTUe92YOHFELhbyt2TK1uYwy17L+e037eA==, tarball: file:projects/arm-storage-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-storage-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15676,7 +15678,7 @@ packages: dev: false file:projects/arm-storage.tgz: - resolution: {integrity: sha512-UuuK+iuMPz/9v9nntW9IKaos0DJR2H30+RdKKHmtmuZdjeABTJvAGSR5M8LFQxf782daemUgBYSWxjY7KiotTA==, tarball: file:projects/arm-storage.tgz} + resolution: {integrity: sha512-/dOgwbfRS1KKv5kf1d9Z0Y4lJQUIRDgsKUK+0TI7C87YKIodWx5/hrJfli0JjZtb4f68Limt8aqbAXwNZAOdBw==, tarball: file:projects/arm-storage.tgz} name: '@rush-temp/arm-storage' version: 0.0.0 dependencies: @@ -15701,7 +15703,7 @@ packages: dev: false file:projects/arm-storagecache.tgz: - resolution: {integrity: sha512-0Tfp1MSGJPOoFQdX5mscGVt3IZOxQgKVP7XIbGn16bUXykBgkFeWF0beCT0LVoLzJAYm4/2sLgg3lK4+G0Mw4Q==, tarball: file:projects/arm-storagecache.tgz} + resolution: {integrity: sha512-CdsKA6CnbPAH1VCdhUqNdadl4nKgEROG0sPzj86DBiWOo2f3I4UwrTXtc0+0IBP5iB53ZCZImtfs4VGF2YsHnw==, tarball: file:projects/arm-storagecache.tgz} name: '@rush-temp/arm-storagecache' version: 0.0.0 dependencies: @@ -15726,7 +15728,7 @@ packages: dev: false file:projects/arm-storageimportexport.tgz: - resolution: {integrity: sha512-gV/SijkpqgeBIV9xM7gZ2ASfNMxkZtdKVxqygcZkGNWjc/5hwohTf4nugO5UdXP0TL/KK59lUwLXVHpSSH7X2g==, tarball: file:projects/arm-storageimportexport.tgz} + resolution: {integrity: sha512-G2uijgb7RNTZrT2Cin5T7L+N60q4kJyzvP65ehKrDd2oYp0tYRX37/43ze/iv14cM1Um+kpYp/UnW2L4ElPOuw==, tarball: file:projects/arm-storageimportexport.tgz} name: '@rush-temp/arm-storageimportexport' version: 0.0.0 dependencies: @@ -15751,7 +15753,7 @@ packages: dev: false file:projects/arm-storagemover.tgz: - resolution: {integrity: sha512-XSnhjG8qGTFiCoYLcGZdGUE9JUWluTHpjW955ZKbWwa7V+bdBJo5k+iha1KaFcbhd2OPyOHkBaYkJ1VAtAJHBg==, tarball: file:projects/arm-storagemover.tgz} + resolution: {integrity: sha512-ktNjN1cks9TYUEy2eA0ayDcjxVBW8f1s9qn9h2AVDWLyCs/NhrngYuKBSOXnsl1l8L4RUPu2et6FBHGl4oBMQQ==, tarball: file:projects/arm-storagemover.tgz} name: '@rush-temp/arm-storagemover' version: 0.0.0 dependencies: @@ -15776,7 +15778,7 @@ packages: dev: false file:projects/arm-storagesync.tgz: - resolution: {integrity: sha512-LpuNE9WYTNVLQx/uTXriMB99WDHi5F7vMYfilJVO3S+3ptfiiFpQmN6xCKjDblgrcyTRQuyhMX6ITs28UA9/YQ==, tarball: file:projects/arm-storagesync.tgz} + resolution: {integrity: sha512-8+voKlcFEtTdBJHN26F45ZstTpF1JkTjrNBY+DB3bMrz7ZtWa9vdBa+XwjvGLUL4SQtmLi1Bb2dp1wpT3Mdq0g==, tarball: file:projects/arm-storagesync.tgz} name: '@rush-temp/arm-storagesync' version: 0.0.0 dependencies: @@ -15800,7 +15802,7 @@ packages: dev: false file:projects/arm-storsimple1200series.tgz: - resolution: {integrity: sha512-OpHaH0SWRZmb2rdz3R0UD9cmbYak0S7/aHjpl1iSI5IEvSAQiMAp0ZhCIfQPj827yxlyRW/dAPnR9UZnIfMT8g==, tarball: file:projects/arm-storsimple1200series.tgz} + resolution: {integrity: sha512-JDIPWRIJRqZgJQhqxGCT51Az7afnw3a4t861fU4xiQW9hxwrzpHmvoZ1Uc9+pWkObNZfr2L+dibubkqjpIlzvw==, tarball: file:projects/arm-storsimple1200series.tgz} name: '@rush-temp/arm-storsimple1200series' version: 0.0.0 dependencies: @@ -15824,7 +15826,7 @@ packages: dev: false file:projects/arm-storsimple8000series.tgz: - resolution: {integrity: sha512-nqnNrtzAjSALn44C05DUeABMn5HXKOd5nZva7iBWVVAqDNdepRjDn29GKMZWeSNxIBbhyPQqXn8FzN/e2vvP4Q==, tarball: file:projects/arm-storsimple8000series.tgz} + resolution: {integrity: sha512-evbiJ/RcGkZsic9sHJIDEaHGI3WZ49J5/1N1mYW53HnzzjVRLvRklHzYXikbifXAq1oXgr+33f/QZ2Dfv8NlaQ==, tarball: file:projects/arm-storsimple8000series.tgz} name: '@rush-temp/arm-storsimple8000series' version: 0.0.0 dependencies: @@ -15848,7 +15850,7 @@ packages: dev: false file:projects/arm-streamanalytics.tgz: - resolution: {integrity: sha512-qHZmrtC9IF72tzvOyq6asX4NPnwCHsL6Vum458nj+hhwOvPWBS3qfLIlPeWiF0sl0+Z6v+nJxQWUNDGdCU+AVg==, tarball: file:projects/arm-streamanalytics.tgz} + resolution: {integrity: sha512-nHE9o4kImfvi95Td9KXFgkfi+N1EqM4lxq4cM1mED1h7D6yBYknG+7vZl9NVC5Z0q/qu+vcgdEvExzVzeIBABQ==, tarball: file:projects/arm-streamanalytics.tgz} name: '@rush-temp/arm-streamanalytics' version: 0.0.0 dependencies: @@ -15872,7 +15874,7 @@ packages: dev: false file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz: - resolution: {integrity: sha512-iX2Ry4+dO0WtgLiK0mxNYUNXG3jMIXmZ2n8dRvxhMm/r5/qnRcsWbH4QIabaghcl1eEomKt6vwVVOf7PoWpVpQ==, tarball: file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz} + resolution: {integrity: sha512-UCtiDT6RCEoB9eldGXQbmD3orZDbNTo7jGDuEsozFo053biXWtSnvrz03dyEhn5zP8Pms55wto9p0SuRGb/TWw==, tarball: file:projects/arm-subscriptions-profile-2020-09-01-hybrid.tgz} name: '@rush-temp/arm-subscriptions-profile-2020-09-01-hybrid' version: 0.0.0 dependencies: @@ -15897,7 +15899,7 @@ packages: dev: false file:projects/arm-subscriptions.tgz: - resolution: {integrity: sha512-Zq0FKJCgXp4WqYQ/YNXpewkZ/ZqX3UAJYTLr+ui1Xjdxh4eDpoczIQe/Z2DFN5akf3aA0zYy99CraEi08Mlf8w==, tarball: file:projects/arm-subscriptions.tgz} + resolution: {integrity: sha512-zr8fx5maIk/IHsW2hxy2/vdLhgzHVo5fqDcROeh77WhVYmBwHBsUuWWmNVpKnsujLOHkkoRrYXzHgG7SY/4Smg==, tarball: file:projects/arm-subscriptions.tgz} name: '@rush-temp/arm-subscriptions' version: 0.0.0 dependencies: @@ -15921,7 +15923,7 @@ packages: dev: false file:projects/arm-support.tgz: - resolution: {integrity: sha512-yJpFnh4c4Apuk4DEOOFURajw+gA9DgNfgg3pKT3zDxD+lMsuSQzpzbEku+ZziRcYXv3DyOrlJNTfUpjIZizzfw==, tarball: file:projects/arm-support.tgz} + resolution: {integrity: sha512-PvrzcMohnBB6/rQlgYnNfmhqTEplq7TOre24jPvq7f63K6Ar3XUS8fPMTVleFM+spZoSjki+J/hhxLRNYet+wg==, tarball: file:projects/arm-support.tgz} name: '@rush-temp/arm-support' version: 0.0.0 dependencies: @@ -15946,7 +15948,7 @@ packages: dev: false file:projects/arm-synapse.tgz: - resolution: {integrity: sha512-6IticNMF6QosUvN5Bu+ajhakECsLmFBqq3AaBoC7nuEgKUZ4qH+csO514HHrWzDKvBSM2whaTZjTymkyutJApQ==, tarball: file:projects/arm-synapse.tgz} + resolution: {integrity: sha512-9rm1k1/GioOzMtDruvWBhOTxXeB0JJrXDZuW3AkYgJLgJwEddOMKb7BoZPvtWgGAEEDTRUgz/J5quq+nEc6TmA==, tarball: file:projects/arm-synapse.tgz} name: '@rush-temp/arm-synapse' version: 0.0.0 dependencies: @@ -15971,7 +15973,7 @@ packages: dev: false file:projects/arm-templatespecs.tgz: - resolution: {integrity: sha512-AQ1/4GfE52L7URXCOgJogRx8mmaYdddU22c04o+OcyeVVe5kZCBoHrazzv3HYucih9qubMB/BScsBXWC+VyYQQ==, tarball: file:projects/arm-templatespecs.tgz} + resolution: {integrity: sha512-3zcC7XdAO0wQDcBEsGz66BExCbi3nTyXfEaMFmGNG8Ks++lecqPjH1IPrxg2eRJmyYNVGszzIw5SFAT/gYolTA==, tarball: file:projects/arm-templatespecs.tgz} name: '@rush-temp/arm-templatespecs' version: 0.0.0 dependencies: @@ -15995,7 +15997,7 @@ packages: dev: false file:projects/arm-timeseriesinsights.tgz: - resolution: {integrity: sha512-GrAHoKF41ufFh7t43MGgMlRonxp1hAT72VMBANaXBDIDO9l05+wN+liUOCEP+QZPqYk9gcsMkfXUGfQVcfGsPw==, tarball: file:projects/arm-timeseriesinsights.tgz} + resolution: {integrity: sha512-iFYKO1gDFUAfrOk059TBF5vSA3sv3a2rMfi15rCPwJdqiahSxKulk2xQxrzdhxn/ufpmseBaRjso0CvnyHm8sQ==, tarball: file:projects/arm-timeseriesinsights.tgz} name: '@rush-temp/arm-timeseriesinsights' version: 0.0.0 dependencies: @@ -16020,7 +16022,7 @@ packages: dev: false file:projects/arm-trafficmanager.tgz: - resolution: {integrity: sha512-zFknqL6yDuvidoTyvxr7rUkDzW/nfV9x7pfmodjiv/b0lbuBtOV41KHppahhRwrwaQaurpDugFncmR1pgA526g==, tarball: file:projects/arm-trafficmanager.tgz} + resolution: {integrity: sha512-K0Ldwi/wDDWFg2NaefkwGq+p6JxnDqmS35fjaEQ8jvxUNVjM7hKK8UfeOHFlMU4hP1fqWs2Ns+Mcx+jjtLpLUA==, tarball: file:projects/arm-trafficmanager.tgz} name: '@rush-temp/arm-trafficmanager' version: 0.0.0 dependencies: @@ -16045,7 +16047,7 @@ packages: dev: false file:projects/arm-visualstudio.tgz: - resolution: {integrity: sha512-8BAe0I4p1UzUBl5dFB3zOyeLUzMzXiMymq1rZM1ecC+mJ5jq84Jm9OuJD4DSqlPLxb6utyAFHDBgV46ycMpOPw==, tarball: file:projects/arm-visualstudio.tgz} + resolution: {integrity: sha512-7zVRXq+FbAZBMAWHbYIWnVAY2HxhNrSphU5oarZ3k6sS3E10ptRC1iO4/P/3+qepatM5jyh32cuB+yG6b7ZcQA==, tarball: file:projects/arm-visualstudio.tgz} name: '@rush-temp/arm-visualstudio' version: 0.0.0 dependencies: @@ -16069,7 +16071,7 @@ packages: dev: false file:projects/arm-vmwarecloudsimple.tgz: - resolution: {integrity: sha512-Hsswl1Ttm2K3CElnQPd83xR1HrzPLgVwH1d28LivwY2C5R7nfGwb0WaAViH+N5gdDReyk/ZcTalgD5MS9osDSQ==, tarball: file:projects/arm-vmwarecloudsimple.tgz} + resolution: {integrity: sha512-CoZBPQ+ri+mTOAx8mUUnhMkx+yIIMibfIlI65F7I6+M83byjQTX15hqhgWdznp8EBjthpBDHFWJ97k2ryFjrvA==, tarball: file:projects/arm-vmwarecloudsimple.tgz} name: '@rush-temp/arm-vmwarecloudsimple' version: 0.0.0 dependencies: @@ -16094,7 +16096,7 @@ packages: dev: false file:projects/arm-voiceservices.tgz: - resolution: {integrity: sha512-tqXkWhjkITIzQMb1m5/qNkEhji0JuflyaBf2T9ZSzeZImWqya3U56D8GcKYFlwVW1tdyYdV9Boi1gsGeSV7u/g==, tarball: file:projects/arm-voiceservices.tgz} + resolution: {integrity: sha512-VuCNiK/M1zgTlNYk1TT2w7YNYI6rwUz79Uf7U5xhJcQxCUdpHFuR4Vy++FVyhpFEPSjPpoLqzSGlY0IXSABeZw==, tarball: file:projects/arm-voiceservices.tgz} name: '@rush-temp/arm-voiceservices' version: 0.0.0 dependencies: @@ -16119,7 +16121,7 @@ packages: dev: false file:projects/arm-webpubsub.tgz: - resolution: {integrity: sha512-ilGmntyta3Ksfav9Q9/nIPJEdxrENJRnB5UkFy81Mvv0sGOfmDVGOUZaFpzuYz6G3bBJwnQpwJeEU3Jwhl45hw==, tarball: file:projects/arm-webpubsub.tgz} + resolution: {integrity: sha512-c+PhgOKFlw4LVofq9Sei6csoce3gGCs6hsrq5CpmEg/Kb2aJg994gf6+wCvGQtN4GWLjzAAf9nLdj6Hs7cNAqA==, tarball: file:projects/arm-webpubsub.tgz} name: '@rush-temp/arm-webpubsub' version: 0.0.0 dependencies: @@ -16144,7 +16146,7 @@ packages: dev: false file:projects/arm-webservices.tgz: - resolution: {integrity: sha512-FJ59YDLiigFxqzWZAF5+M+lUnZQluNKadK6VVBcWaW014XCszYQVRlb6b7W1bsQMnAzV+t/pPB2Rs5MXtIdrxQ==, tarball: file:projects/arm-webservices.tgz} + resolution: {integrity: sha512-JaJup89yW6OAHPKqj1ZI6btp5IwUAC/GV17kw4+FTM34IXrqQ4nVuIKpPI4GIHXjtIO73nWzLk4bm1mWe+vvYA==, tarball: file:projects/arm-webservices.tgz} name: '@rush-temp/arm-webservices' version: 0.0.0 dependencies: @@ -16168,7 +16170,7 @@ packages: dev: false file:projects/arm-workloads.tgz: - resolution: {integrity: sha512-MTCNetqpLMkgGaEqdG2TxqMu6o9UX0Ir396l3x7cZw4z1J6iIp3Z3++gnqBik6ZBVCz8o3SkZfNmRiChlF4hig==, tarball: file:projects/arm-workloads.tgz} + resolution: {integrity: sha512-jfCB71jrqOJl5Vmt0zz6EM6YHVcUIjc0RlyI2xffiSVKQeipaF8VDMHX/PxWAKLlrb5GtM+Ef7sgqh/oYgoUEA==, tarball: file:projects/arm-workloads.tgz} name: '@rush-temp/arm-workloads' version: 0.0.0 dependencies: @@ -16193,7 +16195,7 @@ packages: dev: false file:projects/arm-workspaces.tgz: - resolution: {integrity: sha512-WtZ5kDup9BnVSnyskN4rhYGvd1g9PllDLi6C8I/Dh4JRnIPxWEiDRz5P2t0gaJk0GX0PW+L+TEgVWCUatzP0jQ==, tarball: file:projects/arm-workspaces.tgz} + resolution: {integrity: sha512-zSP8FckjXdAxIle6oIy/t/PhULyRbE2o6JwhnbpH1qkXaM2ut+IEajWZmMXu060KegvooaiiQyQAMNXE+Wg09Q==, tarball: file:projects/arm-workspaces.tgz} name: '@rush-temp/arm-workspaces' version: 0.0.0 dependencies: @@ -16217,7 +16219,7 @@ packages: dev: false file:projects/attestation.tgz: - resolution: {integrity: sha512-bqUxTZhmWaoK5hXg6Bws0EnLLn7051jhrkyA8BjZUgS2lvgNUuXD+epBblq6Oxv6TYHLPBhVbgBypCHRUDpiYw==, tarball: file:projects/attestation.tgz} + resolution: {integrity: sha512-PnavYY8GMKOyOw8chclbo5Id2+fNd4DGeYWjQmu23HvggVovRDzgAJA/rM2AmQDDhwDK3CChKFTR4Np/LNhfSg==, tarball: file:projects/attestation.tgz} name: '@rush-temp/attestation' version: 0.0.0 dependencies: @@ -16270,7 +16272,7 @@ packages: dev: false file:projects/communication-alpha-ids.tgz: - resolution: {integrity: sha512-FLsH24AL87P1fYheG8UU1DbikR7xSbJy11H2cSHn3SDnStPOQY9bpJWfwigDwSY4yqeOVjWDQkdi+TuipA+JNA==, tarball: file:projects/communication-alpha-ids.tgz} + resolution: {integrity: sha512-1X9rmYjfmQzfeEp+6JfrpTk9iGnBOzBbhJK/RX2Lm3jPZz2UC/pvnLy3f8D9ZQDybuRC7dhpenAkrG6VdHxRGg==, tarball: file:projects/communication-alpha-ids.tgz} name: '@rush-temp/communication-alpha-ids' version: 0.0.0 dependencies: @@ -16314,7 +16316,7 @@ packages: dev: false file:projects/communication-call-automation.tgz: - resolution: {integrity: sha512-wNGEhZeQN3sF2c71zIJ1hbFxL6iUhrj2hIf0o+e1PzOKHhAWhjzGLg0Fk9dyFpvX1i1RXlzplOtmvcevJOnfhA==, tarball: file:projects/communication-call-automation.tgz} + resolution: {integrity: sha512-MjF0twcTWH0GW8GWTmzUpZzFZ4TD32wnvykQAz3SVOA538sqAKbpM5JLwqk3g9gsI+hk5g5DJn4AwzoxzoGl7Q==, tarball: file:projects/communication-call-automation.tgz} name: '@rush-temp/communication-call-automation' version: 0.0.0 dependencies: @@ -16362,7 +16364,7 @@ packages: dev: false file:projects/communication-chat.tgz: - resolution: {integrity: sha512-pFIzYVzbx9i/WVV42McvG2MsiA1JktK3j2B5PmxMWQ7j390OhHxPc9zaeVIWJtQr1yxS5yoZlLO6xr8moJquEA==, tarball: file:projects/communication-chat.tgz} + resolution: {integrity: sha512-i6EUqP0uJ27Ibp3Um0q8DNVRXUiS2apogrDZLUUdK0aTr/0WbsDeqlqkU2ITx0vC9KFIslMKbUqze93y1TntkQ==, tarball: file:projects/communication-chat.tgz} name: '@rush-temp/communication-chat' version: 0.0.0 dependencies: @@ -16413,7 +16415,7 @@ packages: dev: false file:projects/communication-common.tgz: - resolution: {integrity: sha512-pRKvgL+7o1JX+otcY1umfXITPMkJnIO4tedVnVRTti+ZEAP84NVSoOAvTQq1DKBqUR9Ifq0i7safsCYXFDvrng==, tarball: file:projects/communication-common.tgz} + resolution: {integrity: sha512-YeDb5PElWeyLkECORE9AsNwe4U5R/VE0ZMf/6mJeoExPA6N3kixpHX/vlpRzIHKCCGE+ywgPugQu2uOysNqmNQ==, tarball: file:projects/communication-common.tgz} name: '@rush-temp/communication-common' version: 0.0.0 dependencies: @@ -16461,7 +16463,7 @@ packages: dev: false file:projects/communication-email.tgz: - resolution: {integrity: sha512-+crVDA954/42/R172GUf0Os877MdYDQxU1FYcuZQlDfYa6DNLI34JMMxih0EftL7EEbBzLPpBPN1Cv6d6MshvA==, tarball: file:projects/communication-email.tgz} + resolution: {integrity: sha512-a83aD/BBmxKlKES1kaby7mWQbWBvYvG46AFUyvFXChEKx2J7YfZvKcGnaoxAsO8u1Q+H40ycmUzZga8kDTf+Uw==, tarball: file:projects/communication-email.tgz} name: '@rush-temp/communication-email' version: 0.0.0 dependencies: @@ -16505,7 +16507,7 @@ packages: dev: false file:projects/communication-identity.tgz: - resolution: {integrity: sha512-K2j2r8zyGIdtvoMALsLzXTk92E7GUCdXvKqgojpRMGH4LO8AtDBP9mJBZ9ujYmxnSFBe8nKUEIbfaFhaW6gObQ==, tarball: file:projects/communication-identity.tgz} + resolution: {integrity: sha512-2/M9x7gl4Jg0XLMGTpdW5JOjKnUene5+wj8e5rncq3XU3ceNojh80GVQ9/nwX829cbcPbZAla2fpJ5gPHz/2AQ==, tarball: file:projects/communication-identity.tgz} name: '@rush-temp/communication-identity' version: 0.0.0 dependencies: @@ -16552,7 +16554,7 @@ packages: dev: false file:projects/communication-job-router-1.tgz: - resolution: {integrity: sha512-O1c995CB5iKTdCj+qu4p1AaFzY4lC/4cBQ4VqXTHEO5bu/H05BHkpLOY+HBI8tF3mDRSYQht3bEh9eBPYgblBA==, tarball: file:projects/communication-job-router-1.tgz} + resolution: {integrity: sha512-fEPx7xOSIB+qLPLoEOivhFFteU9DDzVd8zgJ/C+OmH/2fkW7MkzivOABAuQxydaryXc3GiG4uRZUa4bnJ6Cn9Q==, tarball: file:projects/communication-job-router-1.tgz} name: '@rush-temp/communication-job-router-1' version: 0.0.0 dependencies: @@ -16601,7 +16603,7 @@ packages: dev: false file:projects/communication-job-router.tgz: - resolution: {integrity: sha512-1gDoujnmlmgEcnOeY61CDqgkluK7GxgBaYx+pzDBmXepDpW20tKbxe+9b+aaehszDc623/P327SGHLo9vVP0YA==, tarball: file:projects/communication-job-router.tgz} + resolution: {integrity: sha512-NKetDvWkiV30NXVsxSeqwUy+KNxIfvMcdDDaZvMK4BRzLcVkvitAOt+WIxA+oBfjxu1IEQzs1sKnJovaiz3+tg==, tarball: file:projects/communication-job-router.tgz} name: '@rush-temp/communication-job-router' version: 0.0.0 dependencies: @@ -16644,7 +16646,7 @@ packages: dev: false file:projects/communication-network-traversal.tgz: - resolution: {integrity: sha512-4UMQLrqwK8lGFwX3PkpG8x7aU7Hi+WhTjB0ZOT31VPEgyXmxtEh7SjYUt8S89G0df85C+lpqZ31IJP12C7jgOA==, tarball: file:projects/communication-network-traversal.tgz} + resolution: {integrity: sha512-Isk6dZjFQf677AZKtF4Hj2zq9vbQ67oQyI9w1XepfitC86JlpCMt/YZ5qLSXjn5TEX4EyZ62JkCWGSrlr+757A==, tarball: file:projects/communication-network-traversal.tgz} name: '@rush-temp/communication-network-traversal' version: 0.0.0 dependencies: @@ -16691,7 +16693,7 @@ packages: dev: false file:projects/communication-phone-numbers.tgz: - resolution: {integrity: sha512-9KVZjqhniHfNy+oWladIwW4dkUFm7wGf7uQtycLmrYpg8NuUyE9IGk1PiCExOhEB20vowxS8lsR5QEPDECUVYA==, tarball: file:projects/communication-phone-numbers.tgz} + resolution: {integrity: sha512-WKsNuF80nqlNYyrCNbRzLNQ6fA11s1Wv4vhglZ7Ea67Jp3tbJxthKRZOosOysLl4ieyJeK9eXo0Q4fXa1JdHOg==, tarball: file:projects/communication-phone-numbers.tgz} name: '@rush-temp/communication-phone-numbers' version: 0.0.0 dependencies: @@ -16738,7 +16740,7 @@ packages: dev: false file:projects/communication-recipient-verification.tgz: - resolution: {integrity: sha512-sXCTdL4haXZdVlYEgmFTRaTzp/8TyUbHsMjDoDPUOD0xGEJb3ZaaayVoU936CqjOdwQhzAGpfstoSHyHXRFacQ==, tarball: file:projects/communication-recipient-verification.tgz} + resolution: {integrity: sha512-WNos1OErJwsDuoqHuUeMTKyLDqrKmvPPeFgu+cgUyu0lkSEWHmu1T1roCzJQOVklf4sH3078CKC1fwrk2aTAmQ==, tarball: file:projects/communication-recipient-verification.tgz} name: '@rush-temp/communication-recipient-verification' version: 0.0.0 dependencies: @@ -16785,7 +16787,7 @@ packages: dev: false file:projects/communication-rooms.tgz: - resolution: {integrity: sha512-XvcQkT+x5m5WZmv9SW8lfqZljSszFylhoklEGr7OFfOtg4dFrAumkcHjJOSABmFLkuQ37lBCGNoLCcI3weLeDg==, tarball: file:projects/communication-rooms.tgz} + resolution: {integrity: sha512-30NjuqlQLAQBGIBpOPDuFw0I+povzuwrS8uqVYcD3QkPZj1oKar187I3FsJf/Hct/DKrb8zgO2fYpcGP8WtKMA==, tarball: file:projects/communication-rooms.tgz} name: '@rush-temp/communication-rooms' version: 0.0.0 dependencies: @@ -16822,7 +16824,7 @@ packages: dev: false file:projects/communication-short-codes.tgz: - resolution: {integrity: sha512-/5xmSFfGJM+YJr23E6YxSwUcdQUkOEzU9PcIynmJVOKkM8bvcE3BOsZ3pAH2zeNfBUIkn3SCHJtwfpIFxO4ABg==, tarball: file:projects/communication-short-codes.tgz} + resolution: {integrity: sha512-C0lSTEKvAfDlMJ2hdIYSPdK8y4pQoiYMw+JMy/tWwIDeepj/8EFYdlI4dBvQa7wVxeahfauOGd9fO1ELkUM+ow==, tarball: file:projects/communication-short-codes.tgz} name: '@rush-temp/communication-short-codes' version: 0.0.0 dependencies: @@ -16869,7 +16871,7 @@ packages: dev: false file:projects/communication-sms.tgz: - resolution: {integrity: sha512-yJkV/7RN0cZ/icDpZoQ4TglRRwPFUvLIc+P4ctamiYxQb+xw/xbvlo3+HZXI5z7m+w7McpueV1/uMCoPeOSt+A==, tarball: file:projects/communication-sms.tgz} + resolution: {integrity: sha512-Pz7ZhzcRlKDc9S2RYcGk/VSLy1n5ag0tdEFqwGd8QPitRQsDHsYU6bCe41M6omkDD7ywwUJZBsphaCRtLeoC0g==, tarball: file:projects/communication-sms.tgz} name: '@rush-temp/communication-sms' version: 0.0.0 dependencies: @@ -16917,7 +16919,7 @@ packages: dev: false file:projects/communication-tiering.tgz: - resolution: {integrity: sha512-Q1r13lpo+m0m0EnpAszT68UZJrb12Sk+R9V2uDSZYzKke/DVc8cd6dgnzRo3cTJjAyJHQRrpglmnfuGU6yDAYw==, tarball: file:projects/communication-tiering.tgz} + resolution: {integrity: sha512-AZxJZSEB4dP6ZBjRryspViiNc1JsVuI5yk9Cn3Dgrs/92ajTdVlLyqWigwWPMVLqEoqljR78yDpmWvt6BHU/dQ==, tarball: file:projects/communication-tiering.tgz} name: '@rush-temp/communication-tiering' version: 0.0.0 dependencies: @@ -16964,7 +16966,7 @@ packages: dev: false file:projects/communication-toll-free-verification.tgz: - resolution: {integrity: sha512-zgK6IWYLombJaPYipv8UiOK4FA2XS5mL5JfSwAALaPDLnAC/yvkPcLS39uPLEOp0foDpIWw2AjFm0Web/z9kRA==, tarball: file:projects/communication-toll-free-verification.tgz} + resolution: {integrity: sha512-j8s/isAHw+ctJV0TEXOdAi+ool+1cmo/TeQua8ezDiysEBYxqvS5wlFY4oPwRG4UDK/RiRx9DNYRQQ2KxeXiow==, tarball: file:projects/communication-toll-free-verification.tgz} name: '@rush-temp/communication-toll-free-verification' version: 0.0.0 dependencies: @@ -17010,7 +17012,7 @@ packages: dev: false file:projects/confidential-ledger.tgz: - resolution: {integrity: sha512-S/ECzNL1lEj3jLR1eLkrKnTEznFq6mj4EplH8wadR6uoIfFn9nT8k6D6xdZ6TsRtIfWlBHkl4hV2FBkN1xLMYA==, tarball: file:projects/confidential-ledger.tgz} + resolution: {integrity: sha512-uSATx5r3i0Sxq8aR9OKFbQ19Wa7segLKDTnxCVGqHcTrorxc8GDnaA5D3eXlPeDde0bQOY6YGZQhIkgqRjEQhg==, tarball: file:projects/confidential-ledger.tgz} name: '@rush-temp/confidential-ledger' version: 0.0.0 dependencies: @@ -17040,7 +17042,7 @@ packages: dev: false file:projects/container-registry.tgz: - resolution: {integrity: sha512-0Q0cbBufJGvVBlp7DtlwYhwUjbS1Ymz0zdt5GUuABufedbZAfwJo9yOmX0dnPLlbCptrzyF6IkVg27pFfndqpg==, tarball: file:projects/container-registry.tgz} + resolution: {integrity: sha512-P78wY+Ui87WKrwbAy0djHK8vBLQ6DztKEGuEV1vlsJ5JYfiPBVQYy8qam4iqc33g+Wj1kljgf35u18pb6NJ2wg==, tarball: file:projects/container-registry.tgz} name: '@rush-temp/container-registry' version: 0.0.0 dependencies: @@ -17085,7 +17087,7 @@ packages: dev: false file:projects/core-amqp.tgz: - resolution: {integrity: sha512-IPARdIxeLFJ/uZDIjqDVFIS2y1XnDBbBUIbt1snBlGEnUn4cifEEExvFJg4huBSnFRp0yj3DEPbjgS7l6OXUow==, tarball: file:projects/core-amqp.tgz} + resolution: {integrity: sha512-UgxN5RAC5F0cXWnxLP4RT5H9EoG6NZvrHorOdSYAn/SjeEHYBEtYvc8/IiXtLjfooYGapLrLVBDcQ0eS6VwOiw==, tarball: file:projects/core-amqp.tgz} name: '@rush-temp/core-amqp' version: 0.0.0 dependencies: @@ -17131,7 +17133,7 @@ packages: dev: false file:projects/core-auth.tgz: - resolution: {integrity: sha512-ak6L9vFEPV1i7MfzsELOzDPiE+shRY5yslm0TWPrlouhbcflUzklAVOu4YRplPL9tWozGqrtypFh4JnBprJn6Q==, tarball: file:projects/core-auth.tgz} + resolution: {integrity: sha512-DijCkHJ/ZWVBr5GICB7Eh8oDu9HRqZ8dcy3LFIi8wlGuwTz2CKOJgUk4ImXzl9iUjCCFutAgK5iPv+mlM1UuOA==, tarball: file:projects/core-auth.tgz} name: '@rush-temp/core-auth' version: 0.0.0 dependencies: @@ -17159,7 +17161,7 @@ packages: dev: false file:projects/core-client-1.tgz: - resolution: {integrity: sha512-0L11xjhboRC6PPuxwZYcia6GWYsz2mtgqNDwezxYpShDC+4W3ZpzjJY+GqxiwpEXsbDQgG8i9LNQAfQ8kKspXA==, tarball: file:projects/core-client-1.tgz} + resolution: {integrity: sha512-gm0CjdytP0igZTD1VUfuGtJd+HgGH8EaKMlRyXszqmuMryqpI2a9o+aDULaKrQuvHroeD7/SYSRfrHiiBolDbA==, tarball: file:projects/core-client-1.tgz} name: '@rush-temp/core-client-1' version: 0.0.0 dependencies: @@ -17202,7 +17204,7 @@ packages: dev: false file:projects/core-client.tgz: - resolution: {integrity: sha512-iZ9/wDqBy4Pbd/048MRG7k0Jb6ZU/O1lObDVaL+J9tayvu5NFgEX5BGtaEkr5CzybywWwJjCi9vk28sZghp0cQ==, tarball: file:projects/core-client.tgz} + resolution: {integrity: sha512-BdXwkm5zJPCI3zJ2i6irA8BwoCajSS6KEJzdssnrIVSYYidEe6xdWj356julh8Fmp+CKcB31KqHQlp86tUi4Ig==, tarball: file:projects/core-client.tgz} name: '@rush-temp/core-client' version: 0.0.0 dependencies: @@ -17242,7 +17244,7 @@ packages: dev: false file:projects/core-http-compat.tgz: - resolution: {integrity: sha512-jRyZcwSlOk2Xfj/jm2sooRXpvIl3gfHW2LyMFlKReXRX2D+bKauMuxZhVLN5GBOwlBK9uoJgwh8r0mN01I+tCw==, tarball: file:projects/core-http-compat.tgz} + resolution: {integrity: sha512-JvDvih7oiDXv3v+CQXoWCGsg00RT9eN7vCt8omIYlOu8HHMKNG+eMc9rbr8lF67WLyYfgCnk3WbiXip6jgfSIw==, tarball: file:projects/core-http-compat.tgz} name: '@rush-temp/core-http-compat' version: 0.0.0 dependencies: @@ -17264,7 +17266,7 @@ packages: dev: false file:projects/core-http.tgz: - resolution: {integrity: sha512-wDkfjgE55AkTklrKIjY4yEddUAYGV87GBEhbSku/mCxUPJsUUnySUgMMyXRwIvPhm+OFv9O7j3LWQ9aI064KKg==, tarball: file:projects/core-http.tgz} + resolution: {integrity: sha512-OEORusUJ5Kcdtc4NrE2RDnn2GxDn7H/6VGjfgirwB5Z43Hk28ixWvfeQjevw28mLDFTaafkLiPaOaMEMn3XCgQ==, tarball: file:projects/core-http.tgz} name: '@rush-temp/core-http' version: 0.0.0 dependencies: @@ -17329,7 +17331,7 @@ packages: dev: false file:projects/core-lro.tgz: - resolution: {integrity: sha512-v7GGI9ixernr8jx6guOAks20K0EjawDowfsIWA32rD+q/g1Rp2O2vF0qvnBq2qgc229RU3FFlYVLilUGg+uL9w==, tarball: file:projects/core-lro.tgz} + resolution: {integrity: sha512-/uasGR5EkQQcBnKwUWUokqGN8dCTtHZaxjZ+kSVtrpItOr3g+hfMr/woxNDICfJEfETkOonF3Tgh6PMO2a//nQ==, tarball: file:projects/core-lro.tgz} name: '@rush-temp/core-lro' version: 0.0.0 dependencies: @@ -17365,7 +17367,7 @@ packages: dev: false file:projects/core-paging.tgz: - resolution: {integrity: sha512-qDZhjNGr0epW9e/ArCUcRoKz64xNevIg2veXxWuWakeIrBc5Cjx0yKHWcOLFMF5cDKypA/uDC4usvBAICFrxxA==, tarball: file:projects/core-paging.tgz} + resolution: {integrity: sha512-506ZJZYCYM/RN6LwgXtoQ4JwhjDEobr5bXOhOMTJE5tfl/cz6oer5SVuvxaogOuEQXCK9foYMdXh1+PAsDDauQ==, tarball: file:projects/core-paging.tgz} name: '@rush-temp/core-paging' version: 0.0.0 dependencies: @@ -17403,7 +17405,7 @@ packages: dev: false file:projects/core-rest-pipeline.tgz: - resolution: {integrity: sha512-LkVVId4SlQ2u6rDJGhMnOx0CEbGFynL24PvV6ooGJphop7D0PzLiseDRlumZy1hiZDCboqFVi+2Zsasd/KpjOg==, tarball: file:projects/core-rest-pipeline.tgz} + resolution: {integrity: sha512-ktgZtc9UsU1ymMUNDYTJaa12eXRQkdsx8A2mG3sd9XuIduOPiTBiCpdnG20AEOi0SZeztdT9wDJMy5Hpr5FWJg==, tarball: file:projects/core-rest-pipeline.tgz} name: '@rush-temp/core-rest-pipeline' version: 0.0.0 dependencies: @@ -17454,7 +17456,7 @@ packages: dev: false file:projects/core-sse.tgz: - resolution: {integrity: sha512-hLg1OD8X3S/dTg98miMlSdhMML6BqVdVvwJiDu+UBsGUN7jAYIMz96D2cfu11WqmA//pTNHTkbCWFBVclstx4A==, tarball: file:projects/core-sse.tgz} + resolution: {integrity: sha512-pG9zDuwgSTxdgZ1Iz1NDB3vsjcD6arAgT5QS+m8kxRrhFZbzGSmdPZp8wITWu19yQSG7G+tpqIATZG0RyVcY0Q==, tarball: file:projects/core-sse.tgz} name: '@rush-temp/core-sse' version: 0.0.0 dependencies: @@ -17497,7 +17499,7 @@ packages: dev: false file:projects/core-tracing.tgz: - resolution: {integrity: sha512-QTroTSF9vnd6PZS7aMaieEhBD0LacU/ThBNOzHsHI/I7n7UhWor9Nt7txXqULfEqf3qiL2sA/Ku/oaB/jB4gyQ==, tarball: file:projects/core-tracing.tgz} + resolution: {integrity: sha512-Jt3yMiTLyTkbFsctiwp9q+QUPFDmRS5B7XmHofeeg0MghbUBfE0hpQkE3jTN4FRRH1AhZTeDy1AwpIJqy+n+ZA==, tarball: file:projects/core-tracing.tgz} name: '@rush-temp/core-tracing' version: 0.0.0 dependencies: @@ -17538,7 +17540,7 @@ packages: dev: false file:projects/core-util.tgz: - resolution: {integrity: sha512-t+7fjMQLVoAFcnvdOq5p7MEXY49HL2lZJFe9jZSGfqiCusXv352kdPxZINGKc1nuLklkUyWpVOtZ+t17pRxL5g==, tarball: file:projects/core-util.tgz} + resolution: {integrity: sha512-7ze3xvZvXkgnne8cUlqr2IiX5N9HiKoClPV5dyY0NbvZodDYJ2jLmZfqv2L5BK1tpF8Ghcd5Og/a9xW3V7262A==, tarball: file:projects/core-util.tgz} name: '@rush-temp/core-util' version: 0.0.0 dependencies: @@ -17582,7 +17584,7 @@ packages: dev: false file:projects/core-xml.tgz: - resolution: {integrity: sha512-ZDuwwmEMOEDDitLd3KHdg70vKHUCMzJMuB4ObX1nL5iyiPHEUiQV3wjqUxynZlIvdIYhoImILBZ7KG/YC/LgDQ==, tarball: file:projects/core-xml.tgz} + resolution: {integrity: sha512-7tN+R0e+2DvFCF6mCO4QlomFTtFA7c8cGL8ky0QL0qnNmtYlZ5xhTINg5GEpC4NvT/5A7SI57koKBtF/uoPZ3A==, tarball: file:projects/core-xml.tgz} name: '@rush-temp/core-xml' version: 0.0.0 dependencies: @@ -17624,7 +17626,7 @@ packages: dev: false file:projects/cosmos.tgz: - resolution: {integrity: sha512-8UKR8Cv2XegTS4gxf5ln38kIhb5+kHbQCGG0NssBWO6Tb5YGm6b5pMOlyjl6RdHntfjgaTEYsqRhkyHkEOZWGQ==, tarball: file:projects/cosmos.tgz} + resolution: {integrity: sha512-4VUuqiq/npBp4obPUKbOubNGHdKZww3TkxM+KyBz6q9pqB1kWcbShEutbA1ZDSROWIZp73W1Q2GEqxVVrmuhrg==, tarball: file:projects/cosmos.tgz} name: '@rush-temp/cosmos' version: 0.0.0 dependencies: @@ -17674,7 +17676,7 @@ packages: dev: false file:projects/data-tables.tgz: - resolution: {integrity: sha512-CtE/x7YFKZgTeDWeMxu/Eo1PAiQC55rJY0DB+hwziCQ+se7hmoGz1x65lIsa+VMlSBmtSRPaPrrL52PlsxRjxg==, tarball: file:projects/data-tables.tgz} + resolution: {integrity: sha512-Srke8YTXomS/dy0cNkEoUThgKv90YnMws7ep0+Zr/mRB3iwzRDnLHsAhQtR/nOklxqJR2yd6fo5u06lH7ty4Bw==, tarball: file:projects/data-tables.tgz} name: '@rush-temp/data-tables' version: 0.0.0 dependencies: @@ -17722,7 +17724,7 @@ packages: dev: false file:projects/defender-easm.tgz: - resolution: {integrity: sha512-vXcTKAxSzXpHciHGjyqv68a2Wv5HZo9RPztPqyDu9xCA7GIXoNoH2fImG/B8FcxAQKYr7ErYS5Fk1dGZdgKV+g==, tarball: file:projects/defender-easm.tgz} + resolution: {integrity: sha512-TuuagrwtTOgBl8BDMhTNk+DZ9KAzVFRBIWGPK5ee+pXy6CXCpk4eVLvpg0vfPv0sxoE0e6FhP9rlsx+KjBXZkw==, tarball: file:projects/defender-easm.tgz} name: '@rush-temp/defender-easm' version: 0.0.0 dependencies: @@ -17768,11 +17770,11 @@ packages: dev: false file:projects/dev-tool.tgz: - resolution: {integrity: sha512-xDH2qAsjOVswdGEu06HPZyvNaC8Myk2d9H83uSe3IZqUSl9PIEg2xb4E4iKk2ABi4wljeMtuF+qJGpRLHZaQGw==, tarball: file:projects/dev-tool.tgz} + resolution: {integrity: sha512-ALC43MMXBB8ivMmmaRRR5CcmpGdnB7nsIuN0HrvNOQQYo/q+8FJv+qaWQi90VQNJXBTU5meody1z+fnLEWl1sA==, tarball: file:projects/dev-tool.tgz} name: '@rush-temp/dev-tool' version: 0.0.0 dependencies: - '@_ts/max': /typescript@5.3.2 + '@_ts/max': /typescript@5.3.3 '@_ts/min': /typescript@4.2.4 '@microsoft/api-extractor': 7.38.3(@types/node@18.18.9) '@rollup/plugin-commonjs': 25.0.7(rollup@3.29.4) @@ -17830,7 +17832,7 @@ packages: dev: false file:projects/developer-devcenter.tgz: - resolution: {integrity: sha512-LO+9g7FmFdJyiMW0NBhegyorrxT98UUnj4ItG3SS49YNpajjaH2sAs707JMHJN4v8oQu2UGKy+OwZwNXXGNbNQ==, tarball: file:projects/developer-devcenter.tgz} + resolution: {integrity: sha512-W5jNcBFqVdOLjNerZROXJyFpfPPVAu0Wn+OfP+oY3rfcBr4UZ64u+QKkS+Qzn6lygAm3ZIkLQ2oEdzcEOJbyzw==, tarball: file:projects/developer-devcenter.tgz} name: '@rush-temp/developer-devcenter' version: 0.0.0 dependencies: @@ -17875,7 +17877,7 @@ packages: dev: false file:projects/digital-twins-core.tgz: - resolution: {integrity: sha512-Bevf/qfRcF+/UVkHFEWNCGU8RhEdvRob/B6QZsW/dMfwfYK98LCwJiYK77ec6N+Z4b+f1Ia4t3zlqTI1ChIv3A==, tarball: file:projects/digital-twins-core.tgz} + resolution: {integrity: sha512-fz31jgn73G038e1Joyv2HbK9oMTO7eZauqEFRHDrQTdU0j85ZliMwtb5Bej4DZrNivCCVR6+zPCXEjfSQqwDUw==, tarball: file:projects/digital-twins-core.tgz} name: '@rush-temp/digital-twins-core' version: 0.0.0 dependencies: @@ -17922,7 +17924,7 @@ packages: dev: false file:projects/eslint-plugin-azure-sdk-helper.tgz: - resolution: {integrity: sha512-muV+FsQUif3kC8nhfKcW6UkKTO/2Va3IOiEzqnahLfKWwblauDluVM/Sm76l8N0fDzuNBiSMhdbhNQzRH5oWxQ==, tarball: file:projects/eslint-plugin-azure-sdk-helper.tgz} + resolution: {integrity: sha512-TGjqEOOg7UELPSoFLSyRji7PkxoXqRTHm6ptlShunTIhODTohRL0BLTuhS3RYXEF8Kr6hP9bKx+H3AwcNxdwYQ==, tarball: file:projects/eslint-plugin-azure-sdk-helper.tgz} name: '@rush-temp/eslint-plugin-azure-sdk-helper' version: 0.0.0 dependencies: @@ -17941,7 +17943,7 @@ packages: dev: false file:projects/eslint-plugin-azure-sdk.tgz: - resolution: {integrity: sha512-8k7makhN1CdGzHgZ+mBEH1Bg4i0NSQImsHftGnDkLMOuQ0VrRu+R+Jqv8Fq3htFGvd0K70sfj0LjXBaeJ8ogbQ==, tarball: file:projects/eslint-plugin-azure-sdk.tgz} + resolution: {integrity: sha512-dJH33V6Elz/qL4+23stM1mPk/+nHDXUROraQ+grGiR3oCqnxyv4lA5YzAFe6ioSeGwl/qH9JmSwc1sf4p8XsJg==, tarball: file:projects/eslint-plugin-azure-sdk.tgz} name: '@rush-temp/eslint-plugin-azure-sdk' version: 0.0.0 dependencies: @@ -17980,7 +17982,7 @@ packages: dev: false file:projects/event-hubs.tgz: - resolution: {integrity: sha512-4VZwDZrMpAu1Y+ikbixGquYyHoD2bvGb3u6DekH9Fua7Kg7jr56GIHEqmQ/XflIKpHvVfIl5xvLHv8P02KUGWw==, tarball: file:projects/event-hubs.tgz} + resolution: {integrity: sha512-Z+/Ql5Vfc1o9LSkQLSORVl9gF6de7cLzF5U+BiN5tuDFxbCgWYtPuNo/x/paiepBalrc46qHsOA0ISA0IHcSuA==, tarball: file:projects/event-hubs.tgz} name: '@rush-temp/event-hubs' version: 0.0.0 dependencies: @@ -18043,7 +18045,7 @@ packages: dev: false file:projects/eventgrid.tgz: - resolution: {integrity: sha512-4VNGwbYND1htdLuQn3HmLQreYIqzo2DNLhyh8ElEcAD9zSdi2pXF26aaI70JwamzkJ2QJZ7imr9+9AI+D3RCUQ==, tarball: file:projects/eventgrid.tgz} + resolution: {integrity: sha512-JlgeI+DEAwRKI+AqpKOuoIw7rpjH7QcQH/0qosFMHj9WTod8yQtFfEJj4ghrpkrMq3rNk6YB398CoddZwFUFVw==, tarball: file:projects/eventgrid.tgz} name: '@rush-temp/eventgrid' version: 0.0.0 dependencies: @@ -18090,7 +18092,7 @@ packages: dev: false file:projects/eventhubs-checkpointstore-blob.tgz: - resolution: {integrity: sha512-SSIOu+KChoiNwvAmo7YWkhj1mYlJIIin7uNSQz7cIAk6lyhKS4KlpZYa/2oWI4DY5tJy3IXpoXueJLNN6yvGzg==, tarball: file:projects/eventhubs-checkpointstore-blob.tgz} + resolution: {integrity: sha512-gnKgpu8r3nk7sxdapO/2DotXA3WxeJSxWLPuHR3EgV6LjKfbjMbccl1eRsf/+awY6DWqpjtB7aamkRjYNb55cg==, tarball: file:projects/eventhubs-checkpointstore-blob.tgz} name: '@rush-temp/eventhubs-checkpointstore-blob' version: 0.0.0 dependencies: @@ -18141,7 +18143,7 @@ packages: dev: false file:projects/eventhubs-checkpointstore-table.tgz: - resolution: {integrity: sha512-yA5/Av75sw2II1c9VebWPTz/IO6MDkzR36Qg9nrr+clnmdR0xN48J0J5Pe7rQuFPeMBmhtYiGIsww312hZodHA==, tarball: file:projects/eventhubs-checkpointstore-table.tgz} + resolution: {integrity: sha512-BYMXef4M9Kt0FnItW5uk7floeNPfXrYVQvMqV47sjl6DDUykplY8zq9PTMlPdTm8vTcdb5qGDzlfE2OGVQftwA==, tarball: file:projects/eventhubs-checkpointstore-table.tgz} name: '@rush-temp/eventhubs-checkpointstore-table' version: 0.0.0 dependencies: @@ -18189,7 +18191,7 @@ packages: dev: false file:projects/functions-authentication-events.tgz: - resolution: {integrity: sha512-Y7188W0cqgWSVJDqZdfx0abAMdhelI5oCfdbDhvilDWEDQcCvcwwYmC96Cys4SFa5U7b1DJxLwUAmlVR5taxBg==, tarball: file:projects/functions-authentication-events.tgz} + resolution: {integrity: sha512-Q9xfYeq5GCiMEf/RvHl+lAwIZkgoQVX1Cg0KmfkMHUbyO8v9xgxnk2gcrAu0+tWQ9tkc63Yvfb0x3i/TWRZXKQ==, tarball: file:projects/functions-authentication-events.tgz} name: '@rush-temp/functions-authentication-events' version: 0.0.0 dependencies: @@ -18236,7 +18238,7 @@ packages: dev: false file:projects/health-insights-cancerprofiling.tgz: - resolution: {integrity: sha512-AU5OdUSPP5Qf5herCIRqiBEsSi4LXzej32WVBBTuiNXNZ8h1ek6k+7/TyOIFuhlNoz+oRMD6eBSlTwr42M8p7g==, tarball: file:projects/health-insights-cancerprofiling.tgz} + resolution: {integrity: sha512-rm+agZ3GRmrK1qgKkY0+pGxyXK1WmM+cH3D3p3KBNcmBySmPViRgr+2fyYpYfoUwQWkusadwed04kNMfiNpiRQ==, tarball: file:projects/health-insights-cancerprofiling.tgz} name: '@rush-temp/health-insights-cancerprofiling' version: 0.0.0 dependencies: @@ -18281,7 +18283,7 @@ packages: dev: false file:projects/health-insights-clinicalmatching.tgz: - resolution: {integrity: sha512-6zrbY04mC2CND0/M5DbEbJtKSdiQ4yvWVJSGAzR1Xd+mfMYzk+lwC3Z7bAroNaR+9XFDI880d1QWpamwXSzP8g==, tarball: file:projects/health-insights-clinicalmatching.tgz} + resolution: {integrity: sha512-XKPTMqJqUwRchxw/M+rSgcmNEnNazX8FJ35sPpvUdMR4mZtpV7CSzPOGap4dG+beT2/8AyQ9NwQqxTiGkkhn2A==, tarball: file:projects/health-insights-clinicalmatching.tgz} name: '@rush-temp/health-insights-clinicalmatching' version: 0.0.0 dependencies: @@ -18326,7 +18328,7 @@ packages: dev: false file:projects/identity-broker.tgz: - resolution: {integrity: sha512-xB1i1nsNK5LcBT8lE8Uzj9XCiuod2oCnnaZrmmOGOiY/Yjqjog9bLPbcQVswcFii6FP2sHntnfxYFqRFNBT2Dg==, tarball: file:projects/identity-broker.tgz} + resolution: {integrity: sha512-z4Gi4Tj08Z607swoEZFcfmfjmRP0V+smVNDCpBl5eI0FWiCg9W5A+Q5cyLq3SRf9zcW9u9Ux0pahKqvbzofGhQ==, tarball: file:projects/identity-broker.tgz} name: '@rush-temp/identity-broker' version: 0.0.0 dependencies: @@ -18356,7 +18358,7 @@ packages: dev: false file:projects/identity-cache-persistence.tgz: - resolution: {integrity: sha512-41UuqHHdudEuNwVtppFRxztKnZZzmDoDL2tza3QZfxTQwabkIU19zzszxpv0lliEwnOvhgrR2T3oo5A8rEUS/g==, tarball: file:projects/identity-cache-persistence.tgz} + resolution: {integrity: sha512-A4zErN0vwUxt1YktTBByWc2cVrAINnuWXZHn3twJYrrED9wYFpSHUg6fH+mUbHuUPuBbaNGo9KeM0hIp9raLlg==, tarball: file:projects/identity-cache-persistence.tgz} name: '@rush-temp/identity-cache-persistence' version: 0.0.0 dependencies: @@ -18393,7 +18395,7 @@ packages: dev: false file:projects/identity-vscode.tgz: - resolution: {integrity: sha512-4LPENfwZf4tHGZw+eE3XeZKk5b3udsl2TV5Yuwgbn2L7aHE6V5m1uMqqcN4AsflCs0V6BKN8Z0yOl1svOXHcXg==, tarball: file:projects/identity-vscode.tgz} + resolution: {integrity: sha512-I8SZYb5xbTEdOiHPTZtsNCtFw8qRrfoz2dcBVwtgwjHhn16sAORlefjP+nunLc4qH3IWuov59Z6rPAqJvYykPA==, tarball: file:projects/identity-vscode.tgz} name: '@rush-temp/identity-vscode' version: 0.0.0 dependencies: @@ -18430,7 +18432,7 @@ packages: dev: false file:projects/identity.tgz: - resolution: {integrity: sha512-MuCTGxlBHAgRG60wMaIRdu0iQQURgMoojNknvE8VGefA1OvqzRH51LNodDEkUKelUPUXVFgqoA8aZBmSRmBm8w==, tarball: file:projects/identity.tgz} + resolution: {integrity: sha512-Sl2txB36NCJCNx9Rl1jx+38dhQ+Ctr7MtRpZMwQf0nsLRRo/eiAULt1qBecumXSOZ3LHjwIUocxJDTY2e9/PJg==, tarball: file:projects/identity.tgz} name: '@rush-temp/identity' version: 0.0.0 dependencies: @@ -18489,7 +18491,7 @@ packages: dev: false file:projects/iot-device-update.tgz: - resolution: {integrity: sha512-5oO9dieSrWCX5+U1dKkSlqs41QCZkSVR3EguVZrgM8AKDpECvhknGOsE55N1kVWlthyuzBKzb2RHUeLBDgh/IQ==, tarball: file:projects/iot-device-update.tgz} + resolution: {integrity: sha512-ru0uvjhXhFPlvEjgTSCZVdzC3p1LfnWmE34ZqjVLthnKVvGUhh3C/Ol9OgfH4s+QhVVi2DS25OYjFZIVjj0mqA==, tarball: file:projects/iot-device-update.tgz} name: '@rush-temp/iot-device-update' version: 0.0.0 dependencies: @@ -18536,7 +18538,7 @@ packages: dev: false file:projects/iot-modelsrepository.tgz: - resolution: {integrity: sha512-xJoAjNC8HCKswbIJPXIgxgciWySyAEKeUZtXNU5UT6gLuazWtEKIaJv69JpBAwErPTnK4YqXWW6SM1Q1bhVIYg==, tarball: file:projects/iot-modelsrepository.tgz} + resolution: {integrity: sha512-/pz83XDxexRtKdXUUYiUKDdjBkolDV5fLHsKvOr7PZ21hg8oe07DUyAqMT4DThFRZee8YOoMSg61pB2wSLsCvg==, tarball: file:projects/iot-modelsrepository.tgz} name: '@rush-temp/iot-modelsrepository' version: 0.0.0 dependencies: @@ -18582,7 +18584,7 @@ packages: dev: false file:projects/keyvault-admin.tgz: - resolution: {integrity: sha512-uImTLq3pQin4YUdBbuEl33djqJsU4Fz/rn1PuKjDRF0KS+F8j7UgDHFEQbCVSDLGirZ3kbBIGcZJ40Bl1RuoZQ==, tarball: file:projects/keyvault-admin.tgz} + resolution: {integrity: sha512-sqeHL9LMgt6/ohZNLS2Ux+KXtbTOitJhR4WLth4hO3p1p0SIXayK/DGL9Zos76F469yElkXzymISD/BUnQMKqg==, tarball: file:projects/keyvault-admin.tgz} name: '@rush-temp/keyvault-admin' version: 0.0.0 dependencies: @@ -18615,7 +18617,7 @@ packages: dev: false file:projects/keyvault-certificates.tgz: - resolution: {integrity: sha512-y37CQDm+DQUM0iblUIZpw4F+uf9S2RejFTNfAZtMgZJZN4JVQ8G4usv2T89l7Zssy4btog3y5GUDqTx9xBkvlg==, tarball: file:projects/keyvault-certificates.tgz} + resolution: {integrity: sha512-FhVsiyb9ooOT2X01PyaXTXb93sNlOrjxJ5EmaU3NcgQZNET5C8cp1PwQebLvjhItrnwEfkaLuI+aXLlYtbPVag==, tarball: file:projects/keyvault-certificates.tgz} name: '@rush-temp/keyvault-certificates' version: 0.0.0 dependencies: @@ -18662,7 +18664,7 @@ packages: dev: false file:projects/keyvault-common.tgz: - resolution: {integrity: sha512-S3JWrHrFDif8cnoN1LaaeLdvbgQSFy9TOcUcyPEpbtyXKMutyTU07Lfa8pG4mGsYDMwm6Kmf/sX72kE8is4eLQ==, tarball: file:projects/keyvault-common.tgz} + resolution: {integrity: sha512-qq4I/bwY2XLuTxBbovGxWY2AgRibCC4BCZ4A8l8mlJpr1qP5aNRLJMB44P8Og6xXyt8REE5mn/aVv96J6+WLvg==, tarball: file:projects/keyvault-common.tgz} name: '@rush-temp/keyvault-common' version: 0.0.0 dependencies: @@ -18692,7 +18694,7 @@ packages: dev: false file:projects/keyvault-keys.tgz: - resolution: {integrity: sha512-4uEId2A+0Itq9FeDdDZJEK5lg+tE6B8wRumy6LExnjwW/rW7PtghnV85HBU50NtBX1q6+eOox3t5eftv1F3TBA==, tarball: file:projects/keyvault-keys.tgz} + resolution: {integrity: sha512-0FAlQcSZIvGpruzXp4v9+qFstPoSQ7gCDgEe8TjtcNYfuL8kgna3RyBYEXobllC0gBqi0vbJXDt2RDPE9sK8Gw==, tarball: file:projects/keyvault-keys.tgz} name: '@rush-temp/keyvault-keys' version: 0.0.0 dependencies: @@ -18739,7 +18741,7 @@ packages: dev: false file:projects/keyvault-secrets.tgz: - resolution: {integrity: sha512-HqAOOS/i7JObReNKKT5tzsIX8e+moxLeIHn6a/dxNKk9gFRB8MAZpVB2LfRcilgKbEi3u4oADYw8+n60656cMA==, tarball: file:projects/keyvault-secrets.tgz} + resolution: {integrity: sha512-b5aJ8EzG1nxH8vFWJgLMwviT4mmrcZqmsUXmi91rqqjevThohPFpBs7M8Yptf8h8XPdLB1HYgTD12VGKCamOxQ==, tarball: file:projects/keyvault-secrets.tgz} name: '@rush-temp/keyvault-secrets' version: 0.0.0 dependencies: @@ -18783,7 +18785,7 @@ packages: dev: false file:projects/load-testing.tgz: - resolution: {integrity: sha512-z3wVbvCsvjoxVjf13yvmTKUGTRZmO7RF67ZDu3pD4BftlUY0pAOLEPTmWzVzt62vMSdlMqLyIJQjANTX1MPgvw==, tarball: file:projects/load-testing.tgz} + resolution: {integrity: sha512-cvd/f2KSA8cePER7o59LQFfBCnqBlFZYJTuEMPUq8AGwUwcKFA+aeiuhtGj9yUaaU5RsnFdMtMWoW9ixb9vz3g==, tarball: file:projects/load-testing.tgz} name: '@rush-temp/load-testing' version: 0.0.0 dependencies: @@ -18830,7 +18832,7 @@ packages: dev: false file:projects/logger.tgz: - resolution: {integrity: sha512-YMELQpBnuy2KyaF57OKXUBWFXaIKNB9tR4B7iX2F75LNqI8xrsS6Op+1098ivNoj0Wo98xd3JE+QR/CrElAjwg==, tarball: file:projects/logger.tgz} + resolution: {integrity: sha512-6UK6y9CDxwkGS1dGzXaAA/tBqdHBq15oHy5V8rku/G9DMfkZqoVrU29V2b3XCp+KSqYij/TtXWVcoBK2nRsd7g==, tarball: file:projects/logger.tgz} name: '@rush-temp/logger' version: 0.0.0 dependencies: @@ -18873,7 +18875,7 @@ packages: dev: false file:projects/maps-common.tgz: - resolution: {integrity: sha512-SeoaXpeq2dt1/zC/jhW0rMUlTWb4JZRFSXiLkv6gSxyPLOPfjdxsSlSGeD1BH7fRBjyoWIYdkss05eFbPwpagg==, tarball: file:projects/maps-common.tgz} + resolution: {integrity: sha512-piHdQ3ya4Y/73C1B1VoYpDFa+hC5yBSJj2HkZ5Oggk7MNov4CxQVFjw1WWGKr+L4yRUZROUE895ampYXvmHYkg==, tarball: file:projects/maps-common.tgz} name: '@rush-temp/maps-common' version: 0.0.0 dependencies: @@ -18892,7 +18894,7 @@ packages: dev: false file:projects/maps-geolocation.tgz: - resolution: {integrity: sha512-NrxF6ALtZbcsoseAxKBArbC8zIEdcApvr0kWUCxa1EPwnKgZGZDrCEk9KUXhIL0FyessV7BbPMZyEKbNSJQHWg==, tarball: file:projects/maps-geolocation.tgz} + resolution: {integrity: sha512-yX1St/LtPGAhuD3az1ZH3U4xEhP1DhHkmYzwXy1xMhMkICzi40EO/9vh8CP36whTuhu1Lo2AbLwuAADnvuYb9w==, tarball: file:projects/maps-geolocation.tgz} name: '@rush-temp/maps-geolocation' version: 0.0.0 dependencies: @@ -18938,7 +18940,7 @@ packages: dev: false file:projects/maps-render.tgz: - resolution: {integrity: sha512-HKBkbzZQapjtzWK56PEGME6roIazzv5IDcTUU9pMi8Qml0pZdC3GQ/+Y2HHKxemI9b9RTOMsCdsvdiDenSEL6A==, tarball: file:projects/maps-render.tgz} + resolution: {integrity: sha512-vM7XZGL0yj7tV7wAZmIKQcAYq3vdHNmlarpmIF/z7HzoT9Jev2U4OpRhHq9CTfCevNdAg4cBjs45HXbDyhC7cg==, tarball: file:projects/maps-render.tgz} name: '@rush-temp/maps-render' version: 0.0.0 dependencies: @@ -18984,7 +18986,7 @@ packages: dev: false file:projects/maps-route.tgz: - resolution: {integrity: sha512-yUp0/Z7O0tbwuSbwIhk8DH1C1IsVraKOf1k9hmq0L/LJY9k6uNTB797DYp/qq6fseJr3gzaAdEiS9/p/iKRqFg==, tarball: file:projects/maps-route.tgz} + resolution: {integrity: sha512-RKOAYeKgGEXT5yYvHiY3RrnTDYf5+Qk/dgWAt4zKkZrYDq03+uL8TD36W7gAiipmSI2+zZhbOmog19aziDrsrg==, tarball: file:projects/maps-route.tgz} name: '@rush-temp/maps-route' version: 0.0.0 dependencies: @@ -19030,7 +19032,7 @@ packages: dev: false file:projects/maps-search.tgz: - resolution: {integrity: sha512-rQjWla5iqC2+spBVto7uurlHatu/DLuZ87aN78ipQhneziIVkPXxrFBZik8+JhAepgBWTb/O5JodYHF6LZqtJQ==, tarball: file:projects/maps-search.tgz} + resolution: {integrity: sha512-G9vVngJUJKX0jtJKh+VAd4Juhr+i/yg3R16O0VjV4wQvqyDZTJ4cXbd9HgZ0DJ6fzJUpgLTJufAS6x9SxAih1w==, tarball: file:projects/maps-search.tgz} name: '@rush-temp/maps-search' version: 0.0.0 dependencies: @@ -19076,7 +19078,7 @@ packages: dev: false file:projects/mixed-reality-authentication.tgz: - resolution: {integrity: sha512-Ewp03jxmkQL3vpEBcwlzMqrcKqlAW9yJmWyEzckeWUoTO6wcDJURw12dtFfTZ0CEfoJCI0xg7yEHW3UvyOeFnA==, tarball: file:projects/mixed-reality-authentication.tgz} + resolution: {integrity: sha512-+pKxVpu0zi/kmp5lRFs0YNpt06JR+lsHjKt0AejWvcyYmRSCn1l/KF1E/dNwoOJO0OFaCZd5nbtfa8msh7cfIQ==, tarball: file:projects/mixed-reality-authentication.tgz} name: '@rush-temp/mixed-reality-authentication' version: 0.0.0 dependencies: @@ -19120,7 +19122,7 @@ packages: dev: false file:projects/mixed-reality-remote-rendering.tgz: - resolution: {integrity: sha512-FdyrkzFJYVEg+W/qjMc+H7e+E0sbq47YO/HbQLWkcdyER3WgFYX64q2owL/eh1pVkq7uOSHZPhwW0vXlqicEMA==, tarball: file:projects/mixed-reality-remote-rendering.tgz} + resolution: {integrity: sha512-S5mj/yQzBnqzbFq7FRJBpkoQO9Galm8T0WCNSs/6dNoCXkY7S2/3Gamdeb/F2MYiDGXQgl1P4Qej4cFeGYn0tA==, tarball: file:projects/mixed-reality-remote-rendering.tgz} name: '@rush-temp/mixed-reality-remote-rendering' version: 0.0.0 dependencies: @@ -19168,7 +19170,7 @@ packages: dev: false file:projects/mock-hub.tgz: - resolution: {integrity: sha512-jc5AkUB2PPWZAFy4qszwG81q5J5THbkJ4xxhJFDptFxP2DUIvD8fD4XSOsbdT74ZYK4UL0wSBvW4VCrGriK8qA==, tarball: file:projects/mock-hub.tgz} + resolution: {integrity: sha512-0AzjVYdEPIkAebZrkiz/T0dMO4f6lNY3qT7vVUCUQpknXWKWHFFxtJXeDBN+Q+ld6GaIYVAa7xphp/0SClcGig==, tarball: file:projects/mock-hub.tgz} name: '@rush-temp/mock-hub' version: 0.0.0 dependencies: @@ -19188,7 +19190,7 @@ packages: dev: false file:projects/monitor-ingestion.tgz: - resolution: {integrity: sha512-lgUZ8Futs8Zfy1+eXJVMj9+pd5frkeKgBR/DhUJza0ozGKDxXTUBuM95668WKkbnamILNrfGzre/k4yQZBEmMg==, tarball: file:projects/monitor-ingestion.tgz} + resolution: {integrity: sha512-6WoQAvFwL+yeqXPYa41BR6K9ZuT2wMKkrwl1q3vW/ndFOB/SYgM+GnYWUKCNiTN/WGmvsZbxUrWjygqLDVSk+w==, tarball: file:projects/monitor-ingestion.tgz} name: '@rush-temp/monitor-ingestion' version: 0.0.0 dependencies: @@ -19238,7 +19240,7 @@ packages: dev: false file:projects/monitor-opentelemetry-exporter.tgz: - resolution: {integrity: sha512-FGszKi9uEyS9W6kUbw3iCPcNsHCHSG8IrfzRnQGm+JiNntU/E2VMaMhDyj8kX6kAmyyYsvFkFPQ0coM4zPJQAg==, tarball: file:projects/monitor-opentelemetry-exporter.tgz} + resolution: {integrity: sha512-SdqvvFMi3xwm7UBoehJfdJ6bnnsQs6H6iBeFctfANjHCdModedU9yAt9BcC1jDf3uV5t/8AfUR7C3IydJRXCMw==, tarball: file:projects/monitor-opentelemetry-exporter.tgz} name: '@rush-temp/monitor-opentelemetry-exporter' version: 0.0.0 dependencies: @@ -19277,7 +19279,7 @@ packages: dev: false file:projects/monitor-opentelemetry.tgz: - resolution: {integrity: sha512-TwGHMFQOJLzRleonVHwOXYppgE9K2yR2pRPxGmp++llsdvsaLciRZ0kvTRr/vkVDxXSUyGV2/lrulpTfpfVLnA==, tarball: file:projects/monitor-opentelemetry.tgz} + resolution: {integrity: sha512-Cz+Dq6tC0dT2i2GDfR2XiorB2dZeed5rypxcS8b1TeHIw3ICGk44UbIXYtoAob5US7jh8j4lvOmzifI+JFy8Iw==, tarball: file:projects/monitor-opentelemetry.tgz} name: '@rush-temp/monitor-opentelemetry' version: 0.0.0 dependencies: @@ -19324,7 +19326,7 @@ packages: dev: false file:projects/monitor-query.tgz: - resolution: {integrity: sha512-1aBHYTTDSjN7cbLkDYpC4GOpvoK7hKLLZWlFgglybvbDkiak++oA0m0VhZA5s6/H1cvFDLkPl7MY89hc3gnjNw==, tarball: file:projects/monitor-query.tgz} + resolution: {integrity: sha512-WqNvE429YwD6C/CF9tUrpHTsCzUhD/so6KBRhapoj9kKTWdp6BpeaPpZYirmKd8znNm/JH4SyodM5YnD3leWzA==, tarball: file:projects/monitor-query.tgz} name: '@rush-temp/monitor-query' version: 0.0.0 dependencies: @@ -19372,7 +19374,7 @@ packages: dev: false file:projects/notification-hubs.tgz: - resolution: {integrity: sha512-z2/A8lNpxYXE77kmOhmAxAEOehHra4Fvtfnlia7rNwlq+UNTlinS3FJylQQyTMOJV/ubJk/BDv8hyxFs+o1vOw==, tarball: file:projects/notification-hubs.tgz} + resolution: {integrity: sha512-RGdGRMzaHJ64/Da6BsviT76vKBFeqXK7r24sW4dFJPXV9TAXL3YV5NvEvXcUcJpnST2WuwW3o/Vk3eFfAfe9fA==, tarball: file:projects/notification-hubs.tgz} name: '@rush-temp/notification-hubs' version: 0.0.0 dependencies: @@ -19417,7 +19419,7 @@ packages: dev: false file:projects/openai.tgz: - resolution: {integrity: sha512-k2irDR1Yxhn3opTM9MZvcerr7pOLOd2iB0m571RQ/xZFAJXGRnzW8uqZG//8gZSHVPoTKDDGSJTGMdadr+4BAw==, tarball: file:projects/openai.tgz} + resolution: {integrity: sha512-+hm2mlm81E0xCtC7jt3u7Rsw8uFgLOhqkDR/ST6QcpGLFqTFBO9IJo4bNCfMQjNtkasEl2V/TkQ5Xxm9mw3NWg==, tarball: file:projects/openai.tgz} name: '@rush-temp/openai' version: 0.0.0 dependencies: @@ -19462,7 +19464,7 @@ packages: dev: false file:projects/opentelemetry-instrumentation-azure-sdk.tgz: - resolution: {integrity: sha512-gKZL7ttK2MU6WzHYV+t9gep6OQ6ZTVwYXwrCMrLuDTMmHKGuQlKW6q9G2LLqXKD3KGxkUeGHGbQxL56GbUXr/A==, tarball: file:projects/opentelemetry-instrumentation-azure-sdk.tgz} + resolution: {integrity: sha512-mSk9FO22xZFaYgUH958R8Edd8Lm1G9eH40xqOjGY9BKwdQhctTCbR3Xx32jDxt+6RI4erU2AqyIvrnyIis6GUg==, tarball: file:projects/opentelemetry-instrumentation-azure-sdk.tgz} name: '@rush-temp/opentelemetry-instrumentation-azure-sdk' version: 0.0.0 dependencies: @@ -19512,7 +19514,7 @@ packages: dev: false file:projects/perf-ai-form-recognizer.tgz: - resolution: {integrity: sha512-Or2R/yHGQcqBDlm3e+vQbXTTFW2F4TTP3RAT0pIqAwaKb9ZSTYI2knAqU554PTr+dhc+rqkQIg+e2y2WW4iVew==, tarball: file:projects/perf-ai-form-recognizer.tgz} + resolution: {integrity: sha512-U6TVsiXb7vcvgdejr04sFG/grqSIdIvVJA7DbOsypKyf1xvuPPIl3GVEZJG1Oa4pFAtzjLyT9Y5ybg8drTVpPw==, tarball: file:projects/perf-ai-form-recognizer.tgz} name: '@rush-temp/perf-ai-form-recognizer' version: 0.0.0 dependencies: @@ -19532,7 +19534,7 @@ packages: dev: false file:projects/perf-ai-language-text.tgz: - resolution: {integrity: sha512-s5yoPQIxpfAgk9R4x/XEbY+HcPFUYmwD+QQLnw8Y0XGVv9OtkLceU2fG1EFUiEix9QIgeXBKeaMp6V04w+eCkQ==, tarball: file:projects/perf-ai-language-text.tgz} + resolution: {integrity: sha512-NqSj2g2Ce7Vu2IReCReJWkt1EGhpHIgylRkeKpio6tVBz7XbKQf4uT/AtuXNkCftuIVE2u3B+l/3awqGIWshxQ==, tarball: file:projects/perf-ai-language-text.tgz} name: '@rush-temp/perf-ai-language-text' version: 0.0.0 dependencies: @@ -19552,7 +19554,7 @@ packages: dev: false file:projects/perf-ai-metrics-advisor.tgz: - resolution: {integrity: sha512-zGBajAFPIPa3nhyeX1Dr2mzaG6EjMCPl8dpvv5gUPIPl6jnhkYfBk8774m6IC9GrUyqqNoR+CP9sWmTE+1DAvA==, tarball: file:projects/perf-ai-metrics-advisor.tgz} + resolution: {integrity: sha512-RPuvtv3VQRsrBqUN7Y2nhWVKXVl7Ec5N/OV/fjOcx6u0dKqdNFkIMkccPITdEPMUad+UJx6c/O3ZVtJJAer+gw==, tarball: file:projects/perf-ai-metrics-advisor.tgz} name: '@rush-temp/perf-ai-metrics-advisor' version: 0.0.0 dependencies: @@ -19571,7 +19573,7 @@ packages: dev: false file:projects/perf-ai-text-analytics.tgz: - resolution: {integrity: sha512-vLCyCy6c9f479p0LKqhZ4MXjKAOd9ybMKCJ+ehfvXUpAvAAjXnrZ2EHaDer8Vke8gcJE9yMCuDATAEPjSbH6ng==, tarball: file:projects/perf-ai-text-analytics.tgz} + resolution: {integrity: sha512-Q8C4LBxhg7N6EYnAckkjpTZAWvdSjbtAEaUmXTImOsqgW3SImWJE/ciWL4cBe3zRVrlXJfqFv2YT/CRcxrcxZw==, tarball: file:projects/perf-ai-text-analytics.tgz} name: '@rush-temp/perf-ai-text-analytics' version: 0.0.0 dependencies: @@ -19591,7 +19593,7 @@ packages: dev: false file:projects/perf-app-configuration.tgz: - resolution: {integrity: sha512-0FRVhJOgqeR+0EIQNDjvhOKjOP4fYeMJiToPAsL8hfmM6JoIvXQAF9BR7fR7jokRyXxYVuCiKWE8OenlSCTWQQ==, tarball: file:projects/perf-app-configuration.tgz} + resolution: {integrity: sha512-LjFTZPED1vx1D//gtnkCpfoEfMOkoXh8OFDFEss8AjzDJ9mVIbSt6gwLkrrKy3yYauofvu0/rBoUbYnc47JaEQ==, tarball: file:projects/perf-app-configuration.tgz} name: '@rush-temp/perf-app-configuration' version: 0.0.0 dependencies: @@ -19613,7 +19615,7 @@ packages: dev: false file:projects/perf-container-registry.tgz: - resolution: {integrity: sha512-L0nSQOyA+WVwwkLnjeUMx80ad0IvPyGHOgSldeZhtpCp6YptVfgZ33GT1BOwtj4ZgYrmVz7mUhbxgfCkKdAAug==, tarball: file:projects/perf-container-registry.tgz} + resolution: {integrity: sha512-5t124d9vVt0N+SL8YZPsrBhRD90QZQgIkudg4GKRunTIhJWTpsu2IO8eiyIeChv7g429WqMnMW7k2ZMs+qmHWw==, tarball: file:projects/perf-container-registry.tgz} name: '@rush-temp/perf-container-registry' version: 0.0.0 dependencies: @@ -19632,7 +19634,7 @@ packages: dev: false file:projects/perf-core-rest-pipeline.tgz: - resolution: {integrity: sha512-YmpnkSB9PbsOTAYMLstsLlBfs0AHXz+nqAWbBm3JgeRtUUmAU79e7a4LFuATpeQMBf019LspbPGkE+tyPykhVQ==, tarball: file:projects/perf-core-rest-pipeline.tgz} + resolution: {integrity: sha512-0RiWSctduT29aiUC1zf0hFtirnX/BuRJyaWmTH+vEv4TzigUcAI7pmLEfcmm6afg6WeNriSLqYH1THhQfXuVUw==, tarball: file:projects/perf-core-rest-pipeline.tgz} name: '@rush-temp/perf-core-rest-pipeline' version: 0.0.0 dependencies: @@ -19656,7 +19658,7 @@ packages: dev: false file:projects/perf-data-tables.tgz: - resolution: {integrity: sha512-k9k+WP9yY0rjPGpkvUadlRRKZg+/PgyoWGk/EqPMXRf1qOvw1zWMlVwjAwDy09fVkocKR0j2iEbO4U+nmbz4pg==, tarball: file:projects/perf-data-tables.tgz} + resolution: {integrity: sha512-4mM/JDYRRuuDDjZtEg3rBioWuqOquXG70wcTTO6AdfbYY8ARjurpG93HkAto1Fj6O+e6Jn2ZBpwI1qgJJ2BDEg==, tarball: file:projects/perf-data-tables.tgz} name: '@rush-temp/perf-data-tables' version: 0.0.0 dependencies: @@ -19677,7 +19679,7 @@ packages: dev: false file:projects/perf-event-hubs.tgz: - resolution: {integrity: sha512-TOU0pZ0hXxny38VxxvQI54/ogtYlytOtv1Ji695lKv+T/cTfhZ7U0zojU2E8iX+vkWaJH+NBaRWy+lTBG+nUzg==, tarball: file:projects/perf-event-hubs.tgz} + resolution: {integrity: sha512-lt3tzCKLbGRAojGlNqCg2OWriEs/zuOLSZ6CBamAk5E+sWXA3RESHNkvXElBzVNdWvz+1JE72oKc4buxDhRYYg==, tarball: file:projects/perf-event-hubs.tgz} name: '@rush-temp/perf-event-hubs' version: 0.0.0 dependencies: @@ -19699,7 +19701,7 @@ packages: dev: false file:projects/perf-eventgrid.tgz: - resolution: {integrity: sha512-lx4inBtuJqg2EdBNQD6+2xTCc43BdUmrl1ZGe8FKHqtO8iqRP197bT33gk/vSjSxicFI765E8x1LT01QBRURFw==, tarball: file:projects/perf-eventgrid.tgz} + resolution: {integrity: sha512-CspqxkKDhbIsF9oLIpgI7cBUjdZ5fZV8tbg29OWGHsg3U6s6TgRxgLp3IqjcUOxAFwNPI+YDY268jDMhfdONhg==, tarball: file:projects/perf-eventgrid.tgz} name: '@rush-temp/perf-eventgrid' version: 0.0.0 dependencies: @@ -19718,7 +19720,7 @@ packages: dev: false file:projects/perf-identity.tgz: - resolution: {integrity: sha512-JyjEYpq2qx53p/wi/DUeTMPfh3re017LdADgzm5oAd6/MV22QwEHP93Q2WYnXQ/HrvjWb3BB7TBZnSQ7GxGa2w==, tarball: file:projects/perf-identity.tgz} + resolution: {integrity: sha512-x1H+8ipkBaSfFzOopUTcnnXVKuwvYxvIxdFyCp2TBfj2dJsGVAFqC4PsYdMKmbNNurdRK8t3q3uv6kASsz3A6g==, tarball: file:projects/perf-identity.tgz} name: '@rush-temp/perf-identity' version: 0.0.0 dependencies: @@ -19739,7 +19741,7 @@ packages: dev: false file:projects/perf-keyvault-certificates.tgz: - resolution: {integrity: sha512-QTyKG+VK6rw+JICsfnSQ4WkjrCA8jSr03xpLyyqm4c/C2HcUuw5iO5H41jzeczIkAPmGXhMsYyA5YnRXTw0CQg==, tarball: file:projects/perf-keyvault-certificates.tgz} + resolution: {integrity: sha512-uW/U0qhO513tlkthLkHjI+XGOMXbD5ZKlHljvmDy0ZkAVfxeQBCBdM2QH488nAqu2ZK3+Zqdt5KH8zk0LQxdLQ==, tarball: file:projects/perf-keyvault-certificates.tgz} name: '@rush-temp/perf-keyvault-certificates' version: 0.0.0 dependencies: @@ -19762,7 +19764,7 @@ packages: dev: false file:projects/perf-keyvault-keys.tgz: - resolution: {integrity: sha512-tqTq2dN/qnkvX9Ip48vFGcP1Aw4/jLhYwEnz8QoiABwCeuLcxEF4/G4OJwtFXTbyRDpW2eYtd1SjTZUGbfUxzA==, tarball: file:projects/perf-keyvault-keys.tgz} + resolution: {integrity: sha512-Ct0jkAszeRWVVVahwgsdjS2vjU8u1kz4rTVWJiynVXzFKPhWjn4JvjkWl18nEdvG7Uy7QY6PgUFXmBgKb9asBw==, tarball: file:projects/perf-keyvault-keys.tgz} name: '@rush-temp/perf-keyvault-keys' version: 0.0.0 dependencies: @@ -19785,7 +19787,7 @@ packages: dev: false file:projects/perf-keyvault-secrets.tgz: - resolution: {integrity: sha512-y6hWw0b5hzcYl5/Sx7E5pM7k0nwglyNDPNJxmbF3jp5CvmeD/r34SXKFSFqSKHhpWYz40eez/TQ2fcehDCuiZA==, tarball: file:projects/perf-keyvault-secrets.tgz} + resolution: {integrity: sha512-o47+h6KJRAQcEKPVah1eiuQW59wuv3Dm/JESztq4JZewPNd4Zmem3V4XmyApOauhepHxwieiGsl40tzH0s2tQg==, tarball: file:projects/perf-keyvault-secrets.tgz} name: '@rush-temp/perf-keyvault-secrets' version: 0.0.0 dependencies: @@ -19808,7 +19810,7 @@ packages: dev: false file:projects/perf-monitor-ingestion.tgz: - resolution: {integrity: sha512-Fr0DEr0BvMIUYCMRxAqMbZOtzmx6/68tkffA/TvTtz11jKoa3zrZVAJ57A+1LG1ulHSJyIonsFcp9YhVSVeJiA==, tarball: file:projects/perf-monitor-ingestion.tgz} + resolution: {integrity: sha512-j0ZdSh/RVx/7GLpOrismZBTZb8yAPXoXRp362VUUSe1T+DVtbLCT3wLNB98xF1RQgw6zBn38VZGa7OxVNO5uxw==, tarball: file:projects/perf-monitor-ingestion.tgz} name: '@rush-temp/perf-monitor-ingestion' version: 0.0.0 dependencies: @@ -19828,7 +19830,7 @@ packages: dev: false file:projects/perf-monitor-opentelemetry.tgz: - resolution: {integrity: sha512-cT9NDxaufuITNH96fIMsGOWnARq3Of0uBj8vPTbLh06Q4t143L2XtI9RMTgfbk3LR6FVDYe9bIvcFBxcAHAXeg==, tarball: file:projects/perf-monitor-opentelemetry.tgz} + resolution: {integrity: sha512-4RgifS3p0c4fOWzUJy1k4TR0N8sZK3BWJP8UlytrvTufNWSxh8xyFjPHar0eipBNp8rPNX32h4uxnb2xED7agw==, tarball: file:projects/perf-monitor-opentelemetry.tgz} name: '@rush-temp/perf-monitor-opentelemetry' version: 0.0.0 dependencies: @@ -19852,7 +19854,7 @@ packages: dev: false file:projects/perf-monitor-query.tgz: - resolution: {integrity: sha512-nXHqWCSngbjp81+y9gdfZfqAOjO6Eota9P5V8EX3OFWh4EVJmcMw6p/SJlJ6jlRIlJyPQNxXmyA58fgYWjgVEA==, tarball: file:projects/perf-monitor-query.tgz} + resolution: {integrity: sha512-cr3NnpE1cTOEZHqTMwOo5YaPLvDT0YqylVjTG1nMYj24fJj2fSamR6Vn1eukPJjkGqr4jF9SgYrqIgOd4Zub4Q==, tarball: file:projects/perf-monitor-query.tgz} name: '@rush-temp/perf-monitor-query' version: 0.0.0 dependencies: @@ -19872,7 +19874,7 @@ packages: dev: false file:projects/perf-schema-registry-avro.tgz: - resolution: {integrity: sha512-FtaeyYffiiHtYCvYhioGtrh8BjDhQLkSePZc0IQuG37fcjnzZPvHnG6HJILZo7WQgUhGMrX4TCpSV8K52CoOjA==, tarball: file:projects/perf-schema-registry-avro.tgz} + resolution: {integrity: sha512-raym/RD7gz+2AIBTBMBcFHETMwgKGoPHArxv1Glc/ebznR8wrjHXVqZHlkexfPcGKun/KidUT+7eoCjgOfhxWQ==, tarball: file:projects/perf-schema-registry-avro.tgz} name: '@rush-temp/perf-schema-registry-avro' version: 0.0.0 dependencies: @@ -19892,7 +19894,7 @@ packages: dev: false file:projects/perf-search-documents.tgz: - resolution: {integrity: sha512-vXV+j0S7IdX2kRxK0nN8ZU0e8mgpDuyC7bEkGug8OIZwN28G1MTlt81lwW8cMQoz2zvM373Ig4daPRi5ly6Reg==, tarball: file:projects/perf-search-documents.tgz} + resolution: {integrity: sha512-aXhSjY5/pJKeX+Qhtsip3gtEsQ3gO7EfEJPzipWeeZa/gj25oq9tAEZr754BA1/UUJa0JgiT1kNgqnqa1AGp4w==, tarball: file:projects/perf-search-documents.tgz} name: '@rush-temp/perf-search-documents' version: 0.0.0 dependencies: @@ -19912,7 +19914,7 @@ packages: dev: false file:projects/perf-service-bus.tgz: - resolution: {integrity: sha512-1aQB0idm1A2edB59J6kYSWQjEhpZmW2rVhIksRoUR6gdRLZk8aMlO20xwra8VJC/Ggrn76Z2FoOAFvEG0/txVQ==, tarball: file:projects/perf-service-bus.tgz} + resolution: {integrity: sha512-evYXFgwOjx696bKu4M3FfPf4EkLBycu44xONUF6oDSNxMb6hKFRAQgusDZHIvhvtho868HpVioWnjDHOgT/9Dg==, tarball: file:projects/perf-service-bus.tgz} name: '@rush-temp/perf-service-bus' version: 0.0.0 dependencies: @@ -19933,7 +19935,7 @@ packages: dev: false file:projects/perf-storage-blob.tgz: - resolution: {integrity: sha512-Xq/HBvsecy11GjHvNOzzXM0fUJGwc5/RM7I3COVS/e1yBYt1vFwnlpcWtgpxoIG9vEcU6pNLabxlssYFoMR1lg==, tarball: file:projects/perf-storage-blob.tgz} + resolution: {integrity: sha512-3SRkcJwCF77su/ziV1TQ5J54Hkvvov8rwyLQo4X4sRstD1rapPXifcricKLYFgajrovSmrc1rAn4nFYSTd86bQ==, tarball: file:projects/perf-storage-blob.tgz} name: '@rush-temp/perf-storage-blob' version: 0.0.0 dependencies: @@ -19957,7 +19959,7 @@ packages: dev: false file:projects/perf-storage-file-datalake.tgz: - resolution: {integrity: sha512-Ujw8AeWpVE5C9gQ0oq4sX+Gs+bsrHa8bsoPLQjyn8GY67JmpFbxcHGJ8dTVngMG5oJUbs+vBgUdOGN4i1bIO8A==, tarball: file:projects/perf-storage-file-datalake.tgz} + resolution: {integrity: sha512-UPfH7e+MSIBpcOC0dgMHptWALYI8BbFyiL38w1QmCbpZtphOIANEDPSVxHkqvPgqMTankClUiObwWj1WsPbcNQ==, tarball: file:projects/perf-storage-file-datalake.tgz} name: '@rush-temp/perf-storage-file-datalake' version: 0.0.0 dependencies: @@ -19980,7 +19982,7 @@ packages: dev: false file:projects/perf-storage-file-share.tgz: - resolution: {integrity: sha512-0t+FHGWVEUWNM+Tkam59lIKZVYBZr6wVfykCLLhh8G6H0GUDEemakYg7xEw4iwUN7H7HOU6OkIGHxcvF3qOZNQ==, tarball: file:projects/perf-storage-file-share.tgz} + resolution: {integrity: sha512-5bTK39IJCy3g/r+qhUQVZ/LE+Um2stsntVd9M/DfjAuDxty+R3NXkIFeYwuVDlnaki1Ng6bZm7qAEj2dej7FVQ==, tarball: file:projects/perf-storage-file-share.tgz} name: '@rush-temp/perf-storage-file-share' version: 0.0.0 dependencies: @@ -20003,7 +20005,7 @@ packages: dev: false file:projects/perf-template.tgz: - resolution: {integrity: sha512-oJsdMHdlfUMcK5MN1kD8v48+V1fJJ/TFIx/GtcCDUpM/ZVQPybO1ZTY1NNdwNFzV1qU2EEF3CmoaS5TH8Jfvfg==, tarball: file:projects/perf-template.tgz} + resolution: {integrity: sha512-dMbTJPNZSBmNc1VrwtI5exnIF/r76bH76ivlj1LkvWtIWU5AU4R7vW5Z9/u8ExEirbKZtIms115sUeeAHNnq3w==, tarball: file:projects/perf-template.tgz} name: '@rush-temp/perf-template' version: 0.0.0 dependencies: @@ -20026,7 +20028,7 @@ packages: dev: false file:projects/purview-administration.tgz: - resolution: {integrity: sha512-47wOUEmWoCTfww9iU9hfFMe9Qc7iul9DJ3wcpor+0SWnVAzoB6yiB9ci2rIvilw6gjefqU5goWpmJOhBTmd+vQ==, tarball: file:projects/purview-administration.tgz} + resolution: {integrity: sha512-/kZMf7x3Bt01w0cul/EBFdyHSpV1hlY8vFNJHl2SzdaC69KqV3TYa8fPO2fQvBTvw1sVWkfz/YF1FqQP4fxagw==, tarball: file:projects/purview-administration.tgz} name: '@rush-temp/purview-administration' version: 0.0.0 dependencies: @@ -20070,7 +20072,7 @@ packages: dev: false file:projects/purview-catalog.tgz: - resolution: {integrity: sha512-ctZdYRlNdkgSyWSPYnQZlttcMfIK6zJSVrOf0/tnH5skZhAzRJpXI+VAcynkbERGEDvfA34XPtQQcCyP1oXLAQ==, tarball: file:projects/purview-catalog.tgz} + resolution: {integrity: sha512-GWDbv2gxaQdg7Q3r22uhBK+PTfmV4IOipWjaxcDiWyrp8WFscr/LeR0X1VnOZzhmQjVKoGVC00ArAFJ6hfd63g==, tarball: file:projects/purview-catalog.tgz} name: '@rush-temp/purview-catalog' version: 0.0.0 dependencies: @@ -20114,7 +20116,7 @@ packages: dev: false file:projects/purview-scanning.tgz: - resolution: {integrity: sha512-4W4NArb+7ZJC90OovMyAjIZ6reA8d2l6AytYltVo4zXWq0QZ0pq+gNmCmr0CPLFZPUGfYEIGvbjB3ENoecb2tQ==, tarball: file:projects/purview-scanning.tgz} + resolution: {integrity: sha512-lImf2k2N4f5xnmAoSQF2m9nJ0NtCJjodaKD9/Y+7QGUO1oDmt7eLoB7lm/4d/IwqRZqfzFvHSNH8JlJucDFOVg==, tarball: file:projects/purview-scanning.tgz} name: '@rush-temp/purview-scanning' version: 0.0.0 dependencies: @@ -20158,7 +20160,7 @@ packages: dev: false file:projects/purview-sharing.tgz: - resolution: {integrity: sha512-KYeO8UhV8LIhfckRMdQpZLlot00lHbBW8Zfw2nnICDJOufr0NYFzJs3vNTM0emWVELAyeiuDrORYiRvVT8sMqw==, tarball: file:projects/purview-sharing.tgz} + resolution: {integrity: sha512-4RzMaT3/pTgE6vp0haThiYdHeeiwuDn6VRE88Ds9tMATDirAHkSwPV2XbjRnS8sqLa2i+xy0fkLryrss1X8AaQ==, tarball: file:projects/purview-sharing.tgz} name: '@rush-temp/purview-sharing' version: 0.0.0 dependencies: @@ -20203,7 +20205,7 @@ packages: dev: false file:projects/purview-workflow.tgz: - resolution: {integrity: sha512-Lrwg3bnpPLciSbBcY5fC80gC2Vu0xY7BIJdjdHTAeDwNJo670LiTIVSBQtYWk+GXDFirGFXBZRQWCFcSIx7eCQ==, tarball: file:projects/purview-workflow.tgz} + resolution: {integrity: sha512-EY+WHo6UhYrayUuLYzD74FBuR9rWDSivFNuyNgM8wAwz21hPKrIyH7aa2OMvsKtPBlTmggyNhi36emKV6yy26A==, tarball: file:projects/purview-workflow.tgz} name: '@rush-temp/purview-workflow' version: 0.0.0 dependencies: @@ -20248,7 +20250,7 @@ packages: dev: false file:projects/quantum-jobs.tgz: - resolution: {integrity: sha512-/+wf6I3TWLx6QCWe584HTu+dEhQ0/OvSOMtazdvQx/U1c9ue+eFJrnvNqmZ1R6b+zXFgn08s7WE4TkXXsW1HoQ==, tarball: file:projects/quantum-jobs.tgz} + resolution: {integrity: sha512-Ks4bNSWLmH8yRuLhqb1ToGAIyn1Q11vJsPEh0OszCQeedzJgQ9/6r1ZROpy/A6M4UBDbgYUa8Feio2cZt2owuw==, tarball: file:projects/quantum-jobs.tgz} name: '@rush-temp/quantum-jobs' version: 0.0.0 dependencies: @@ -20295,7 +20297,7 @@ packages: dev: false file:projects/schema-registry-avro.tgz: - resolution: {integrity: sha512-gCurE+JWjtyPjjGy64MjOhkmqS17jVTlqHRAfD/9JH+4G/FEhw59mttHbIrM7a9Aown8bj9lG/qXW3LypTHo7A==, tarball: file:projects/schema-registry-avro.tgz} + resolution: {integrity: sha512-KVOSGQ4WEkTcNPgteiNTRt5gcP9HmubsrDkDVfB32EyFBu3Se3e0PUIr42BKPw2Lp1NLHFIwSgWJWPLChWP5Zw==, tarball: file:projects/schema-registry-avro.tgz} name: '@rush-temp/schema-registry-avro' version: 0.0.0 dependencies: @@ -20348,7 +20350,7 @@ packages: dev: false file:projects/schema-registry-json.tgz: - resolution: {integrity: sha512-0OV8fgxchrKATGJiPwV1hs+JnNFvEd14YN48ocp9EiCQtMSaqL0DXRL6nRh8eEzP72oqNUJJKyZHzy5viqmYFQ==, tarball: file:projects/schema-registry-json.tgz} + resolution: {integrity: sha512-VxW6onEDXOzAd/p8ai6y1833jJfNT95WsMuKZoO3hcEG9la6EYCFqESbzeBZYbK28hvy7h5Lqb/Uirf9q+ufjQ==, tarball: file:projects/schema-registry-json.tgz} name: '@rush-temp/schema-registry-json' version: 0.0.0 dependencies: @@ -20391,7 +20393,7 @@ packages: dev: false file:projects/schema-registry.tgz: - resolution: {integrity: sha512-gWbbZ0hfotv6iVHqpRVG/xb/mBjQ8K7XtFzuZel2EdHrfGs/ccg7SqfCPC3/4XtHUNlHNorMaWGBD1FAxFLX8A==, tarball: file:projects/schema-registry.tgz} + resolution: {integrity: sha512-e0AGlnbKM9Yh0GmkMycm7m92umWGiicheeTM/9/GMyuf4t6MIqbR6BK4enmFmB97uqcu0tc5iFmwJ0ZIVeCriw==, tarball: file:projects/schema-registry.tgz} name: '@rush-temp/schema-registry' version: 0.0.0 dependencies: @@ -20432,7 +20434,7 @@ packages: dev: false file:projects/search-documents.tgz: - resolution: {integrity: sha512-I0E72F3nnPbdVpH8dEZNAgpl/j7fjdpMnWTAOXh+AJEp5xIUeeKwspZusv4QH+UnKUuPmxnpQIY/VNs+Jj7kJQ==, tarball: file:projects/search-documents.tgz} + resolution: {integrity: sha512-QrjrfKsIdzFUgG+RqEBWZHLkkNImdswHyFKLun+b4orHA8qnxwe2HWyfzM5vUarj0eF3W2xGGkmv5C+TkFSpHA==, tarball: file:projects/search-documents.tgz} name: '@rush-temp/search-documents' version: 0.0.0 dependencies: @@ -20479,7 +20481,7 @@ packages: dev: false file:projects/service-bus.tgz: - resolution: {integrity: sha512-BnwYCt1oxjjk9UjE4G57lufc32u8U2cyVWxJ0wI9KD7pR5rguJXjCvLDcQsbD9a6y4e7DRchxTrosvoKUzlFOg==, tarball: file:projects/service-bus.tgz} + resolution: {integrity: sha512-9IwPpl2PUrSOXiDrroE2LEAuHG7VcZ8/S+OS5UxV1glkkz+c0buiY/4G9cnHrex9SfRMFLKDhrwOVT1XhHW5pQ==, tarball: file:projects/service-bus.tgz} name: '@rush-temp/service-bus' version: 0.0.0 dependencies: @@ -20544,7 +20546,7 @@ packages: dev: false file:projects/storage-blob-changefeed.tgz: - resolution: {integrity: sha512-snJHy9F+XybDUyNxF7J1Ldag7mBqoYbXxBkDko+8JZ9ZUe0mmoIfg8Ftdqgz6y8jKz421wRt9DU2HXD0Obd6ew==, tarball: file:projects/storage-blob-changefeed.tgz} + resolution: {integrity: sha512-o1zLt8FS621p5+l3h1x/puSVJbziYMMOQVnSy5Tmg+IJwLa3yJrtHNvJ2vQ019heejUPhXmT5PWZMZYJTjZ44w==, tarball: file:projects/storage-blob-changefeed.tgz} name: '@rush-temp/storage-blob-changefeed' version: 0.0.0 dependencies: @@ -20596,7 +20598,7 @@ packages: dev: false file:projects/storage-blob.tgz: - resolution: {integrity: sha512-gGGHQF1eA4+C6k1V86i3inO+WesB2SPSmxtM9tirpf5krEUTzio3EKBgxk+BCo6XKWI7xZ/dDeKivNT9NaRbWw==, tarball: file:projects/storage-blob.tgz} + resolution: {integrity: sha512-gQLcoctkJuKhvNNFxmCWPQO2C9kKiRIjLDE98H3+8ydoMJrrIyBhBaHRmZi1unF2wvAQb1q7GCWqZK5yrGU4jQ==, tarball: file:projects/storage-blob.tgz} name: '@rush-temp/storage-blob' version: 0.0.0 dependencies: @@ -20648,7 +20650,7 @@ packages: dev: false file:projects/storage-file-datalake.tgz: - resolution: {integrity: sha512-Dc5xTQrbegaA5RjtLq2x55LnhwSIH3Z32CloAvgGvJYQ5GNSkJ6x8LQJtP7uPLqTEJ7355JjpNfhvU5jaTgWpw==, tarball: file:projects/storage-file-datalake.tgz} + resolution: {integrity: sha512-nfyrr063CjC1ZJzC+BCaSCyTU7Qv1G/NjHeFzgwmOUVEnt3V9nBsV3IqWu/cEoQZQL05ddGtw1qwcv1ljxw6jQ==, tarball: file:projects/storage-file-datalake.tgz} name: '@rush-temp/storage-file-datalake' version: 0.0.0 dependencies: @@ -20701,7 +20703,7 @@ packages: dev: false file:projects/storage-file-share.tgz: - resolution: {integrity: sha512-VZiiHXQvGvgBxPdS204zPPu5j5n7II1sLvEaPJ4BJtv1ySosRebYyrHP4O/ycr6aiTYtHJEdBV00SmiSBPqpgw==, tarball: file:projects/storage-file-share.tgz} + resolution: {integrity: sha512-cqlaIJj5gvAcq+aOuoy/tE4u1aQ90OHhGiAyOajuqM85HfugAD9C/csoMZ9I/f5mrN3vxMbe6m4VJQEYl0DeGg==, tarball: file:projects/storage-file-share.tgz} name: '@rush-temp/storage-file-share' version: 0.0.0 dependencies: @@ -20754,7 +20756,7 @@ packages: dev: false file:projects/storage-internal-avro.tgz: - resolution: {integrity: sha512-r8KqanAzDe64LQT+/AR41ws6CE3d7W/7ZTwk0/GV7GVYzHW51jsX9v6l+yeUKfIxDRhxSeoeMTlvD1vPNt7SYA==, tarball: file:projects/storage-internal-avro.tgz} + resolution: {integrity: sha512-CQoevEIqI0BNlDLarKEswvkADjHVrTh1eqQLH7SxLhpVAonMqf4IkO4y/mx44tWpac+BQWu/BpHGH2jXiCWStg==, tarball: file:projects/storage-internal-avro.tgz} name: '@rush-temp/storage-internal-avro' version: 0.0.0 dependencies: @@ -20801,7 +20803,7 @@ packages: dev: false file:projects/storage-queue.tgz: - resolution: {integrity: sha512-ohzSwZEa4zMIoTrT5WQLA/Zqd4ujIVJ3R4Wr7OzTpooyFe2BwFv0nMgb2HdwIZbFJpi/Ga0RokAA8bQML5QUsg==, tarball: file:projects/storage-queue.tgz} + resolution: {integrity: sha512-xXUSOIsYt44UJTVs+xwNcKOBsPWRSOfS0bpa5jfKrUBDkH15nE2fWMLA5qGmA64gcw821zPwmE3XzTXlPIYhVg==, tarball: file:projects/storage-queue.tgz} name: '@rush-temp/storage-queue' version: 0.0.0 dependencies: @@ -20851,7 +20853,7 @@ packages: dev: false file:projects/synapse-access-control-1.tgz: - resolution: {integrity: sha512-2/7hekAQ4nrlp/ctEt6oDBjCcviWuU+QQcx67aK0EiEuj+bKWFFvh2dlinZLrqZNTzn3AZxML50F0dvZELOYrw==, tarball: file:projects/synapse-access-control-1.tgz} + resolution: {integrity: sha512-vnXgDMdd39Yo3b6o+NCeTu7GKQGaa4EJB3W3A4D+XjZGn5bPrIBzMAw6KrF66L7BSjIRvImXEmdf1+FsTO0eBg==, tarball: file:projects/synapse-access-control-1.tgz} name: '@rush-temp/synapse-access-control-1' version: 0.0.0 dependencies: @@ -20897,7 +20899,7 @@ packages: dev: false file:projects/synapse-access-control.tgz: - resolution: {integrity: sha512-EYWITQtm2Fz4OCEjiy1GPC+s59596UNLbgDCHqso0TD50Pe4QCc8YlkzlBGtJaG5XsyyVEhK6M2SbRXzNN2+wg==, tarball: file:projects/synapse-access-control.tgz} + resolution: {integrity: sha512-n2dkse/7KLWx7HSzABhZsGFQTQUwImH+vetlQIuiJgvgmP5P8y3Epl7V/z6ahxApoCVaSfiQReGe4ORiKQG1vw==, tarball: file:projects/synapse-access-control.tgz} name: '@rush-temp/synapse-access-control' version: 0.0.0 dependencies: @@ -20947,7 +20949,7 @@ packages: dev: false file:projects/synapse-artifacts.tgz: - resolution: {integrity: sha512-uhICH2MYaFjRSjD4UkSL7xRid1OGslO7WrIxsaXYAbBml9y6FiYCWkZc0XRqeM2sWDPyaZo517XlFjY7368w5g==, tarball: file:projects/synapse-artifacts.tgz} + resolution: {integrity: sha512-IQ2FcEoJtobDujDRWD3kWqI+kboyZGcuYE0sS85ix3J3MHY5ZFZ7NsgvDxMcuE92JRRVOiwANelYXxpA3RKlxg==, tarball: file:projects/synapse-artifacts.tgz} name: '@rush-temp/synapse-artifacts' version: 0.0.0 dependencies: @@ -20996,7 +20998,7 @@ packages: dev: false file:projects/synapse-managed-private-endpoints.tgz: - resolution: {integrity: sha512-RBtvzZtVR0fNe9UkZw1F/NkCY8IjyyKZCvlUPeldfTsYNaFCKvvk35NXrnxAtTeI3itMSt04hPdB7T4a3+/HRw==, tarball: file:projects/synapse-managed-private-endpoints.tgz} + resolution: {integrity: sha512-yBbRp5TqC6dT7pQ8nBqk+Mi6sn3brkPgu4psHea6BRoP5KsHc1Vf8DRvALbUVdkc6FTLF1Rel3vhmodRmTT7pw==, tarball: file:projects/synapse-managed-private-endpoints.tgz} name: '@rush-temp/synapse-managed-private-endpoints' version: 0.0.0 dependencies: @@ -21039,7 +21041,7 @@ packages: dev: false file:projects/synapse-monitoring.tgz: - resolution: {integrity: sha512-e4yQbRxUQnY/WvUoQHgFAm1THPs8x/FxGXdjuvwj7013LqzOHEWbTGbAvH6OvRzL7APulnNE6STu/4x/BzCUNA==, tarball: file:projects/synapse-monitoring.tgz} + resolution: {integrity: sha512-CIwbNRZW8/qZ93iEeTn1HqzNAuyou7PFLQnZ+/gCrPM6Unx0yOVVSP2iZQk1EkO365XVTNu2CX8hsq6/H4iO1A==, tarball: file:projects/synapse-monitoring.tgz} name: '@rush-temp/synapse-monitoring' version: 0.0.0 dependencies: @@ -21075,7 +21077,7 @@ packages: dev: false file:projects/synapse-spark.tgz: - resolution: {integrity: sha512-QtXVbD5+PtkO91N+n9OqgKVqM+sPQgZEej2WXG09umwsCARV1AQ8fql1xDjl8tznpc5zOdFTu5eJ4DixEhuhww==, tarball: file:projects/synapse-spark.tgz} + resolution: {integrity: sha512-86fziXtA8dau0vjBDCsT9K3EepPuE71mg6nUfES+NK7ATQ6nSzI/x9hI+idVhqw7hKtCPORUD1+DfWiR7CUE2g==, tarball: file:projects/synapse-spark.tgz} name: '@rush-temp/synapse-spark' version: 0.0.0 dependencies: @@ -21118,7 +21120,7 @@ packages: dev: false file:projects/template-dpg.tgz: - resolution: {integrity: sha512-qyk7ve4Y9b1DGoOotRz2aX9GVKfrWoADT09WYVdSUeJnwgMMWo2qHPjG56/fwJMyAHe9E1iCXexmEGJv1seXsg==, tarball: file:projects/template-dpg.tgz} + resolution: {integrity: sha512-xLw3u31dmWAZ8xBi/rnkSKLVy2hQsSInGGswKwg4KuKRoW6+3bIHkQLVayMDb0YEScNx/stfeb67xkYWKF6+nw==, tarball: file:projects/template-dpg.tgz} name: '@rush-temp/template-dpg' version: 0.0.0 dependencies: @@ -21162,7 +21164,7 @@ packages: dev: false file:projects/template.tgz: - resolution: {integrity: sha512-TtLezoctYAmW1syJkG24OGpU7IdNiLibELzy6yVcV3Vic53FrqXE72uoR7nRA6n6b580r4+bmAqQBVcODOZ8Rg==, tarball: file:projects/template.tgz} + resolution: {integrity: sha512-HXxreZi3HMhCTpFBiY0YOmQ73kLDWz1HSNL+8ELX2lAp16DWnV9kRj9uJmuN9z8dJmd/jty09FWloXdUXAsBhA==, tarball: file:projects/template.tgz} name: '@rush-temp/template' version: 0.0.0 dependencies: @@ -21208,7 +21210,7 @@ packages: dev: false file:projects/test-credential.tgz: - resolution: {integrity: sha512-54S+0gLOPkh7hDKxWRlMptwTT9XaLEgUT+48q613z+f1v5aeDBQcBwIDMjamGZmF6fLjuvj0sdLqfCnrI4+jUw==, tarball: file:projects/test-credential.tgz} + resolution: {integrity: sha512-Z48JUB+N3+lQRq2wf1gjMZifKJDAlUcVaf8LagNKfPzMTS4XwvRD6cLxkJpyH3GnGSPlEY1SAoiiyUc6s0YyUg==, tarball: file:projects/test-credential.tgz} name: '@rush-temp/test-credential' version: 0.0.0 dependencies: @@ -21227,7 +21229,7 @@ packages: dev: false file:projects/test-recorder.tgz: - resolution: {integrity: sha512-pIjq3Pny1yMcp5pI4TVB0vtFO8oGjRAg6gJ3tQBzJtsBrdg1fiQhI2biuTNsiEDd9c3kAF3zajDrB6yMOmOptQ==, tarball: file:projects/test-recorder.tgz} + resolution: {integrity: sha512-09CxwiJnjwk3Gybg41W/yC9x6OQBhkbzGjlhq2s9qHpdGnow+fvGlBSrcqVXLr2RzeOPQCb7Wbs91uTtZxiuhw==, tarball: file:projects/test-recorder.tgz} name: '@rush-temp/test-recorder' version: 0.0.0 dependencies: @@ -21271,7 +21273,7 @@ packages: dev: false file:projects/test-utils-perf.tgz: - resolution: {integrity: sha512-FCp793KXwDF0zbPLd7v2e8yEqtrTdhwnvbkayDvW4FudbWOkr0mgaRddyc0QwKA+jtzB8il3lCAtBRI01AZVLQ==, tarball: file:projects/test-utils-perf.tgz} + resolution: {integrity: sha512-639hGi6iSeMbiHHyzMeIcw5Imc8EhoIghRIp0q5pDs0R3U4ZPBSMN6XECgxaUfK6JxtMqBmEudZTv4SyxZy4yg==, tarball: file:projects/test-utils-perf.tgz} name: '@rush-temp/test-utils-perf' version: 0.0.0 dependencies: @@ -21303,7 +21305,7 @@ packages: dev: false file:projects/test-utils.tgz: - resolution: {integrity: sha512-gyc2G2sRPKDlU4GUAGUvWJPNmIwd1OMS0DrS4WzWzR1QshKk/hdEYfzj8y2HeApEeYIUtOcVjsoxEJsQ3tX68Q==, tarball: file:projects/test-utils.tgz} + resolution: {integrity: sha512-lecKklGgFzIi+PR4QvNcK/rmgGNhTwXQKVzSrRhlUB8iGZy+c6j4Ela9C0DqytNzbhDarT1Fv3EVTzieXJBuZA==, tarball: file:projects/test-utils.tgz} name: '@rush-temp/test-utils' version: 0.0.0 dependencies: @@ -21340,7 +21342,7 @@ packages: dev: false file:projects/ts-http-runtime.tgz: - resolution: {integrity: sha512-65IgqX3myZ+cSo7FQeo27HZJtHOK0aPfoTKYiCxZCecek7JCwwc5yL07ssAKP/NT2jwCQOviN2lBBszfKGvXHQ==, tarball: file:projects/ts-http-runtime.tgz} + resolution: {integrity: sha512-rEQGDGZUJSE9ModjokfuCkhoRB943SfGIeH18riZjP4bHC0UuVBHMF9hHHDrR3iaaM9vVP+H987mALGf8blfVA==, tarball: file:projects/ts-http-runtime.tgz} name: '@rush-temp/ts-http-runtime' version: 0.0.0 dependencies: @@ -21390,7 +21392,7 @@ packages: dev: false file:projects/web-pubsub-client-protobuf.tgz: - resolution: {integrity: sha512-lgvJv9FldV5+QSJ78Vxvidbr2tM+hN5cteOWI8TogEos0OValYDAU4nQcSefAb56xSc0h+IgbMyXq7BiQrI8HA==, tarball: file:projects/web-pubsub-client-protobuf.tgz} + resolution: {integrity: sha512-s5Ni+mE7VLb6DWDNlPaPYAKI9uV544OVcrKdtaMFMNYCFRTXKJB7XxLoDTaWtb5KdvMgRpqqlyYTGxfVYYVpiQ==, tarball: file:projects/web-pubsub-client-protobuf.tgz} name: '@rush-temp/web-pubsub-client-protobuf' version: 0.0.0 dependencies: @@ -21453,7 +21455,7 @@ packages: dev: false file:projects/web-pubsub-client.tgz: - resolution: {integrity: sha512-Wo083NE+XeWzhB+TK1AQDdmnAtFu97D1RILvjkKtsXXZ+B0CGV5MGeGYpux9hiNIhgF1ldSbjSulZCorHWGxRQ==, tarball: file:projects/web-pubsub-client.tgz} + resolution: {integrity: sha512-Tg3Vr5YZ23wKeVQOj0SXfT19RP6YwLGIim/53SAcKNkyKJ7wghEdVxvhHjg5pXMpkoZSqKaKtxuSBRemvt4r7w==, tarball: file:projects/web-pubsub-client.tgz} name: '@rush-temp/web-pubsub-client' version: 0.0.0 dependencies: @@ -21510,7 +21512,7 @@ packages: dev: false file:projects/web-pubsub-express.tgz: - resolution: {integrity: sha512-b8gs5KYCn4dtYUL2HfSz6wUCas5Zi+ACil5mmzoOfMi1eE2gLvJfgWQ4sIISnj+Fci1MFWrZTotQfMp12WoTJA==, tarball: file:projects/web-pubsub-express.tgz} + resolution: {integrity: sha512-3URrAG0U+XgZUIfejSoDa67el3CIG5wnDnRbeD0bMebeCVJA0LfxETjBje32DiMZAkCrkTLUZGV0mm/7uFRl1g==, tarball: file:projects/web-pubsub-express.tgz} name: '@rush-temp/web-pubsub-express' version: 0.0.0 dependencies: @@ -21549,7 +21551,7 @@ packages: dev: false file:projects/web-pubsub.tgz: - resolution: {integrity: sha512-nmHhj2va2/L8jwZQRYUIhP1oTDCZF11G83ZEK0UrwBMJMhcfq27V8+sreYghWWfBKrWhlQNdugx0ehRjriyD7Q==, tarball: file:projects/web-pubsub.tgz} + resolution: {integrity: sha512-O2YvJcNEXM3wK03slG3EDY0PPsl89UVpo5mJ69Z86HC09MJSI+HCoTMVGBgf4qsFxgjyClv+Johb7Yi+iaLFjg==, tarball: file:projects/web-pubsub.tgz} name: '@rush-temp/web-pubsub' version: 0.0.0 dependencies: diff --git a/sdk/datadog/arm-datadog/_meta.json b/sdk/datadog/arm-datadog/_meta.json index ec13a058cd71..7553072421d7 100644 --- a/sdk/datadog/arm-datadog/_meta.json +++ b/sdk/datadog/arm-datadog/_meta.json @@ -1,8 +1,8 @@ { - "commit": "663ea6835c33bca216b63f777227db6a459a06b3", + "commit": "583e15ceb4cf23dc23b2300bd352f16d781e69ac", "readme": "specification/datadog/resource-manager/readme.md", - "autorest_command": "autorest --version=3.9.7 --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\\datadog\\resource-manager\\readme.md --use=@autorest/typescript@6.0.9 --generate-sample=true", + "autorest_command": "autorest --version=3.9.7 --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\\datadog\\resource-manager\\readme.md --use=@autorest/typescript@6.0.12 --generate-sample=true", "repository_url": "https://github.com/Azure/azure-rest-api-specs.git", - "release_tool": "@azure-tools/js-sdk-release-tools@2.7.2", - "use": "@autorest/typescript@6.0.9" + "release_tool": "@azure-tools/js-sdk-release-tools@2.7.4", + "use": "@autorest/typescript@6.0.12" } \ No newline at end of file diff --git a/sdk/datadog/arm-datadog/package.json b/sdk/datadog/arm-datadog/package.json index 2cba1932a63f..d98cc28d9820 100644 --- a/sdk/datadog/arm-datadog/package.json +++ b/sdk/datadog/arm-datadog/package.json @@ -29,20 +29,22 @@ "types": "./types/arm-datadog.d.ts", "devDependencies": { "@microsoft/api-extractor": "^7.31.1", - "mkdirp": "^1.0.4", + "mkdirp": "^2.1.2", "typescript": "~5.2.0", "uglify-js": "^3.4.9", "rimraf": "^5.0.0", "dotenv": "^16.0.0", + "@azure/dev-tool": "^1.0.0", "@azure/identity": "^3.3.0", "@azure-tools/test-recorder": "^3.0.0", "@azure-tools/test-credential": "^1.0.0", "mocha": "^10.0.0", + "@types/mocha": "^10.0.0", + "esm": "^3.2.18", "@types/chai": "^4.2.8", "chai": "^4.2.0", "cross-env": "^7.0.2", "@types/node": "^18.0.0", - "@azure/dev-tool": "^1.0.0", "ts-node": "^10.0.0" }, "repository": { diff --git a/sdk/datadog/arm-datadog/samples-dev/marketplaceAgreementsCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/marketplaceAgreementsCreateOrUpdateSample.ts index 6023d226c652..a3bb380dd861 100644 --- a/sdk/datadog/arm-datadog/samples-dev/marketplaceAgreementsCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/marketplaceAgreementsCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogAgreementResource, + MarketplaceAgreementsCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -24,9 +28,11 @@ async function marketplaceAgreementsCreateOrUpdate() { const subscriptionId = process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const body: DatadogAgreementResource = { properties: { accepted: true } }; + const options: MarketplaceAgreementsCreateOrUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.marketplaceAgreements.createOrUpdate(); + const result = await client.marketplaceAgreements.createOrUpdate(options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsCreateorUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsCreateorUpdateSample.ts index 5a7d647d8524..9431d3c4d159 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsCreateorUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsCreateorUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoredSubscriptionProperties, + MonitoredSubscriptionsCreateorUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,55 @@ async function monitorsAddMonitoredSubscriptions() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: MonitoredSubscriptionProperties = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + } + ], + operation: "AddBegin" + } + }; + const options: MonitoredSubscriptionsCreateorUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginCreateorUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsUpdateSample.ts index 5ca76c147e0c..3980f38c55c1 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitoredSubscriptionsUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoredSubscriptionProperties, + MonitoredSubscriptionsUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,55 @@ async function monitorsUpdateMonitoredSubscriptions() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: MonitoredSubscriptionProperties = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + } + ], + operation: "AddComplete" + } + }; + const options: MonitoredSubscriptionsUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts b/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts index 052c39cc8127..3d42e71eec1c 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitorsCreateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogMonitorResource, + MonitorsCreateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,32 +31,35 @@ async function monitorsCreate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogMonitorResource = { + name: "myMonitor", + location: "West US", + properties: { + datadogOrganizationProperties: { + name: "myOrg", + cspm: false, + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + id: "myOrg123", + linkingAuthCode: "someAuthCode", + linkingClientId: "00000000-0000-0000-0000-000000000000" + }, + monitoringStatus: "Enabled", + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890" + } + }, + sku: { name: "free_Monthly" }, + tags: { environment: "Dev" } + }; + const options: MonitorsCreateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginCreateAndWait( resourceGroupName, monitorName, - { - body: { - properties: { - datadogOrganizationProperties: { - name: "testdatadogOrganization" - }, - userInfo: { - name: "Alice", - emailAddress: "alice@microsoft.com", - phoneNumber: "123-456-7890" - } - }, - sku: { - name: "free_Monthly" - }, - identity: { - type: "SystemAssigned" - }, - location: "West US 2" - } - } + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/monitorsSetDefaultKeySample.ts b/sdk/datadog/arm-datadog/samples-dev/monitorsSetDefaultKeySample.ts index c192d77fca0b..f343c1e0c792 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitorsSetDefaultKeySample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitorsSetDefaultKeySample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogApiKey, + MonitorsSetDefaultKeyOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,11 +31,14 @@ async function monitorsSetDefaultKey() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogApiKey = { key: "1111111111111111aaaaaaaaaaaaaaaa" }; + const options: MonitorsSetDefaultKeyOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.setDefaultKey( resourceGroupName, - monitorName + monitorName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/monitorsUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/monitorsUpdateSample.ts index d43eca6d17b7..f6e1c3220ea4 100644 --- a/sdk/datadog/arm-datadog/samples-dev/monitorsUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/monitorsUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogMonitorResourceUpdateParameters, + MonitorsUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,11 +31,17 @@ async function monitorsUpdate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogMonitorResourceUpdateParameters = { + properties: { monitoringStatus: "Enabled" }, + tags: { environment: "Dev" } + }; + const options: MonitorsUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginUpdateAndWait( resourceGroupName, - monitorName + monitorName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/singleSignOnConfigurationsCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/singleSignOnConfigurationsCreateOrUpdateSample.ts index d8c64f6b2df1..6656a62654cb 100644 --- a/sdk/datadog/arm-datadog/samples-dev/singleSignOnConfigurationsCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/singleSignOnConfigurationsCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogSingleSignOnResource, + SingleSignOnConfigurationsCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,22 @@ async function singleSignOnConfigurationsCreateOrUpdate() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: DatadogSingleSignOnResource = { + properties: { + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + singleSignOnState: "Enable" + } + }; + const options: SingleSignOnConfigurationsCreateOrUpdateOptionalParams = { + body + }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.singleSignOnConfigurations.beginCreateOrUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples-dev/tagRulesCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples-dev/tagRulesCreateOrUpdateSample.ts index b5fb0f286df3..c457c6a11f78 100644 --- a/sdk/datadog/arm-datadog/samples-dev/tagRulesCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples-dev/tagRulesCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoringTagRules, + TagRulesCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,29 @@ async function tagRulesCreateOrUpdate() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const ruleSetName = "default"; + const body: MonitoringTagRules = { + properties: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }; + const options: TagRulesCreateOrUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.tagRules.createOrUpdate( resourceGroupName, monitorName, - ruleSetName + ruleSetName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/marketplaceAgreementsCreateOrUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/marketplaceAgreementsCreateOrUpdateSample.js index 151be222920e..d17a22207741 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/marketplaceAgreementsCreateOrUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/marketplaceAgreementsCreateOrUpdateSample.js @@ -21,9 +21,11 @@ require("dotenv").config(); async function marketplaceAgreementsCreateOrUpdate() { const subscriptionId = process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const body = { properties: { accepted: true } }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.marketplaceAgreements.createOrUpdate(); + const result = await client.marketplaceAgreements.createOrUpdate(options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js index 05bf2bb789db..5effea16140c 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsCreateorUpdateSample.js @@ -24,12 +24,55 @@ async function monitorsAddMonitoredSubscriptions() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" }, + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true, + }, + metricRules: { filteringTags: [] }, + }, + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" }, + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true, + }, + metricRules: { filteringTags: [] }, + }, + }, + ], + operation: "AddBegin", + }, + }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginCreateorUpdateAndWait( resourceGroupName, monitorName, configurationName, + options, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js index 9f1a862e7622..4349c8baaa43 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitoredSubscriptionsUpdateSample.js @@ -24,12 +24,55 @@ async function monitorsUpdateMonitoredSubscriptions() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" }, + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true, + }, + metricRules: { filteringTags: [] }, + }, + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" }, + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true, + }, + metricRules: { filteringTags: [] }, + }, + }, + ], + operation: "AddComplete", + }, + }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginUpdateAndWait( resourceGroupName, monitorName, configurationName, + options, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js index da7b5f6ebfbf..ac3a41d36068 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsCreateSample.js @@ -23,29 +23,32 @@ async function monitorsCreate() { process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; - const credential = new DefaultAzureCredential(); - const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.monitors.beginCreateAndWait(resourceGroupName, monitorName, { - body: { - properties: { - datadogOrganizationProperties: { - name: "testdatadogOrganization", - }, - userInfo: { - name: "Alice", - emailAddress: "alice@microsoft.com", - phoneNumber: "123-456-7890", - }, - }, - sku: { - name: "free_Monthly", + const body = { + name: "myMonitor", + location: "West US", + properties: { + datadogOrganizationProperties: { + name: "myOrg", + cspm: false, + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + id: "myOrg123", + linkingAuthCode: "someAuthCode", + linkingClientId: "00000000-0000-0000-0000-000000000000", }, - identity: { - type: "SystemAssigned", + monitoringStatus: "Enabled", + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890", }, - location: "West US 2", }, - }); + sku: { name: "free_Monthly" }, + tags: { environment: "Dev" }, + }; + const options = { body }; + const credential = new DefaultAzureCredential(); + const client = new MicrosoftDatadogClient(credential, subscriptionId); + const result = await client.monitors.beginCreateAndWait(resourceGroupName, monitorName, options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsSetDefaultKeySample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsSetDefaultKeySample.js index a2097b525cba..de7ee1cd4edd 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsSetDefaultKeySample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsSetDefaultKeySample.js @@ -23,9 +23,11 @@ async function monitorsSetDefaultKey() { process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body = { key: "1111111111111111aaaaaaaaaaaaaaaa" }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.monitors.setDefaultKey(resourceGroupName, monitorName); + const result = await client.monitors.setDefaultKey(resourceGroupName, monitorName, options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsUpdateSample.js index 7216a3b84bdd..2937fbbad8cd 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/monitorsUpdateSample.js @@ -23,9 +23,14 @@ async function monitorsUpdate() { process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body = { + properties: { monitoringStatus: "Enabled" }, + tags: { environment: "Dev" }, + }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.monitors.beginUpdateAndWait(resourceGroupName, monitorName); + const result = await client.monitors.beginUpdateAndWait(resourceGroupName, monitorName, options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js index a9d91ffe415e..b7744cb02851 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/singleSignOnConfigurationsCreateOrUpdateSample.js @@ -24,12 +24,22 @@ async function singleSignOnConfigurationsCreateOrUpdate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body = { + properties: { + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + singleSignOnState: "Enable", + }, + }; + const options = { + body, + }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.singleSignOnConfigurations.beginCreateOrUpdateAndWait( resourceGroupName, monitorName, configurationName, + options, ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/javascript/tagRulesCreateOrUpdateSample.js b/sdk/datadog/arm-datadog/samples/v3/javascript/tagRulesCreateOrUpdateSample.js index 7f7daecdfac1..539c2d527218 100644 --- a/sdk/datadog/arm-datadog/samples/v3/javascript/tagRulesCreateOrUpdateSample.js +++ b/sdk/datadog/arm-datadog/samples/v3/javascript/tagRulesCreateOrUpdateSample.js @@ -24,9 +24,30 @@ async function tagRulesCreateOrUpdate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const ruleSetName = "default"; + const body = { + properties: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" }, + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true, + }, + metricRules: { filteringTags: [] }, + }, + }; + const options = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.tagRules.createOrUpdate(resourceGroupName, monitorName, ruleSetName); + const result = await client.tagRules.createOrUpdate( + resourceGroupName, + monitorName, + ruleSetName, + options, + ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/marketplaceAgreementsCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/marketplaceAgreementsCreateOrUpdateSample.ts index 6023d226c652..a3bb380dd861 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/marketplaceAgreementsCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/marketplaceAgreementsCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogAgreementResource, + MarketplaceAgreementsCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -24,9 +28,11 @@ async function marketplaceAgreementsCreateOrUpdate() { const subscriptionId = process.env["DATADOG_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000"; + const body: DatadogAgreementResource = { properties: { accepted: true } }; + const options: MarketplaceAgreementsCreateOrUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); - const result = await client.marketplaceAgreements.createOrUpdate(); + const result = await client.marketplaceAgreements.createOrUpdate(options); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsCreateorUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsCreateorUpdateSample.ts index 5a7d647d8524..9431d3c4d159 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsCreateorUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsCreateorUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoredSubscriptionProperties, + MonitoredSubscriptionsCreateorUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,55 @@ async function monitorsAddMonitoredSubscriptions() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: MonitoredSubscriptionProperties = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + } + ], + operation: "AddBegin" + } + }; + const options: MonitoredSubscriptionsCreateorUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginCreateorUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsUpdateSample.ts index 5ca76c147e0c..3980f38c55c1 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitoredSubscriptionsUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoredSubscriptionProperties, + MonitoredSubscriptionsUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,55 @@ async function monitorsUpdateMonitoredSubscriptions() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: MonitoredSubscriptionProperties = { + properties: { + monitoredSubscriptionList: [ + { + status: "Active", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000000", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }, + { + status: "Failed", + subscriptionId: "/subscriptions/00000000-0000-0000-0000-000000000001", + tagRules: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + } + ], + operation: "AddComplete" + } + }; + const options: MonitoredSubscriptionsUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitoredSubscriptions.beginUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts index 052c39cc8127..3d42e71eec1c 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsCreateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogMonitorResource, + MonitorsCreateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,32 +31,35 @@ async function monitorsCreate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogMonitorResource = { + name: "myMonitor", + location: "West US", + properties: { + datadogOrganizationProperties: { + name: "myOrg", + cspm: false, + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + id: "myOrg123", + linkingAuthCode: "someAuthCode", + linkingClientId: "00000000-0000-0000-0000-000000000000" + }, + monitoringStatus: "Enabled", + userInfo: { + name: "Alice", + emailAddress: "alice@microsoft.com", + phoneNumber: "123-456-7890" + } + }, + sku: { name: "free_Monthly" }, + tags: { environment: "Dev" } + }; + const options: MonitorsCreateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginCreateAndWait( resourceGroupName, monitorName, - { - body: { - properties: { - datadogOrganizationProperties: { - name: "testdatadogOrganization" - }, - userInfo: { - name: "Alice", - emailAddress: "alice@microsoft.com", - phoneNumber: "123-456-7890" - } - }, - sku: { - name: "free_Monthly" - }, - identity: { - type: "SystemAssigned" - }, - location: "West US 2" - } - } + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsSetDefaultKeySample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsSetDefaultKeySample.ts index c192d77fca0b..f343c1e0c792 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsSetDefaultKeySample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsSetDefaultKeySample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogApiKey, + MonitorsSetDefaultKeyOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,11 +31,14 @@ async function monitorsSetDefaultKey() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogApiKey = { key: "1111111111111111aaaaaaaaaaaaaaaa" }; + const options: MonitorsSetDefaultKeyOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.setDefaultKey( resourceGroupName, - monitorName + monitorName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsUpdateSample.ts index d43eca6d17b7..f6e1c3220ea4 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/monitorsUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogMonitorResourceUpdateParameters, + MonitorsUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -27,11 +31,17 @@ async function monitorsUpdate() { const resourceGroupName = process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; + const body: DatadogMonitorResourceUpdateParameters = { + properties: { monitoringStatus: "Enabled" }, + tags: { environment: "Dev" } + }; + const options: MonitorsUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.monitors.beginUpdateAndWait( resourceGroupName, - monitorName + monitorName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/singleSignOnConfigurationsCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/singleSignOnConfigurationsCreateOrUpdateSample.ts index d8c64f6b2df1..6656a62654cb 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/singleSignOnConfigurationsCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/singleSignOnConfigurationsCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + DatadogSingleSignOnResource, + SingleSignOnConfigurationsCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,22 @@ async function singleSignOnConfigurationsCreateOrUpdate() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const configurationName = "default"; + const body: DatadogSingleSignOnResource = { + properties: { + enterpriseAppId: "00000000-0000-0000-0000-000000000000", + singleSignOnState: "Enable" + } + }; + const options: SingleSignOnConfigurationsCreateOrUpdateOptionalParams = { + body + }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.singleSignOnConfigurations.beginCreateOrUpdateAndWait( resourceGroupName, monitorName, - configurationName + configurationName, + options ); console.log(result); } diff --git a/sdk/datadog/arm-datadog/samples/v3/typescript/src/tagRulesCreateOrUpdateSample.ts b/sdk/datadog/arm-datadog/samples/v3/typescript/src/tagRulesCreateOrUpdateSample.ts index b5fb0f286df3..c457c6a11f78 100644 --- a/sdk/datadog/arm-datadog/samples/v3/typescript/src/tagRulesCreateOrUpdateSample.ts +++ b/sdk/datadog/arm-datadog/samples/v3/typescript/src/tagRulesCreateOrUpdateSample.ts @@ -8,7 +8,11 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -import { MicrosoftDatadogClient } from "@azure/arm-datadog"; +import { + MonitoringTagRules, + TagRulesCreateOrUpdateOptionalParams, + MicrosoftDatadogClient +} from "@azure/arm-datadog"; import { DefaultAzureCredential } from "@azure/identity"; import * as dotenv from "dotenv"; @@ -28,12 +32,29 @@ async function tagRulesCreateOrUpdate() { process.env["DATADOG_RESOURCE_GROUP"] || "myResourceGroup"; const monitorName = "myMonitor"; const ruleSetName = "default"; + const body: MonitoringTagRules = { + properties: { + automuting: true, + logRules: { + filteringTags: [ + { name: "Environment", action: "Include", value: "Prod" }, + { name: "Environment", action: "Exclude", value: "Dev" } + ], + sendAadLogs: false, + sendResourceLogs: true, + sendSubscriptionLogs: true + }, + metricRules: { filteringTags: [] } + } + }; + const options: TagRulesCreateOrUpdateOptionalParams = { body }; const credential = new DefaultAzureCredential(); const client = new MicrosoftDatadogClient(credential, subscriptionId); const result = await client.tagRules.createOrUpdate( resourceGroupName, monitorName, - ruleSetName + ruleSetName, + options ); console.log(result); } From 0c8a17f9f195ba877784700f601ad9c65fa5b08c Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 7 Dec 2023 15:34:45 +0800 Subject: [PATCH 15/16] update --- sdk/kusto/arm-kusto/assets.json | 2 +- .../arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts | 3 +-- .../samples/v8/javascript/clustersCreateOrUpdateSample.js | 3 +-- .../samples/v8/typescript/src/clustersCreateOrUpdateSample.ts | 3 +-- sdk/kusto/arm-kusto/test/kusto-client-test.ts | 2 +- 5 files changed, 5 insertions(+), 8 deletions(-) diff --git a/sdk/kusto/arm-kusto/assets.json b/sdk/kusto/arm-kusto/assets.json index 5e8c8a45976c..c59af7fbb34d 100644 --- a/sdk/kusto/arm-kusto/assets.json +++ b/sdk/kusto/arm-kusto/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/kusto/arm-kusto", - "Tag": "js/kusto/arm-kusto_53ce299233" + "Tag": "js/kusto/arm-kusto_5789f2bab8" } diff --git a/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts b/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts index f50ac68cedb7..e2981d84ef1d 100644 --- a/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts +++ b/sdk/kusto/arm-kusto/samples-dev/clustersCreateOrUpdateSample.ts @@ -37,8 +37,7 @@ async function kustoClustersCreateOrUpdate() { languageExtensions: { value: [ { - languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "PythonCustomImage", + languageExtensionImageName: "Python3_10_8", languageExtensionName: "PYTHON" }, { languageExtensionImageName: "R", languageExtensionName: "R" } diff --git a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js index cc7d09623ad3..62f3b32df25b 100644 --- a/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js +++ b/sdk/kusto/arm-kusto/samples/v8/javascript/clustersCreateOrUpdateSample.js @@ -33,8 +33,7 @@ async function kustoClustersCreateOrUpdate() { languageExtensions: { value: [ { - languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "PythonCustomImage", + languageExtensionImageName: "Python3_10_8", languageExtensionName: "PYTHON", }, { languageExtensionImageName: "R", languageExtensionName: "R" }, diff --git a/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts b/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts index f50ac68cedb7..e2981d84ef1d 100644 --- a/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts +++ b/sdk/kusto/arm-kusto/samples/v8/typescript/src/clustersCreateOrUpdateSample.ts @@ -37,8 +37,7 @@ async function kustoClustersCreateOrUpdate() { languageExtensions: { value: [ { - languageExtensionCustomImageName: "customImage8", - languageExtensionImageName: "PythonCustomImage", + languageExtensionImageName: "Python3_10_8", languageExtensionName: "PYTHON" }, { languageExtensionImageName: "R", languageExtensionName: "R" } diff --git a/sdk/kusto/arm-kusto/test/kusto-client-test.ts b/sdk/kusto/arm-kusto/test/kusto-client-test.ts index 6209db7abc24..356681692d28 100644 --- a/sdk/kusto/arm-kusto/test/kusto-client-test.ts +++ b/sdk/kusto/arm-kusto/test/kusto-client-test.ts @@ -67,7 +67,7 @@ describe("KustoManagementClient", () => { languageExtensions: { value: [ { - languageExtensionImageName: "Python3_6_5", + languageExtensionImageName: "Python3_10_8", languageExtensionName: "PYTHON", }, ], From d8de3204ebe2d756abb64d70750e9d6f9777af62 Mon Sep 17 00:00:00 2001 From: kazrael2119 <98569699+kazrael2119@users.noreply.github.com> Date: Thu, 14 Dec 2023 16:54:17 +0800 Subject: [PATCH 16/16] update --- sdk/netapp/arm-netapp/assets.json | 2 +- .../accountsCreateOrUpdateSample.ts | 2 +- ...tAppResourceCheckNameAvailabilitySample.ts | 2 +- .../accountsCreateOrUpdateSample.js | 6 ++-- .../javascript/backupPoliciesCreateSample.js | 2 +- .../javascript/backupPoliciesDeleteSample.js | 2 +- .../javascript/backupPoliciesUpdateSample.js | 2 +- .../backupsGetVolumeRestoreStatusSample.js | 2 +- ...tAppResourceCheckNameAvailabilitySample.js | 4 +-- ...AppResourceCheckQuotaAvailabilitySample.js | 2 +- ...AppResourceQueryNetworkSiblingSetSample.js | 2 +- ...ppResourceUpdateNetworkSiblingSetSample.js | 2 +- .../samples/v19/javascript/package.json | 2 +- .../javascript/poolsCreateOrUpdateSample.js | 2 +- .../v19/javascript/poolsUpdateSample.js | 2 +- .../snapshotPoliciesCreateSample.js | 2 +- .../snapshotPoliciesDeleteSample.js | 2 +- .../javascript/snapshotPoliciesGetSample.js | 2 +- .../snapshotPoliciesListVolumesSample.js | 2 +- .../snapshotPoliciesUpdateSample.js | 2 +- .../v19/javascript/snapshotsCreateSample.js | 2 +- .../v19/javascript/snapshotsDeleteSample.js | 2 +- .../v19/javascript/snapshotsGetSample.js | 2 +- .../v19/javascript/snapshotsListSample.js | 2 +- .../javascript/snapshotsRestoreFilesSample.js | 2 +- .../v19/javascript/snapshotsUpdateSample.js | 2 +- .../v19/javascript/subvolumesCreateSample.js | 2 +- .../v19/javascript/subvolumesDeleteSample.js | 2 +- .../javascript/subvolumesGetMetadataSample.js | 2 +- .../v19/javascript/subvolumesGetSample.js | 2 +- .../subvolumesListByVolumeSample.js | 2 +- .../v19/javascript/subvolumesUpdateSample.js | 2 +- .../javascript/volumeGroupsCreateSample.js | 4 +-- .../javascript/volumeGroupsDeleteSample.js | 2 +- .../volumeQuotaRulesCreateSample.js | 2 +- .../volumeQuotaRulesDeleteSample.js | 2 +- .../javascript/volumeQuotaRulesGetSample.js | 2 +- .../volumeQuotaRulesListByVolumeSample.js | 2 +- .../volumeQuotaRulesUpdateSample.js | 2 +- .../volumesAuthorizeReplicationSample.js | 2 +- .../javascript/volumesBreakFileLocksSample.js | 2 +- .../volumesBreakReplicationSample.js | 2 +- .../javascript/volumesCreateOrUpdateSample.js | 2 +- .../volumesDeleteReplicationSample.js | 2 +- .../v19/javascript/volumesDeleteSample.js | 2 +- .../volumesFinalizeRelocationSample.js | 2 +- ...umesListGetGroupIdListForLdapUserSample.js | 2 +- .../volumesListReplicationsSample.js | 2 +- .../v19/javascript/volumesPoolChangeSample.js | 2 +- .../volumesPopulateAvailabilityZoneSample.js | 2 +- .../volumesReInitializeReplicationSample.js | 2 +- .../volumesReestablishReplicationSample.js | 2 +- .../v19/javascript/volumesRelocateSample.js | 2 +- .../volumesReplicationStatusSample.js | 2 +- .../volumesResetCifsPasswordSample.js | 2 +- .../volumesResyncReplicationSample.js | 2 +- .../volumesRevertRelocationSample.js | 2 +- .../v19/javascript/volumesRevertSample.js | 2 +- .../v19/javascript/volumesUpdateSample.js | 2 +- .../samples/v19/typescript/package.json | 2 +- .../src/accountsCreateOrUpdateSample.ts | 2 +- ...tAppResourceCheckNameAvailabilitySample.ts | 2 +- .../arm-netapp/test/netapp_examples.spec.ts | 29 +------------------ 63 files changed, 67 insertions(+), 94 deletions(-) diff --git a/sdk/netapp/arm-netapp/assets.json b/sdk/netapp/arm-netapp/assets.json index ffeb5762e3e9..7ed1397b66be 100644 --- a/sdk/netapp/arm-netapp/assets.json +++ b/sdk/netapp/arm-netapp/assets.json @@ -2,5 +2,5 @@ "AssetsRepo": "Azure/azure-sdk-assets", "AssetsRepoPrefixPath": "js", "TagPrefix": "js/netapp/arm-netapp", - "Tag": "js/netapp/arm-netapp_ea93b1ba1a" + "Tag": "js/netapp/arm-netapp_f1eacceda2" } diff --git a/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts b/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts index dad893ba8596..4d013bfbb89a 100644 --- a/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts +++ b/sdk/netapp/arm-netapp/samples-dev/accountsCreateOrUpdateSample.ts @@ -53,7 +53,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3", + dns: "10.10.10.3, 10.10.10.4", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, diff --git a/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts b/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts index 98b144abea5f..cf33fb750a6d 100644 --- a/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts +++ b/sdk/netapp/arm-netapp/samples-dev/netAppResourceCheckNameAvailabilitySample.ts @@ -26,7 +26,7 @@ async function checkNameAvailability() { "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "Microsoft.NetApp/netAppAccounts"; + const typeParam = "netAppAccount"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js index b98e52e4f7a8..cf91e75bf6b1 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/accountsCreateOrUpdateSample.js @@ -29,7 +29,7 @@ async function accountsCreateOrUpdate() { const result = await client.accounts.beginCreateOrUpdateAndWait( resourceGroupName, accountName, - body, + body ); console.log(result); } @@ -49,7 +49,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3", + dns: "10.10.10.3, 10.10.10.4", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, @@ -67,7 +67,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { const result = await client.accounts.beginCreateOrUpdateAndWait( resourceGroupName, accountName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js index 80efb8f8b48a..666865143a94 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesCreateSample.js @@ -37,7 +37,7 @@ async function backupPoliciesCreate() { resourceGroupName, accountName, backupPolicyName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js index e612d0398f10..e2cbb8fc4f59 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesDeleteSample.js @@ -29,7 +29,7 @@ async function backupsDelete() { const result = await client.backupPolicies.beginDeleteAndWait( resourceGroupName, accountName, - backupPolicyName, + backupPolicyName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js index 2a8641514b08..29fdc83e1a08 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupPoliciesUpdateSample.js @@ -37,7 +37,7 @@ async function backupPoliciesUpdate() { resourceGroupName, accountName, backupPolicyName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js index 5f8ae399a3d1..cc5e53039fc5 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/backupsGetVolumeRestoreStatusSample.js @@ -31,7 +31,7 @@ async function volumesRestoreStatus() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js index 0147db1a3f36..dacb18c6f794 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckNameAvailabilitySample.js @@ -23,7 +23,7 @@ async function checkNameAvailability() { process.env["NETAPP_SUBSCRIPTION_ID"] || "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "Microsoft.NetApp/netAppAccounts"; + const typeParam = "netAppAccount"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); @@ -31,7 +31,7 @@ async function checkNameAvailability() { location, name, typeParam, - resourceGroup, + resourceGroup ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js index e9eecf9e15c2..5cb99c570140 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceCheckQuotaAvailabilitySample.js @@ -31,7 +31,7 @@ async function checkQuotaAvailability() { location, name, typeParam, - resourceGroup, + resourceGroup ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js index 8e81a059e64b..5500b8ac87d2 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceQueryNetworkSiblingSetSample.js @@ -30,7 +30,7 @@ async function networkSiblingSetQuery() { const result = await client.netAppResource.queryNetworkSiblingSet( location, networkSiblingSetId, - subnetId, + subnetId ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js index b1df02139c47..4a98f56ba708 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/netAppResourceUpdateNetworkSiblingSetSample.js @@ -34,7 +34,7 @@ async function networkFeaturesUpdate() { networkSiblingSetId, subnetId, networkSiblingSetStateId, - networkFeatures, + networkFeatures ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/package.json b/sdk/netapp/arm-netapp/samples/v19/javascript/package.json index 90f183b720ed..f461a297dcfd 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/package.json +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/package.json @@ -27,6 +27,6 @@ "dependencies": { "@azure/arm-netapp": "latest", "dotenv": "latest", - "@azure/identity": "^3.3.0" + "@azure/identity": "^2.0.1" } } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js index 20a618784984..893ce194d851 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsCreateOrUpdateSample.js @@ -36,7 +36,7 @@ async function poolsCreateOrUpdate() { resourceGroupName, accountName, poolName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js index 6973aa7c94fc..e71901cbfb5d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/poolsUpdateSample.js @@ -31,7 +31,7 @@ async function poolsUpdate() { resourceGroupName, accountName, poolName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js index b18c11cd7c1d..76074c3566c4 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesCreateSample.js @@ -48,7 +48,7 @@ async function snapshotPoliciesCreate() { resourceGroupName, accountName, snapshotPolicyName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js index 7624060340ae..e55a7776e4f3 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesDeleteSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesDelete() { const result = await client.snapshotPolicies.beginDeleteAndWait( resourceGroupName, accountName, - snapshotPolicyName, + snapshotPolicyName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js index 1027af15dad0..0e5051624d89 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesGetSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesGet() { const result = await client.snapshotPolicies.get( resourceGroupName, accountName, - snapshotPolicyName, + snapshotPolicyName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js index 5697eda4f134..ff7201d4765f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesListVolumesSample.js @@ -29,7 +29,7 @@ async function snapshotPoliciesListVolumes() { const result = await client.snapshotPolicies.listVolumes( resourceGroupName, accountName, - snapshotPolicyName, + snapshotPolicyName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js index 3143edcab1dd..8518bda908d4 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotPoliciesUpdateSample.js @@ -48,7 +48,7 @@ async function snapshotPoliciesUpdate() { resourceGroupName, accountName, snapshotPolicyName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js index 2f2a3a20e2c4..4e07ab28ec96 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsCreateSample.js @@ -35,7 +35,7 @@ async function snapshotsCreate() { poolName, volumeName, snapshotName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js index 415d21a6bc21..e3de122a5d6f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsDeleteSample.js @@ -33,7 +33,7 @@ async function snapshotsDelete() { accountName, poolName, volumeName, - snapshotName, + snapshotName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js index eb44b5aae29e..b99ca9cf3ee1 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsGetSample.js @@ -33,7 +33,7 @@ async function snapshotsGet() { accountName, poolName, volumeName, - snapshotName, + snapshotName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js index ba4fb9563553..cfa3e58f7fe6 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsListSample.js @@ -32,7 +32,7 @@ async function snapshotsList() { resourceGroupName, accountName, poolName, - volumeName, + volumeName )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js index 252cbac1ab4e..152aaf832803 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsRestoreFilesSample.js @@ -37,7 +37,7 @@ async function snapshotsSingleFileRestore() { poolName, volumeName, snapshotName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js index 147e94c4818b..5160e3bec744 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/snapshotsUpdateSample.js @@ -35,7 +35,7 @@ async function snapshotsUpdate() { poolName, volumeName, snapshotName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js index b9d668c671e7..2ee3d3688e7d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesCreateSample.js @@ -35,7 +35,7 @@ async function subvolumesCreate() { poolName, volumeName, subvolumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js index da6d4f1184f0..8a36ff8cb05d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesDeleteSample.js @@ -33,7 +33,7 @@ async function subvolumesDelete() { accountName, poolName, volumeName, - subvolumeName, + subvolumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js index 092c0c141b4b..1eed02f6c719 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetMetadataSample.js @@ -33,7 +33,7 @@ async function subvolumesMetadata() { accountName, poolName, volumeName, - subvolumeName, + subvolumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js index ed948d428a8e..de35798896b4 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesGetSample.js @@ -33,7 +33,7 @@ async function subvolumesGet() { accountName, poolName, volumeName, - subvolumeName, + subvolumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js index 082b3151eb6f..2bcb4e53f9a7 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesListByVolumeSample.js @@ -32,7 +32,7 @@ async function subvolumesList() { resourceGroupName, accountName, poolName, - volumeName, + volumeName )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js index ee1b769dc51e..48452d5e13bb 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/subvolumesUpdateSample.js @@ -35,7 +35,7 @@ async function subvolumesUpdate() { poolName, volumeName, subvolumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js index 178b66ede8b9..28a583d37015 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsCreateSample.js @@ -448,7 +448,7 @@ async function volumeGroupsCreateOracle() { resourceGroupName, accountName, volumeGroupName, - body, + body ); console.log(result); } @@ -656,7 +656,7 @@ async function volumeGroupsCreateSapHana() { resourceGroupName, accountName, volumeGroupName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js index 076481f0a3ec..10ae34fbdd00 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeGroupsDeleteSample.js @@ -29,7 +29,7 @@ async function volumeGroupsDelete() { const result = await client.volumeGroups.beginDeleteAndWait( resourceGroupName, accountName, - volumeGroupName, + volumeGroupName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js index 221e87e32e27..34d9c0137661 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesCreateSample.js @@ -40,7 +40,7 @@ async function volumeQuotaRulesCreate() { poolName, volumeName, volumeQuotaRuleName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js index 4bda74933698..184ab4cc346a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesDeleteSample.js @@ -33,7 +33,7 @@ async function volumeQuotaRulesDelete() { accountName, poolName, volumeName, - volumeQuotaRuleName, + volumeQuotaRuleName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js index 1a109e8d9ff1..e32298c815f2 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesGetSample.js @@ -33,7 +33,7 @@ async function volumeQuotaRulesGet() { accountName, poolName, volumeName, - volumeQuotaRuleName, + volumeQuotaRuleName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js index 692f969466fe..74774a86d7e2 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesListByVolumeSample.js @@ -32,7 +32,7 @@ async function volumeQuotaRulesList() { resourceGroupName, accountName, poolName, - volumeName, + volumeName )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js index 93b881af264a..cc39bf8c68ee 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumeQuotaRulesUpdateSample.js @@ -35,7 +35,7 @@ async function volumeQuotaRulesUpdate() { poolName, volumeName, volumeQuotaRuleName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js index f821c3a1dc74..b57279d33ce0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesAuthorizeReplicationSample.js @@ -36,7 +36,7 @@ async function volumesAuthorizeReplication() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js index ce6c4d995552..bd62f7a5cc26 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakFileLocksSample.js @@ -37,7 +37,7 @@ async function volumesBreakFileLocks() { accountName, poolName, volumeName, - options, + options ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js index edd46089f768..0e01b08fdae0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesBreakReplicationSample.js @@ -34,7 +34,7 @@ async function volumesBreakReplication() { accountName, poolName, volumeName, - options, + options ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js index 7b16034b2ec5..bc92679d68ba 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesCreateOrUpdateSample.js @@ -40,7 +40,7 @@ async function volumesCreateOrUpdate() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js index cf0cd323b19d..4672f1978df0 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteReplicationSample.js @@ -31,7 +31,7 @@ async function volumesDeleteReplication() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js index c413ad418dd7..95537489ed3e 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesDeleteSample.js @@ -31,7 +31,7 @@ async function volumesDelete() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js index 6637cfce71e0..d9d68db1a829 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesFinalizeRelocationSample.js @@ -31,7 +31,7 @@ async function volumesFinalizeRelocation() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js index fe77a6fdc1ce..b5629c4ad49f 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListGetGroupIdListForLdapUserSample.js @@ -33,7 +33,7 @@ async function getGroupIdListForUser() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js index fb695a318d2c..04e8431df9d5 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesListReplicationsSample.js @@ -32,7 +32,7 @@ async function volumesListReplications() { resourceGroupName, accountName, poolName, - volumeName, + volumeName )) { resArray.push(item); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js index 20b0fd301d7f..5aae7cfa5467 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPoolChangeSample.js @@ -36,7 +36,7 @@ async function volumesAuthorizeReplication() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js index 8cc46d390144..05066d1e5c70 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesPopulateAvailabilityZoneSample.js @@ -31,7 +31,7 @@ async function volumesPopulateAvailabilityZones() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js index bed765f4a64d..57d20e5d4688 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReInitializeReplicationSample.js @@ -31,7 +31,7 @@ async function volumesReInitializeReplication() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js index c5baf2a730b5..955d37a4f609 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReestablishReplicationSample.js @@ -36,7 +36,7 @@ async function volumesReestablishReplication() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js index 99e447490a71..0c49963cce0a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRelocateSample.js @@ -34,7 +34,7 @@ async function volumesRelocate() { accountName, poolName, volumeName, - options, + options ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js index 411b210ec93f..14150dd7a1b4 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesReplicationStatusSample.js @@ -31,7 +31,7 @@ async function volumesReplicationStatus() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js index b91cfae0e9f1..6737dce1e9d9 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResetCifsPasswordSample.js @@ -31,7 +31,7 @@ async function volumesResetCifsPassword() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js index 9d827ab52458..3487a21b1047 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesResyncReplicationSample.js @@ -31,7 +31,7 @@ async function volumesResyncReplication() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js index bcac027b2783..3234cc53262a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertRelocationSample.js @@ -31,7 +31,7 @@ async function volumesRevertRelocation() { resourceGroupName, accountName, poolName, - volumeName, + volumeName ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js index 723ca2181a07..4901ef33b027 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesRevertSample.js @@ -36,7 +36,7 @@ async function volumesRevert() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js index 0edf10832e45..d89e4cf5d7ec 100644 --- a/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js +++ b/sdk/netapp/arm-netapp/samples/v19/javascript/volumesUpdateSample.js @@ -33,7 +33,7 @@ async function volumesUpdate() { accountName, poolName, volumeName, - body, + body ); console.log(result); } diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/package.json b/sdk/netapp/arm-netapp/samples/v19/typescript/package.json index 0c44d2a93f55..e076170a62a9 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/package.json +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/package.json @@ -31,7 +31,7 @@ "dependencies": { "@azure/arm-netapp": "latest", "dotenv": "latest", - "@azure/identity": "^3.3.0" + "@azure/identity": "^2.0.1" }, "devDependencies": { "@types/node": "^18.0.0", diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts b/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts index dad893ba8596..4d013bfbb89a 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/src/accountsCreateOrUpdateSample.ts @@ -53,7 +53,7 @@ async function accountsCreateOrUpdateWithActiveDirectory() { activeDirectories: [ { aesEncryption: true, - dns: "10.10.10.3", + dns: "10.10.10.3, 10.10.10.4", domain: "10.10.10.3", ldapOverTLS: false, ldapSigning: false, diff --git a/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts b/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts index 98b144abea5f..cf33fb750a6d 100644 --- a/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts +++ b/sdk/netapp/arm-netapp/samples/v19/typescript/src/netAppResourceCheckNameAvailabilitySample.ts @@ -26,7 +26,7 @@ async function checkNameAvailability() { "D633CC2E-722B-4AE1-B636-BBD9E4C60ED9"; const location = "eastus"; const name = "accName"; - const typeParam = "Microsoft.NetApp/netAppAccounts"; + const typeParam = "netAppAccount"; const resourceGroup = "myRG"; const credential = new DefaultAzureCredential(); const client = new NetAppManagementClient(credential, subscriptionId); diff --git a/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts b/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts index 0a7483240857..b3cb4c562c23 100644 --- a/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts +++ b/sdk/netapp/arm-netapp/test/netapp_examples.spec.ts @@ -62,21 +62,7 @@ describe("netapp test", () => { resourceGroup, accountName, { - location: location, - activeDirectories: [ - { - aesEncryption: true, - dns: "10.10.10.3", - domain: "10.10.10.3", - ldapOverTLS: false, - ldapSigning: false, - organizationalUnit: "OU=Engineering", - password: "ad_password", - site: "SiteName", - smbServerName: "SMBServer", - username: "ad_user_name", - }, - ], + location: location }, testPollingOptions ); @@ -104,17 +90,4 @@ describe("netapp test", () => { } assert.equal(resArray.length, 0); }); - - it("netAppResource checkNameAvailability test", async function () { - const name = "accName"; - const typeParam = "Microsoft.NetApp/netAppAccounts"; - const resourceGroup = "myRG"; - const result = await client.netAppResource.checkNameAvailability( - location, - name, - typeParam, - resourceGroup - ); - console.log(result); - }); })