npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@datafire/azure_authorization_authorization_roledefinitionscalls

v3.0.0

Published

DataFire integration for AuthorizationManagementClient

Downloads

52

Readme

@datafire/azure_authorization_authorization_roledefinitionscalls

Client library for AuthorizationManagementClient

Installation and Usage

npm install --save @datafire/azure_authorization_authorization_roledefinitionscalls
let azure_authorization_authorization_roledefinitionscalls = require('@datafire/azure_authorization_authorization_roledefinitionscalls').create({
  access_token: "",
  refresh_token: "",
  client_id: "",
  client_secret: "",
  redirect_uri: ""
});

.then(data => {
  console.log(data);
});

Description

Role based access control provides you a way to apply granular level policy administration down to individual resources or resource groups. These operations allow you to manage role definitions. A role definition describes the set of actions that can be performed on resources.

Actions

Permissions_ListForResourceGroup

Gets all permissions the caller has for a resource group.

azure_authorization_authorization_roledefinitionscalls.Permissions_ListForResourceGroup({
  "resourceGroupName": "",
  "api-version": "",
  "subscriptionId": ""
}, context)

Input

  • input object
    • resourceGroupName required string: The name of the resource group.
    • api-version required string: The API version to use for this operation.
    • subscriptionId required string: The ID of the target subscription.

Output

Permissions_ListForResource

Gets all permissions the caller has for a resource.

azure_authorization_authorization_roledefinitionscalls.Permissions_ListForResource({
  "resourceGroupName": "",
  "resourceProviderNamespace": "",
  "parentResourcePath": "",
  "resourceType": "",
  "resourceName": "",
  "api-version": "",
  "subscriptionId": ""
}, context)

Input

  • input object
    • resourceGroupName required string: The name of the resource group.
    • resourceProviderNamespace required string: The namespace of the resource provider.
    • parentResourcePath required string: The parent resource identity.
    • resourceType required string: The resource type of the resource.
    • resourceName required string: The name of the resource to get the permissions for.
    • api-version required string: The API version to use for this operation.
    • subscriptionId required string: The ID of the target subscription.

Output

RoleDefinitions_List

Get all role definitions that are applicable at scope and above.

azure_authorization_authorization_roledefinitionscalls.RoleDefinitions_List({
  "scope": "",
  "api-version": ""
}, context)

Input

  • input object
    • scope required string: The scope of the role definition.
    • $filter string: The filter to apply on the operation. Use atScopeAndBelow filter to search below the given scope as well.
    • api-version required string: The API version to use for this operation.

Output

RoleDefinitions_Delete

Deletes a role definition.

azure_authorization_authorization_roledefinitionscalls.RoleDefinitions_Delete({
  "scope": "",
  "roleDefinitionId": "",
  "api-version": ""
}, context)

Input

  • input object
    • scope required string: The scope of the role definition.
    • roleDefinitionId required string: The ID of the role definition to delete.
    • api-version required string: The API version to use for this operation.

Output

RoleDefinitions_Get

Get role definition by name (GUID).

azure_authorization_authorization_roledefinitionscalls.RoleDefinitions_Get({
  "scope": "",
  "roleDefinitionId": "",
  "api-version": ""
}, context)

Input

  • input object
    • scope required string: The scope of the role definition.
    • roleDefinitionId required string: The ID of the role definition.
    • api-version required string: The API version to use for this operation.

Output

RoleDefinitions_CreateOrUpdate

Creates or updates a role definition.

azure_authorization_authorization_roledefinitionscalls.RoleDefinitions_CreateOrUpdate({
  "scope": "",
  "roleDefinitionId": "",
  "roleDefinition": null,
  "api-version": ""
}, context)

Input

  • input object
    • scope required string: The scope of the role definition.
    • roleDefinitionId required string: The ID of the role definition.
    • roleDefinition required RoleDefinition
    • api-version required string: The API version to use for this operation.

Output

Definitions

Permission

  • Permission object: Role definition permissions.
    • actions array: Allowed actions.
      • items string
    • dataActions array: Allowed Data actions.
      • items string
    • notActions array: Denied actions.
      • items string
    • notDataActions array: Denied Data actions.
      • items string

PermissionGetResult

  • PermissionGetResult object: Permissions information.
    • nextLink string: The URL to use for getting the next set of results.
    • value array: An array of permissions.

RoleDefinition

  • RoleDefinition object: Role definition.
    • id string: The role definition ID.
    • name string: The role definition name.
    • properties RoleDefinitionProperties
    • type string: The role definition type.

RoleDefinitionFilter

  • RoleDefinitionFilter object: Role Definitions filter
    • roleName string: Returns role definition with the specific name.
    • type string: Returns role definition with the specific type.

RoleDefinitionListResult

  • RoleDefinitionListResult object: Role definition list operation result.
    • nextLink string: The URL to use for getting the next set of results.
    • value array: Role definition list.

RoleDefinitionProperties

  • RoleDefinitionProperties object: Role definition properties.
    • assignableScopes array: Role definition assignable scopes.
      • items string
    • description string: The role definition description.
    • permissions array: Role definition permissions.
    • roleName string: The role name.
    • type string: The role type.