diff --git a/packages/@azure/arm-eventhub/LICENSE.txt b/packages/@azure/arm-eventhub/LICENSE.txt
index a70e8cf66038..8f3d856145c5 100644
--- a/packages/@azure/arm-eventhub/LICENSE.txt
+++ b/packages/@azure/arm-eventhub/LICENSE.txt
@@ -1,21 +1,21 @@
-The MIT License (MIT)
-
-Copyright (c) 2018 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
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
+The MIT License (MIT)
+
+Copyright (c) 2019 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
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/packages/@azure/arm-eventhub/README.md b/packages/@azure/arm-eventhub/README.md
index 7a72a8042b3b..6f3769bd71d1 100644
--- a/packages/@azure/arm-eventhub/README.md
+++ b/packages/@azure/arm-eventhub/README.md
@@ -1,99 +1,96 @@
-## Azure EventHubManagementClient SDK for JavaScript
-
-This package contains an isomorphic SDK for EventHubManagementClient.
-
-### Currently supported environments
-
-- Node.js version 6.x.x or higher
-- Browser JavaScript
-
-### How to Install
-
-```
-npm install @azure/arm-eventhub
-```
-
-### How to use
-
-#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.
-
-##### Install @azure/ms-rest-nodeauth
-
-```
-npm install @azure/ms-rest-nodeauth
-```
-
-##### Sample code
-
-```ts
-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 { EventHubManagementClient, EventHubManagementModels, EventHubManagementMappers } from "@azure/arm-eventhub";
-const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
-
-msRestNodeAuth.interactiveLogin().then((creds) => {
- const client = new EventHubManagementClient(creds, subscriptionId);
- client.operations.list().then((result) => {
- console.log("The result is:");
- console.log(result);
- });
-}).catch((err) => {
- console.error(err);
-});
-```
-
-#### browser - Authentication, client creation and list operations as an example written in JavaScript.
-
-##### Install @azure/ms-rest-browserauth
-
-```
-npm install @azure/ms-rest-browserauth
-```
-
-##### Sample code
-
-See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
-
-- index.html
-```html
-
-
-
- @azure/arm-eventhub sample
-
-
-
-
-
-
-
-
-```
-
-## Related projects
-
-- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
-
-
-![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fpackages%2F%40azure%2Farm-eventhub%2FREADME.png)
+## Azure EventHubManagementClient SDK for JavaScript
+
+This package contains an isomorphic SDK for EventHubManagementClient.
+
+### Currently supported environments
+
+- Node.js version 6.x.x or higher
+- Browser JavaScript
+
+### How to Install
+
+```bash
+npm install @azure/arm-eventhub
+```
+
+### How to use
+
+#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.
+
+##### Install @azure/ms-rest-nodeauth
+
+```bash
+npm install @azure/ms-rest-nodeauth
+```
+
+##### Sample code
+
+```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 { EventHubManagementClient, EventHubManagementModels, EventHubManagementMappers } from "@azure/arm-eventhub";
+const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
+
+msRestNodeAuth.interactiveLogin().then((creds) => {
+ const client = new EventHubManagementClient(creds, subscriptionId);
+ client.operations.list().then((result) => {
+ console.log("The result is:");
+ console.log(result);
+ });
+}).catch((err) => {
+ console.error(err);
+});
+```
+
+#### browser - Authentication, client creation and list operations as an example written in JavaScript.
+
+##### Install @azure/ms-rest-browserauth
+
+```bash
+npm install @azure/ms-rest-browserauth
+```
+
+##### Sample code
+
+See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to Azure in the browser.
+
+- index.html
+```html
+
+
+
+ @azure/arm-eventhub sample
+
+
+
+
+
+
+
+
+```
+
+## Related projects
+
+- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)
diff --git a/packages/@azure/arm-eventhub/lib/eventHubManagementClientContext.ts b/packages/@azure/arm-eventhub/lib/eventHubManagementClientContext.ts
index 7685b7591d5a..3cd253717a2b 100644
--- a/packages/@azure/arm-eventhub/lib/eventHubManagementClientContext.ts
+++ b/packages/@azure/arm-eventhub/lib/eventHubManagementClientContext.ts
@@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
const packageName = "@azure/arm-eventhub";
-const packageVersion = "0.1.0";
+const packageVersion = "3.1.0";
export class EventHubManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
diff --git a/packages/@azure/arm-eventhub/lib/models/index.ts b/packages/@azure/arm-eventhub/lib/models/index.ts
index a98848bc66bc..16b16b957a47 100644
--- a/packages/@azure/arm-eventhub/lib/models/index.ts
+++ b/packages/@azure/arm-eventhub/lib/models/index.ts
@@ -78,7 +78,7 @@ export interface Sku {
*/
tier?: SkuTier;
/**
- * @member {number} [capacity] The Event Hubs throughput units, vaule should
+ * @member {number} [capacity] The Event Hubs throughput units, value should
* be 0 to 20 throughput units.
*/
capacity?: number;
@@ -134,7 +134,7 @@ export interface EHNamespace extends TrackedResource {
isAutoInflateEnabled?: boolean;
/**
* @member {number} [maximumThroughputUnits] Upper limit of throughput units
- * when AutoInflate is enabled, vaule should be within 0 to 20 throughput
+ * when AutoInflate is enabled, value should be within 0 to 20 throughput
* units. ( '0' if AutoInflateEnabled = true)
*/
maximumThroughputUnits?: number;
@@ -220,7 +220,7 @@ export interface AccessKeys {
* @interface
* An interface representing RegenerateAccessKeyParameters.
* Parameters supplied to the Regenerate Authorization Rule operation,
- * specifies which key neeeds to be reset.
+ * specifies which key needs to be reset.
*
*/
export interface RegenerateAccessKeyParameters {
@@ -302,6 +302,11 @@ export interface CaptureDescription {
* capture will be stored. (Storage Account, Blob Names)
*/
destination?: Destination;
+ /**
+ * @member {boolean} [skipEmptyArchives] A value that indicates whether to
+ * Skip Empty Archives
+ */
+ skipEmptyArchives?: boolean;
}
/**
@@ -376,7 +381,7 @@ export interface ConsumerGroup extends Resource {
*/
readonly updatedAt?: Date;
/**
- * @member {string} [userMetadata] Usermetadata is a placeholder to store
+ * @member {string} [userMetadata] User Metadata is a placeholder to store
* user-defined string data with maximum length 1024. e.g. it can be used to
* store descriptive data, such as list of teams and their contact
* information also user-defined configuration settings can be stored.
@@ -476,8 +481,8 @@ export interface Operation {
/**
* @interface
* An interface representing ErrorResponse.
- * Error reponse indicates EventHub service is not able to process the incoming
- * request. The reason is provided in the error message.
+ * Error response indicates EventHub service is not able to process the
+ * incoming request. The reason is provided in the error message.
*
*/
export interface ErrorResponse {
@@ -511,7 +516,7 @@ export interface ArmDisasterRecovery extends Resource {
readonly provisioningState?: ProvisioningStateDR;
/**
* @member {string} [partnerNamespace] ARM Id of the Primary/Secondary
- * eventhub namespace name, which is part of GEO DR pairning
+ * eventhub namespace name, which is part of GEO DR pairing
*/
partnerNamespace?: string;
/**
diff --git a/packages/@azure/arm-eventhub/lib/models/mappers.ts b/packages/@azure/arm-eventhub/lib/models/mappers.ts
index 70b18eb73b1c..f767474ad6ad 100644
--- a/packages/@azure/arm-eventhub/lib/models/mappers.ts
+++ b/packages/@azure/arm-eventhub/lib/models/mappers.ts
@@ -372,6 +372,12 @@ export const CaptureDescription: msRest.CompositeMapper = {
name: "Composite",
className: "Destination"
}
+ },
+ skipEmptyArchives: {
+ serializedName: "skipEmptyArchives",
+ type: {
+ name: "Boolean"
+ }
}
}
}
diff --git a/packages/@azure/arm-eventhub/lib/operations/disasterRecoveryConfigs.ts b/packages/@azure/arm-eventhub/lib/operations/disasterRecoveryConfigs.ts
index 0034c8278220..1e51ac33ae15 100644
--- a/packages/@azure/arm-eventhub/lib/operations/disasterRecoveryConfigs.ts
+++ b/packages/@azure/arm-eventhub/lib/operations/disasterRecoveryConfigs.ts
@@ -244,7 +244,7 @@ export class DisasterRecoveryConfigs {
}
/**
- * envokes GEO DR failover and reconfigure the alias to point to the secondary namespace
+ * Invokes GEO DR failover and reconfigure the alias to point to the secondary namespace
* @param resourceGroupName Name of the resource group within the azure subscription.
* @param namespaceName The Namespace name
* @param alias The Disaster Recovery configuration name
diff --git a/packages/@azure/arm-eventhub/package.json b/packages/@azure/arm-eventhub/package.json
index 054cdd8db339..81e8017c3708 100644
--- a/packages/@azure/arm-eventhub/package.json
+++ b/packages/@azure/arm-eventhub/package.json
@@ -4,8 +4,8 @@
"description": "EventHubManagementClient Library with typescript type definitions for node.js and browser.",
"version": "3.1.0",
"dependencies": {
- "@azure/ms-rest-azure-js": "^1.1.0",
- "@azure/ms-rest-js": "^1.1.0",
+ "@azure/ms-rest-azure-js": "^1.2.0",
+ "@azure/ms-rest-js": "^1.2.0",
"tslib": "^1.9.3"
},
"keywords": [
@@ -23,6 +23,7 @@
"typescript": "^3.1.1",
"rollup": "^0.66.2",
"rollup-plugin-node-resolve": "^3.4.0",
+ "rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/packages/@azure/arm-eventhub",
@@ -51,6 +52,5 @@
"minify": "uglifyjs -c -m --comments --source-map \"content='./dist/arm-eventhub.js.map'\" -o ./dist/arm-eventhub.min.js ./dist/arm-eventhub.js",
"prepack": "npm install && npm run build"
},
- "sideEffects": false,
- "authPublish": true
+ "sideEffects": false
}
diff --git a/packages/@azure/arm-eventhub/rollup.config.js b/packages/@azure/arm-eventhub/rollup.config.js
index d807ecd55a44..bede107e529e 100644
--- a/packages/@azure/arm-eventhub/rollup.config.js
+++ b/packages/@azure/arm-eventhub/rollup.config.js
@@ -1,10 +1,16 @@
+import rollup from "rollup";
import nodeResolve from "rollup-plugin-node-resolve";
+import sourcemaps from "rollup-plugin-sourcemaps";
+
/**
- * @type {import('rollup').RollupFileOptions}
+ * @type {rollup.RollupFileOptions}
*/
const config = {
- input: './esm/eventHubManagementClient.js',
- external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
+ input: "./esm/eventHubManagementClient.js",
+ external: [
+ "@azure/ms-rest-js",
+ "@azure/ms-rest-azure-js"
+ ],
output: {
file: "./dist/arm-eventhub.js",
format: "umd",
@@ -16,16 +22,16 @@ const config = {
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
+ * Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
- * Changes may cause incorrect behavior and will be lost if the code is
- * regenerated.
+ * Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/`
},
plugins: [
- nodeResolve({ module: true })
+ nodeResolve({ module: true }),
+ sourcemaps()
]
};
+
export default config;