Skip to content

Commit

Permalink
CodeGen from PR 13214 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 1abc61f3a437c6af94600e1649d0a2d709f0ead5 into d9506558e6389e62926ae385f1d625a1376a0f9d
  • Loading branch information
SDKAuto committed Mar 11, 2021
1 parent 461643a commit d9c00be
Show file tree
Hide file tree
Showing 35 changed files with 4,336 additions and 1,923 deletions.
2 changes: 1 addition & 1 deletion sdk/servicebus/arm-servicebus/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Microsoft
Copyright (c) 2021 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
19 changes: 11 additions & 8 deletions sdk/servicebus/arm-servicebus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-servicebus

### How to use

#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.
#### nodejs - client creation and listIpFilterRules namespaces as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,16 +26,17 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { ServiceBusManagementClient, ServiceBusManagementModels, ServiceBusManagementMappers } from "@azure/arm-servicebus";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { ServiceBusManagementClient } = require("@azure/arm-servicebus");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new ServiceBusManagementClient(creds, subscriptionId);
client.operations.list().then((result) => {
const resourceGroupName = "testresourceGroupName";
const namespaceName = "testnamespaceName";
client.namespaces.listIpFilterRules(resourceGroupName, namespaceName).then((result) => {
console.log("The result is:");
console.log(result);
});
Expand All @@ -44,7 +45,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {
});
```

#### browser - Authentication, client creation and list operations as an example written in JavaScript.
#### browser - Authentication, client creation and listIpFilterRules namespaces as an example written in JavaScript.

##### Install @azure/ms-rest-browserauth

Expand Down Expand Up @@ -78,7 +79,9 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
authManager.login();
}
const client = new Azure.ArmServicebus.ServiceBusManagementClient(res.creds, subscriptionId);
client.operations.list().then((result) => {
const resourceGroupName = "testresourceGroupName";
const namespaceName = "testnamespaceName";
client.namespaces.listIpFilterRules(resourceGroupName, namespaceName).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/servicebus/arm-servicebus/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* 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.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* 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.
Expand All @@ -15,17 +15,27 @@ export {
CaptureDescription,
CheckNameAvailability,
CheckNameAvailabilityResult,
ConnectionState,
CorrelationFilter,
Destination,
Encryption,
ErrorAdditionalInfo,
ErrorResponse,
ErrorResponseError,
Eventhub,
FailoverProperties,
Identity,
IpFilterRule,
KeyVaultProperties,
MessageCountDetails,
MigrationConfigProperties,
NetworkRuleSet,
NWRuleSetIpRules,
NWRuleSetVirtualNetworkRules,
PremiumMessagingRegions,
PremiumMessagingRegionsProperties,
PrivateEndpoint,
PrivateEndpointConnection,
Resource,
ResourceNamespacePatch,
Rule,
Expand All @@ -40,5 +50,6 @@ export {
SqlFilter,
SqlRuleAction,
Subnet,
TrackedResource
TrackedResource,
VirtualNetworkRule
} from "../models/mappers";
16 changes: 13 additions & 3 deletions sdk/servicebus/arm-servicebus/src/models/eventHubsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* 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.
Expand All @@ -11,18 +11,27 @@ export {
ArmDisasterRecovery,
BaseResource,
CaptureDescription,
ConnectionState,
CorrelationFilter,
Destination,
Encryption,
ErrorAdditionalInfo,
ErrorResponse,
ErrorResponseError,
Eventhub,
EventHubListResult,
Identity,
IpFilterRule,
KeyVaultProperties,
MessageCountDetails,
MigrationConfigProperties,
NetworkRuleSet,
NWRuleSetIpRules,
NWRuleSetVirtualNetworkRules,
PremiumMessagingRegions,
PremiumMessagingRegionsProperties,
PrivateEndpoint,
PrivateEndpointConnection,
Resource,
ResourceNamespacePatch,
Rule,
Expand All @@ -36,5 +45,6 @@ export {
SqlFilter,
SqlRuleAction,
Subnet,
TrackedResource
TrackedResource,
VirtualNetworkRule
} from "../models/mappers";
Loading

0 comments on commit d9c00be

Please sign in to comment.