a28e8f0795
***NO_CI*** - apply the transformation - update samples' README |
||
---|---|---|
.. | ||
review | ||
samples/v1-beta | ||
samples-dev | ||
src | ||
swagger | ||
test/public | ||
CHANGELOG.md | ||
README.md | ||
api-extractor.json | ||
assets.json | ||
karma.conf.js | ||
package.json | ||
sample.env | ||
tsconfig.json |
README.md
Azure Synapse Access Control REST client library for JavaScript
This package contains an isomorphic REST Client SDK for Azure Synapse Access Control.
Please rely heavily on the service's documentation and our REST client docs to use this library
Getting started
Install the package
npm install @azure-rest/synapse-access-control
Currently supported environments
- LTS versions of Node.js
- Latest versions of Safari, Chrome, Edge, and Firefox.
See our support policy for more details.
Key concepts
Examples
import AccessControl, { paginate } from "@azure-rest/synapse-access-control";
import { DefaultAzureCredential } from "@azure/identity";
export async function main(): Promise<void> {
const client = AccessControl("<endpoint>", new DefaultAzureCredential());
const initialResponse = await client.path("/roleAssignments").get();
if (initialResponse.status !== "200") {
throw initialResponse.body.error;
}
const assignments = paginate(client, initialResponse);
for await (const assignment of assignments) {
console.log(assignment.id);
}
}
Related projects
Troubleshooting
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the AZURE_LOG_LEVEL
environment variable to info
. Alternatively, logging can be enabled at runtime by calling setLogLevel
in the @azure/logger
:
import { setLogLevel } from "@azure/logger";
setLogLevel("info");
Next steps
In the future, you'll find additional code samples here.
Contributing
If you'd like to contribute to this library, please read the contributing guide to learn more about how to build and test the code.