46 строки
1.5 KiB
TypeScript
46 строки
1.5 KiB
TypeScript
/*
|
|
* 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 { RelayAPI } from "@azure/arm-relay";
|
|
import { DefaultAzureCredential } from "@azure/identity";
|
|
import * as dotenv from "dotenv";
|
|
|
|
dotenv.config();
|
|
|
|
/**
|
|
* This sample demonstrates how to Primary and secondary connection strings to the namespace.
|
|
*
|
|
* @summary Primary and secondary connection strings to the namespace.
|
|
* x-ms-original-file: specification/relay/resource-manager/Microsoft.Relay/stable/2017-04-01/examples/NameSpaces/RelayNameSpaceAuthorizationRuleListKey.json
|
|
*/
|
|
async function relayNameSpaceAuthorizationRuleListKey() {
|
|
const subscriptionId =
|
|
process.env["RELAY_SUBSCRIPTION_ID"] ||
|
|
"ffffffff-ffff-ffff-ffff-ffffffffffff";
|
|
const resourceGroupName =
|
|
process.env["RELAY_RESOURCE_GROUP"] || "resourcegroup";
|
|
const namespaceName = "example-RelayNamespace-01";
|
|
const authorizationRuleName = "example-RelayAuthRules-01";
|
|
const credential = new DefaultAzureCredential();
|
|
const client = new RelayAPI(credential, subscriptionId);
|
|
const result = await client.namespaces.listKeys(
|
|
resourceGroupName,
|
|
namespaceName,
|
|
authorizationRuleName
|
|
);
|
|
console.log(result);
|
|
}
|
|
|
|
async function main() {
|
|
relayNameSpaceAuthorizationRuleListKey();
|
|
}
|
|
|
|
main().catch(console.error);
|