30 lines
1.3 KiB
JavaScript
30 lines
1.3 KiB
JavaScript
|
/*
|
||
|
* 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.
|
||
|
*/
|
||
|
import { __awaiter } from "tslib";
|
||
|
// Copyright (c) Microsoft Corporation.
|
||
|
// Licensed under the MIT License.
|
||
|
import { ResourceManagementClient } from "@azure/arm-resources";
|
||
|
import { DefaultAzureCredential } from "@azure/identity";
|
||
|
/**
|
||
|
* This sample demonstrates how to Get the provider permissions.
|
||
|
*
|
||
|
* @summary Get the provider permissions.
|
||
|
* x-ms-original-file: specification/resources/resource-manager/Microsoft.Resources/stable/2021-04-01/examples/GetProviderPermissions.json
|
||
|
*/
|
||
|
function getProviderResourceTypes() {
|
||
|
return __awaiter(this, void 0, void 0, function* () {
|
||
|
const subscriptionId = "00000000-0000-0000-0000-000000000000";
|
||
|
const resourceProviderNamespace = "Microsoft.TestRP";
|
||
|
const credential = new DefaultAzureCredential();
|
||
|
const client = new ResourceManagementClient(credential, subscriptionId);
|
||
|
const result = yield client.providers.providerPermissions(resourceProviderNamespace);
|
||
|
console.log(result);
|
||
|
});
|
||
|
}
|
||
|
getProviderResourceTypes().catch(console.error);
|
||
|
//# sourceMappingURL=providersProviderPermissionsSample.js.map
|