
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
@azure/arm-dns-profile-2019-03-01-hybrid
Advanced tools
DnsManagementClient Library with typescript type definitions for node.js and browser.
This package contains an isomorphic SDK (runs both in Node.js and in browsers) for DnsManagementClient.
Please note, this package is deprecated and not functional as it uses an older version of the Javascript SDK generator. As of April 2022, you can instead use @azure/arm-dns-profile-2020-09-01-hybrid.
You must have an Azure subscription.
To use this SDK in your project, you will need to install two packages.
@azure/arm-dns-profile-2019-03-01-hybrid that contains the client.@azure/identity that provides different mechanisms for the client to authenticate your requests using Azure Active Directory.Install both packages using the below command:
npm install --save @azure/arm-dns-profile-2019-03-01-hybrid @azure/identity
Note: You may have used either
@azure/ms-rest-nodeauthor@azure/ms-rest-browserauthin the past. These packages are in maintenance mode receiving critical bug fixes, but no new features. If you are on a Node.js that has LTS status, or are writing a client side browser application, we strongly encourage you to upgrade to@azure/identitywhich uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options.
@azure/identity based on the authentication method of your choiceDefaultAzureCredential in the Node.js sample below.In the below samples, we pass the credential and the Azure subscription id to instantiate the client. Once the client is created, explore the operations on it either in your favorite editor or in our API reference documentation to get started.
const { DefaultAzureCredential } = require("@azure/identity");
const { DnsManagementClient } = require("@azure/arm-dns-profile-2019-03-01-hybrid");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
// Use `DefaultAzureCredential` or any other credential of your choice based on https://aka.ms/azsdk/js/identity/examples
// Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead.
const creds = new DefaultAzureCredential();
const client = new DnsManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const zoneName = "testzoneName";
const relativeRecordSetName = "testrelativeRecordSetName";
const recordType = "A";
client.recordSets.get(resourceGroupName, zoneName, relativeRecordSetName, recordType).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
In browser applications, we recommend using the InteractiveBrowserCredential that interactively authenticates using the default system browser.
<!DOCTYPE html>
<html lang="en">
<head>
<title>@azure/arm-dns-profile-2019-03-01-hybrid sample</title>
<script src="node_modules/@azure/ms-rest-azure-js/dist/msRestAzure.js"></script>
<script src="node_modules/@azure/identity/dist/index.js"></script>
<script src="node_modules/@azure/arm-dns-profile-2019-03-01-hybrid/dist/arm-dns-profile-2019-03-01-hybrid.js"></script>
<script type="text/javascript">
const subscriptionId = "<Subscription_Id>";
// Create credentials using the `@azure/identity` package.
// Please note that you can also use credentials from the `@azure/ms-rest-browserauth` package instead.
const credential = new InteractiveBrowserCredential(
{
clientId: "<client id for your Azure AD app>",
tenantId: "<optional tenant for your organization>"
});
const client = new Azure.ArmDnsProfile20190301Hybrid.DnsManagementClient(creds, subscriptionId);
const resourceGroupName = "testresourceGroupName";
const zoneName = "testzoneName";
const relativeRecordSetName = "testrelativeRecordSetName";
const recordType = "A";
client.recordSets.get(resourceGroupName, zoneName, relativeRecordSetName, recordType).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
console.log("An error occurred:");
console.error(err);
});
</script>
</head>
<body></body>
</html>

FAQs
DnsManagementClient Library with typescript type definitions for node.js and browser.
The npm package @azure/arm-dns-profile-2019-03-01-hybrid receives a total of 1 weekly downloads. As such, @azure/arm-dns-profile-2019-03-01-hybrid popularity was classified as not popular.
We found that @azure/arm-dns-profile-2019-03-01-hybrid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.